fixed margins and fonts in headerbar. fixed bootstrap2 placeholder error

This commit is contained in:
Faldrian 2014-11-16 18:19:32 +01:00
parent 7f51d8710e
commit 328a515dbe
4 changed files with 19 additions and 1 deletions

View file

@ -66,6 +66,10 @@ body {
}; };
} }
header {
line-height: 20px;
}
a { a {
color: $blue; color: $blue;
text: { text: {

View file

@ -0,0 +1,11 @@
// A temporary fix for broken classes in bootstrap 2.
// Can probably be removed when migration of bootstrap 3 is done.
input::-moz-placeholder,
textarea::-moz-placeholder {
color: #999999;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
color: #999999;
}

View file

@ -233,6 +233,7 @@ body > header {
border: 1px solid #222; border: 1px solid #222;
font-size: 13px; font-size: 13px;
padding: 4px; padding: 4px;
margin-top: 1px;
&:hover { background-color: #555; } &:hover { background-color: #555; }
@ -345,7 +346,7 @@ body > header {
float: left; float: left;
height: 100%; height: 100%;
margin-right: 5px; margin-right: 5px;
margin-top: 3px; margin-top: 2px;
a { a {
padding: 0 10px; padding: 0 10px;

View file

@ -1,3 +1,5 @@
@import 'bootstrap-fix';
@import 'perfect-scrollbar'; @import 'perfect-scrollbar';
@import "colors"; @import "colors";