Unmerged admin-index PR.
parent
6a0576cb7a
commit
ceab3232ad
|
|
@ -25,7 +25,6 @@ https://github.com/fabiocaccamo/django-admin-interface
|
||||||
{% include "admin_interface/css/tabbed-admin.css" %}
|
{% include "admin_interface/css/tabbed-admin.css" %}
|
||||||
{% include "admin_interface/css/ckeditor.css" %}
|
{% include "admin_interface/css/ckeditor.css" %}
|
||||||
{% include "admin_interface/css/tinymce.css" %}
|
{% include "admin_interface/css/tinymce.css" %}
|
||||||
{% include "admin_interface/css/admin-index.css" %}
|
|
||||||
|
|
||||||
{% if theme.css %}
|
{% if theme.css %}
|
||||||
{{ theme.css|safe }}
|
{{ theme.css|safe }}
|
||||||
|
|
|
||||||
|
|
@ -1,97 +0,0 @@
|
||||||
.admin-interface .breadcrumbs {
|
|
||||||
position:sticky;
|
|
||||||
top:86px;
|
|
||||||
z-index:100000
|
|
||||||
}
|
|
||||||
|
|
||||||
.admin-interface .dropdown-menu{
|
|
||||||
position:sticky;
|
|
||||||
top:49px;
|
|
||||||
z-index:1000000;
|
|
||||||
display:block;
|
|
||||||
background-color:{{ theme.css_header_background_color }};
|
|
||||||
padding:0 40px;
|
|
||||||
cursor:pointer
|
|
||||||
}
|
|
||||||
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__item,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__item:link,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__item:visited {
|
|
||||||
color:#fff;
|
|
||||||
display:inline-block;
|
|
||||||
padding:10px;
|
|
||||||
position:relative
|
|
||||||
background-color: {{ theme.css_save_button_background_color }};
|
|
||||||
}
|
|
||||||
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__link.dropdown-menu__link--active,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__link:link.dropdown-menu__link--active,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__link:visited.dropdown-menu__link--active {
|
|
||||||
background-color: {{ theme.css_save_button_background_color }};
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__item.dropdown-menu__item--active,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__item:link.dropdown-menu__item--active,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__item:visited.dropdown-menu__item--active {
|
|
||||||
background-color: {{ theme.css_save_button_background_color }};
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__item .dropdown-menu__item--active,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__item:link .dropdown-menu__item--active,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__item:visited .dropdown-menu__item--active{
|
|
||||||
background-color: {{ theme.css_save_button_background_color }};
|
|
||||||
text-decoration:underline
|
|
||||||
}
|
|
||||||
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__item:hover,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__item:link:hover,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__item:visited:hover{
|
|
||||||
background-color: {{ theme.css_header_background_color }};
|
|
||||||
}
|
|
||||||
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__item:hover .dropdown-menu__drop,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__item:link:hover .dropdown-menu__drop,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__item:visited:hover .dropdown-menu__drop{
|
|
||||||
display:block
|
|
||||||
}
|
|
||||||
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__drop{
|
|
||||||
position:absolute;
|
|
||||||
left:0;
|
|
||||||
top:100%;
|
|
||||||
display:none;
|
|
||||||
background-color: {{ theme.css_header_background_color }};
|
|
||||||
min-width:150px
|
|
||||||
}
|
|
||||||
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__link,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__link:link,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__link:visited{
|
|
||||||
color:#fff;
|
|
||||||
display:block;
|
|
||||||
padding:10px
|
|
||||||
}
|
|
||||||
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__link:hover,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__link:link:hover,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__link:visited:hover{
|
|
||||||
background-color:{{ theme.css_save_button_background_color }};
|
|
||||||
}
|
|
||||||
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__link .dropdown-menu__link--active,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__link:link .dropdown-menu__link--active,
|
|
||||||
.admin-interface .dropdown-menu .dropdown-menu__link:visited .dropdown-menu__link--active{
|
|
||||||
background-color: {{ theme.css_save_button_background_color }};
|
|
||||||
text-decoration:underline
|
|
||||||
}
|
|
||||||
|
|
||||||
#header{
|
|
||||||
position:sticky;
|
|
||||||
top:0;
|
|
||||||
z-index:100000;
|
|
||||||
height:29px
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue