summaryrefslogtreecommitdiffstats
path: root/core/css/global.scss
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2018-10-31 14:00:08 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2018-10-31 14:00:49 +0100
commit25e70e1eb798d9292b4d5864d89c6c424ff0218c (patch)
tree8593cbb1df0db2d045f2c4755d6e8e2e01e9b1ab /core/css/global.scss
parent1086cbbe61f448adaad9a94b30d0bd2925e6dda1 (diff)
downloadnextcloud-server-25e70e1eb798d9292b4d5864d89c6c424ff0218c.tar.gz
nextcloud-server-25e70e1eb798d9292b4d5864d89c6c424ff0218c.zip
Fix .hidden class specificity, should not be overridable, ref #12138
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core/css/global.scss')
-rw-r--r--core/css/global.scss6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/css/global.scss b/core/css/global.scss
index 9511d4324fa..06dc3688a2b 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
+}