mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
remove border on bottom toolbar; fix hacky spacing of top elements
This commit is contained in:
parent
f3f90842dc
commit
06fcccaf44
3 changed files with 2 additions and 3 deletions
|
@ -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 += " "*3
|
|
||||||
return buf
|
return buf
|
||||||
|
|
||||||
# Link handling
|
# Link handling
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue