[css] Improve changelist filter margins.
parent
fca8e6d47b
commit
2da294e28f
|
|
@ -285,6 +285,15 @@ body.admin-interface .paginator a.showall:visited {
|
||||||
padding: 10px 15px;
|
padding: 10px 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.admin-interface .module.filtered #changelist-filter h2 + h3 {
|
||||||
|
margin-top: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admin-interface .module.filtered #changelist-filter h3 {
|
||||||
|
margin-top: 12px;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
.admin-interface #changelist-form .results {
|
.admin-interface #changelist-form .results {
|
||||||
scrollbar-width: thin;
|
scrollbar-width: thin;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -377,6 +377,10 @@
|
||||||
border-radius: var(--admin-interface-module-border-radius);
|
border-radius: var(--admin-interface-module-border-radius);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.admin-interface .module.filtered #changelist-filter h3#changelist-filter-clear {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.admin-interface .module.filtered #changelist-filter .changelist-filter-clear a {
|
.admin-interface .module.filtered #changelist-filter .changelist-filter-clear a {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
margin: .3em 0;
|
margin: .3em 0;
|
||||||
|
|
|
||||||
|
|
@ -2,26 +2,26 @@
|
||||||
list-filter-dropdown
|
list-filter-dropdown
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.admin-interface .list-filter-dropdown {
|
.admin-interface #changelist-filter .list-filter-dropdown {
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.admin-interface h2 + .list-filter-dropdown,
|
.admin-interface #changelist-filter h2 + .list-filter-dropdown,
|
||||||
.admin-interface .list-filter-dropdown + .list-filter-dropdown {
|
.admin-interface #changelist-filter .list-filter-dropdown + .list-filter-dropdown {
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.admin-interface .list-filter-dropdown h3 {
|
.admin-interface #changelist-filter .list-filter-dropdown h3 {
|
||||||
margin-top: 0;
|
margin-top: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.admin-interface .list-filter-dropdown select {
|
.admin-interface #changelist-filter .list-filter-dropdown select {
|
||||||
background-color: #FFFFFF;
|
background-color: #FFFFFF;
|
||||||
width: calc(100% - 30px);
|
width: calc(100% - 30px);
|
||||||
margin-right: 15px;
|
margin-right: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.admin-interface.list-filter-highlight .list-filter-dropdown h3.active + div select {
|
.admin-interface.list-filter-highlight #changelist-filter .list-filter-dropdown h3.active + div select {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue