CSS: Prevent collapsible fieldset headings in form to be selected on open

This commit is contained in:
Florian Strohmaier 2019-07-25 15:46:50 +02:00 committed by Johannes Meyer
parent dd1a3dfb31
commit 4235d4a392
1 changed files with 10 additions and 3 deletions

View File

@ -43,7 +43,14 @@ form.icinga-form {
}
&:not(:last-of-type) .collapsible-control {
border-bottom: 1px solid @gray-light
border-bottom: 1px solid @gray-light;
cursor: default;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.collapsed .collapsible-control {
@ -63,8 +70,8 @@ form.icinga-form {
}
&.collapsed .collapsible-control:after {
/*content: "\e87b";*/
content: "\e87a";
content: "\e87b";
/*content: "\e87a";*/
}
.permission-heading {