Merge "Harden Material Theme"

This commit is contained in:
Jenkins 2015-11-13 19:06:32 +00:00 committed by Gerrit Code Review
commit 06ece9406a
2 changed files with 7 additions and 10 deletions

View File

@ -577,11 +577,6 @@ td.loading {
width: 1em;
}
input {
padding: 2px 5px;
margin: 0;
}
th span.required:after {
content: "*";
font-weight: bold;
@ -890,11 +885,6 @@ th.multi_select_column, td.multi_select_column {
table-layout: fixed;
}
.table input[type="checkbox"] {
display: inline;
vertical-align: middle;
}
div.input input[type="checkbox"] {
float: left;
width: 25px;

View File

@ -6,17 +6,24 @@
// General Layout Changes
#sidebar {
position: fixed;
display: block;
}
#content_body {
padding-top: $navbar-height;
transition: padding-left $sidebar-animation;
display: block;
padding-left: $sidebar-width + $content-body-padding;
@media (max-width: $screen-lg) {
padding-left: $content-body-padding;
}
}
#main-content {
display: block;
}
// The top nav is fixed, even when the page scrolls
.topbar {