Update css.php (#4465)

This commit is contained in:
chansizzle 2019-08-28 18:17:29 -06:00 committed by FusionPBX
parent 03c502c96d
commit bac86ca565
1 changed files with 7 additions and 2 deletions

View File

@ -779,7 +779,7 @@ $default_login = ($_REQUEST['login'] == 'default') ? true : false;
border: 1px solid #a4aebf;
}
div.domains_list_item, div.domains_list_item_active {
div.domains_list_item, div.domains_list_item_active, div.domains_list_item_inactive {
text-align: left;
border-bottom: 1px solid #c5d1e5;
padding: 5px 8px 8px 8px;
@ -788,7 +788,7 @@ $default_login = ($_REQUEST['login'] == 'default') ? true : false;
cursor: pointer;
}
div.domains_list_item span.domain_list_item_description, div.domains_list_item_active span.domain_list_item_description {
div.domains_list_item span.domain_list_item_description, div.domains_list_item_active span.domain_list_item_description, div.domains_list_item_inactive span.domain_list_item_description {
color: #999;
font-size: 11px;
}
@ -802,6 +802,11 @@ $default_login = ($_REQUEST['login'] == 'default') ? true : false;
div.domains_list_item_active:hover span {
color: <?php echo ($_SESSION['theme']['domain_active_text_color_hover']['text']); ?>;
}
div.domains_list_item_inactive:hover a,
div.domains_list_item_inactive:hover span {
color: <?php echo ($_SESSION['theme']['domain_inactive_text_color_hover']['text']); ?>;
}
/* DOMAIN SELECTOR: END ********************************************************/