From 4235d4a39277a4fd1e657d34ffbd3efc16becee1 Mon Sep 17 00:00:00 2001
From: Florian Strohmaier <florian.strohmaier@icinga.com>
Date: Thu, 25 Jul 2019 15:46:50 +0200
Subject: [PATCH] CSS: Prevent collapsible fieldset headings in form to be
 selected on open

---
 public/css/icinga/forms.less | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/public/css/icinga/forms.less b/public/css/icinga/forms.less
index a1af4b635..c1f8ed106 100644
--- a/public/css/icinga/forms.less
+++ b/public/css/icinga/forms.less
@@ -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 {