Misc CDR/other adjustments.

This commit is contained in:
Nate
2019-10-24 18:27:48 -06:00
parent f0347b5214
commit 8dd1e426f0
6 changed files with 88 additions and 20 deletions

View File

@@ -2215,7 +2215,7 @@ $default_login = ($_REQUEST['login'] == 'default') ? true : false;
}
.list-header > th {
padding: 4px 7px;
padding: <?php echo ($_SESSION['theme']['table_heading_padding']['text'] != '') ? $_SESSION['theme']['table_heading_padding']['text'] : '4px 7px'; ?>;
text-align: left;
color: <?php echo ($_SESSION['theme']['table_heading_text_color']['text'] != '') ? $_SESSION['theme']['table_heading_text_color']['text'] : '#3164ad'; ?>;
font-size: <?php echo ($_SESSION['theme']['table_heading_text_size']['text'] != '') ? $_SESSION['theme']['table_heading_text_size']['text'] : '12px'; ?>;
@@ -2224,6 +2224,10 @@ $default_login = ($_REQUEST['login'] == 'default') ? true : false;
border-bottom: 1px solid <?php echo ($_SESSION['theme']['table_heading_border_color']['text'] != '') ? $_SESSION['theme']['table_heading_border_color']['text'] : '#a4aebf'; ?>;
}
.list-header > th.shrink {
width: 1px;
}
.list-row:nth-child(odd) > :not(.action-button) {
background: <?php echo ($_SESSION['theme']['table_row_background_color_light']['text'] != '') ? $_SESSION['theme']['table_row_background_color_light']['text'] : '#ffffff'; ?>;
}
@@ -2242,7 +2246,7 @@ $default_login = ($_REQUEST['login'] == 'default') ? true : false;
}
.list-row > :not(.checkbox) {
padding: <?php echo ($_SESSION['theme']['table_row_padding']['text'] != '') ? $_SESSION['theme']['table_row_padding']['text'] : '4px 7px 4px 7px'; ?>;
padding: <?php echo ($_SESSION['theme']['table_row_padding']['text'] != '') ? $_SESSION['theme']['table_row_padding']['text'] : '4px 7px'; ?>;
}
.list-row > td.description {