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 += '''
<a class=hitem title="%s" href=# onclick="pycmd('%s')">%s</a>''' % (
title, ln, name)
buf += "&nbsp;"*3
return buf
# Link handling

View file

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

View file

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