Theme: Settings to control Domain Selector title colors.

This commit is contained in:
Nate
2020-06-02 09:17:23 -06:00
parent 87a7073889
commit 9178fd63a7
3 changed files with 33 additions and 5 deletions
+12
View File
@@ -1080,6 +1080,18 @@ header('Expires: '.gmdate('D, d M Y H:i:s',time()+3600).' GMT');
text-align: left;
}
#domains_header > a#domains_title {
font-weight: 600;
font-size: <?php echo ($_SESSION['theme']['heading_text_size']['text'] != '') ? $_SESSION['theme']['heading_text_size']['text'] : '15px'; ?>;
font-family: <?php echo ($_SESSION['theme']['heading_text_font']['text'] != '') ? $_SESSION['theme']['heading_text_font']['text'] : 'arial'; ?>;
color: <?php echo ($_SESSION['theme']['domain_selector_title_color']['text'] != '') ? $_SESSION['theme']['domain_selector_title_color']['text'] : '#000'; ?>;
}
#domains_header > a#domains_title:hover {
text-decoration: none;
color: <?php echo ($_SESSION['theme']['domain_selector_title_color_hover']['text'] != '') ? $_SESSION['theme']['domain_selector_title_color_hover']['text'] : '#5082ca'; ?>;
}
#domains_list {
position: relative;
overflow: auto;