From 25e70e1eb798d9292b4d5864d89c6c424ff0218c Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 31 Oct 2018 14:00:08 +0100 Subject: [PATCH] Fix .hidden class specificity, should not be overridable, ref #12138 Signed-off-by: Jan-Christoph Borchardt --- core/css/global.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/css/global.scss b/core/css/global.scss index 9511d4324f..06dc3688a2 100644 --- a/core/css/global.scss +++ b/core/css/global.scss @@ -25,12 +25,12 @@ } .hidden { - display: none; + display: none !important; /* Hiding should take precedence */ } .hidden-visually { position: absolute; - left:-10000px; + left: -10000px; top: auto; width: 1px; height: 1px; @@ -47,4 +47,4 @@ .inlineblock { display: inline-block; -} \ No newline at end of file +}