summaryrefslogtreecommitdiff
path: root/qutebrowser/html
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2018-02-11 11:11:55 +0100
committerFlorian Bruhin <git@the-compiler.org>2018-02-11 11:11:55 +0100
commit32ba5a5c957917dcc7ec27170059ad6f11096133 (patch)
treeefd3a5251499171434e0ebfed0a026e3a8072ee3 /qutebrowser/html
parentab768d6f6a0de9e978d339be5f9162cec7b747fc (diff)
downloadqutebrowser-32ba5a5c957917dcc7ec27170059ad6f11096133.tar.gz
qutebrowser-32ba5a5c957917dcc7ec27170059ad6f11096133.zip
Improve styling for qute://version and move button
Diffstat (limited to 'qutebrowser/html')
-rw-r--r--qutebrowser/html/version.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/qutebrowser/html/version.html b/qutebrowser/html/version.html
index a69e6f9de..368fbaed6 100644
--- a/qutebrowser/html/version.html
+++ b/qutebrowser/html/version.html
@@ -9,13 +9,14 @@ function paste_version() {
{% endblock %}
{% block style %}
-#paste { margin: auto; display: block; }
+html { margin-left: 10px; }
{% endblock %}
{% block content %}
{{ super() }}
<h1>Version info</h1>
<pre>{{ version }}</pre>
+<button onclick="paste_version()">Yank pastebin URL for version info</button>
<h1>Copyright info</h1>
<p>{{ copyright }}</p>
@@ -36,5 +37,4 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <a href="http://www.gnu.org/licenses/">
http://www.gnu.org/licenses/</a> or open <a href="qute://gpl">qute://gpl</a>.
</p>
-<button id="paste" onclick="paste_version()">Yank Pastebin URL for Version Info</button>
{% endblock %}