fixed #222 and changed indenting to 2

This commit is contained in:
FezVrasta 2014-11-26 13:04:13 +01:00
parent 432e5c6b0a
commit 3879ccb08f
5 changed files with 41 additions and 31 deletions

View File

@ -5419,6 +5419,9 @@ icon-material-lightgrey {
.panel-footer { .panel-footer {
background-color: #ececec; background-color: #ececec;
} }
.modal {
background: rgba(0, 0, 0, 0.3);
}
.snackbar { .snackbar {
background-color: #323232; background-color: #323232;
color: rgba(255, 255, 255, 0.84); color: rgba(255, 255, 255, 0.84);

File diff suppressed because one or more lines are too long

View File

@ -5412,6 +5412,9 @@ icon-material-lightgrey {
.panel-footer { .panel-footer {
background-color: #ececec; background-color: #ececec;
} }
.modal {
background: rgba(0, 0, 0, 0.3);
}
.snackbar { .snackbar {
background-color: #323232; background-color: #323232;
color: rgba(255, 255, 255, 0.84); color: rgba(255, 255, 255, 0.84);

File diff suppressed because one or more lines are too long

View File

@ -4,24 +4,24 @@
@import "_shadows.less"; @import "_shadows.less";
body { body {
background-color: #EEEEEE; background-color: #EEEEEE;
&.inverse { &.inverse {
background: #333333; background: #333333;
&, .form-control { &, .form-control {
color: @darkbg-text; color: @darkbg-text;
}
} }
}
} }
body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4 { body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4 {
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 300; font-weight: 300;
} }
h5, h6{ h5, h6{
font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif; font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400; font-weight: 400;
} }
// Well and Jumbotrons // Well and Jumbotrons
@ -40,7 +40,7 @@ h5, h6{
@import "_inputs.less"; @import "_inputs.less";
legend { legend {
border-bottom: 0; border-bottom: 0;
} }
// Lists // Lists
@ -50,20 +50,20 @@ legend {
@import "_navbar.less"; @import "_navbar.less";
.dropdown-menu { .dropdown-menu {
border: 0; border: 0;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
.divider { .divider {
background-color: rgba(229, 229, 229, 0.12); background-color: rgba(229, 229, 229, 0.12);
}
li {
overflow: hidden;
position: relative;
a:hover {
background-color: transparent;
color: @primary;
} }
li { }
overflow: hidden; .variations(~" li a:hover", color, @primary);
position: relative;
a:hover {
background-color: transparent;
color: @primary;
}
}
.variations(~" li a:hover", color, @primary);
} }
// Alerts // Alerts
@ -74,19 +74,19 @@ legend {
// Typography // Typography
.text-warning { .text-warning {
color: @btn-warning; color: @btn-warning;
} }
.text-primary { .text-primary {
color: @btn-primary; color: @btn-primary;
} }
.text-danger { .text-danger {
color: @btn-danger; color: @btn-danger;
} }
.text-success { .text-success {
color: @btn-success; color: @btn-success;
} }
.text-info { .text-info {
color: @btn-info; color: @btn-info;
} }
@import "_tabs.less"; @import "_tabs.less";
@ -103,6 +103,10 @@ legend {
@import "_panels.less"; @import "_panels.less";
.modal {
background: rgba(0,0,0,0.3);
}
// External plugins // External plugins
@import "_plugin-snackbarjs.less"; @import "_plugin-snackbarjs.less";
@import "_plugin-nouislider.less"; @import "_plugin-nouislider.less";