Added customizable colors for selected apps and models in dashboard. #122

This commit is contained in:
Henri Chain
2021-03-29 09:49:07 +02:00
committed by GitHub
parent e5318b688b
commit a8322872ab
5 changed files with 45 additions and 4 deletions
@@ -126,7 +126,7 @@
.admin-interface #nav-sidebar .current-app .section:link,
.admin-interface #nav-sidebar .current-app .section:visited {
color: {{ theme.css_module_link_color }};
color: {{ theme.css_module_link_selected_color }};
font-weight: normal;
}
@@ -136,11 +136,11 @@
}
.admin-interface #nav-sidebar .current-model {
background: #FFFFCC;
background: {{ theme.css_module_background_selected_color }};
}
.admin-interface #changelist table tbody tr.selected {
background-color: #FFFFCC;
background-color: {{ theme.css_module_background_selected_color }};
}
.admin-interface .module h2,
@@ -23,7 +23,7 @@ https://github.com/jmrivas86/django-json-widget
.admin-interface div.jsoneditor-contextmenu ul li button.jsoneditor-selected,
.admin-interface div.jsoneditor-contextmenu ul li button.jsoneditor-selected:focus,
.admin-interface div.jsoneditor-contextmenu ul li button.jsoneditor-selected:hover {
background-color: #FFFFCC;
background-color: {{ theme.css_module_background_selected_color }};
color: #000000;
font-weight: bold;
}