remove border on bottom toolbar; fix hacky spacing of top elements

This commit is contained in:
Damien Elmes 2017-08-10 19:17:28 +10:00
parent f3f90842dc
commit 06fcccaf44
3 changed files with 2 additions and 3 deletions

View file

@ -44,7 +44,6 @@ class Toolbar:
buf += ''' buf += '''
<a class=hitem title="%s" href=# onclick="pycmd('%s')">%s</a>''' % ( <a class=hitem title="%s" href=# onclick="pycmd('%s')">%s</a>''' % (
title, ln, name) title, ln, name)
buf += "&nbsp;"*3
return buf return buf
# Link handling # Link handling

View file

@ -1,6 +1,5 @@
#header { #header {
border-bottom: 0; border-bottom: 0;
border-top: 1px solid #aaa;
margin-bottom: 6px; margin-bottom: 6px;
margin-top: 0; margin-top: 0;
} }

View file

@ -20,7 +20,8 @@ body {
} }
.hitem { .hitem {
padding-right: 6px; padding-right: 12px;
padding-left: 12px;
text-decoration: none; text-decoration: none;
color: #000; color: #000;
} }