css: Don't apply .collapsible-control style to custom controls

This commit is contained in:
Johannes Meyer 2019-07-29 15:57:48 +02:00
parent 1d5cfef78d
commit 9e3c9bbab7
2 changed files with 5 additions and 6 deletions

View File

@ -304,8 +304,11 @@ a:hover > .icon-cancel {
// Collapsibles // Collapsibles
.collapsible.collapsed { .collapsible.collapsed {
position: relative;
overflow: hidden; overflow: hidden;
}
.collapsible.collapsed:not([data-toggle-element]) {
position: relative;
&:before, &:after { &:before, &:after {
content: ""; content: "";
@ -328,7 +331,7 @@ a:hover > .icon-cancel {
} }
} }
.impact .collapsible.collapsed { .impact .collapsible.collapsed:not([data-toggle-element]) {
&:before { &:before {
opacity: 0; opacity: 0;
} }

View File

@ -235,10 +235,6 @@ form.role-form {
padding: 0; padding: 0;
margin: 0; margin: 0;
&:before {
display: none;
}
h3 em { h3 em {
font-size: .857em; font-size: .857em;
font-weight: normal; font-weight: normal;