sync some missing styles from classic

This commit is contained in:
Isaac Connor 2017-06-05 12:49:39 -04:00
parent bfa724d06c
commit 2a45cd02ca
4 changed files with 46 additions and 26 deletions

View File

@ -441,12 +441,16 @@ th.table-th-sort-rev span.table-th-sort-span {
} }
#options { #options {
font-size:90%;
}
#options .help-block {
margin-top: 0;
} }
#options .form-group { #options .form-group {
margin-bottom: 20px; margin-bottom: 20px;
border-bottom: 1px solid #e7e7e7; border-bottom: 1px solid #e7e7e7;
} }
.navbar{ .navbar{
@ -467,7 +471,6 @@ th.table-th-sort-rev span.table-th-sort-span {
.sidebar { .sidebar {
position: absolute; position: absolute;
top: 0; top: 0;
bottom: 0;
left: 0; left: 0;
z-index: 1000; z-index: 1000;
display: block; display: block;
@ -487,11 +490,3 @@ margin-left: 0px;
.nav-pills > li > a { .nav-pills > li > a {
border-radius: 0; border-radius: 0;
} }
#options .help-block {
margin-top: 0;
}
#options {
font-size:90%;
}

View File

@ -62,7 +62,7 @@
} }
#consoleTable .colMark { #consoleTable .colMark {
width: 62px; width: 72px;
text-align: center; text-align: center;
} }

View File

@ -0,0 +1,23 @@
input.small {
width: 6em;
}
input.medium {
width: 9em;
}
input.large {
width: 20em;
}
#contentTable.optionTable th, #contentTable.optionTable td {
vertical-align: top;
}
#contentTable.userTable th, #contentTable.userTable td {
text-align: center;
}
#contentTable.userTable .colMonitor, #contentTable.userTable .colUsername {
text-align: left;
}

View File

@ -21,7 +21,12 @@
* Primary look and feel styles * Primary look and feel styles
*/ */
html {
height: 100%;
}
body { body {
height: 100%;
font-family: "Open Sans", Verdana, Arial, Helvetica, sans-serif; font-family: "Open Sans", Verdana, Arial, Helvetica, sans-serif;
font-size: 13px; font-size: 13px;
color: #333333; color: #333333;
@ -60,10 +65,12 @@ p {
} }
th { th {
/*
padding: 3px; padding: 3px;
text-transform: uppercase; text-transform: uppercase;
font-size: 0.8em; font-size: 0.8em;
font-weight: 600; font-weight: 600;
*/
} }
a:link { a:link {
@ -478,21 +485,17 @@ input[type=submit]:disabled {
} }
/* #options {
* Console table for the main event table font-size:90%;
*/
#consoleTable td, #consoleTable th {
padding: 5px;
border-bottom: 2px solid #f2f2f2;
} }
#consoleTable input[type=button] { #options .help-block {
margin-right: 3px !important; margin-top: 0;
} }
#consoleTable tfoot { #options .form-group {
background-color: #f2f2f2; margin-bottom: 20px;
border-bottom: 1px solid #e7e7e7;
} }
.navbar{ .navbar{
@ -513,7 +516,6 @@ input[type=submit]:disabled {
.sidebar { .sidebar {
position: absolute; position: absolute;
top: 0; top: 0;
bottom: 0;
left: 0; left: 0;
z-index: 1000; z-index: 1000;
display: block; display: block;
@ -530,6 +532,6 @@ margin-bottom: 20px;
margin-left: 0; margin-left: 0;
} }
.nav-pills > li > a {
border-radius: 0;
}