]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix .hidden class specificity, should not be overridable, ref #12138 12167/head
authorJan-Christoph Borchardt <hey@jancborchardt.net>
Wed, 31 Oct 2018 13:00:08 +0000 (14:00 +0100)
committerJan-Christoph Borchardt <hey@jancborchardt.net>
Wed, 31 Oct 2018 13:00:49 +0000 (14:00 +0100)
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
core/css/global.scss

index 9511d4324fa4d5c65d92524066acec932aded8cc..06dc3688a2b0c1385bdaad3ad2f22ff68a5ab1e3 100644 (file)
 }
 
 .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
+}