Update css.php (#4803)

This commit is contained in:
chansizzle 2019-10-28 14:40:27 -06:00 committed by FusionPBX
parent f48c559cf5
commit d8f8c63ea3
1 changed files with 9 additions and 2 deletions

View File

@ -855,6 +855,13 @@ $default_login = ($_REQUEST['login'] == 'default') ? true : false;
color: #999;
}
div.domains_list_item_active a {
color: <?php echo ($_SESSION['theme']['domain_active_text_color']['text'] != '') ? $_SESSION['theme']['domain_active_text_color']['text'] : '#004083'; ?>;
}
div.domains_list_item_inactive a {
color: <?php echo ($_SESSION['theme']['domain_inactive_text_color']['text'] != '') ? $_SESSION['theme']['domain_inactive_text_color']['text'] : '#004083'; ?>;
}
div.domains_list_item_active span.domain_active_list_item_description {
color: <?php echo ($_SESSION['theme']['domain_active_desc_text_color']['text'] != '') ? $_SESSION['theme']['domain_active_desc_text_color']['text'] : '#999'; ?>;
}