summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-10-31 20:30:14 +0100
committerGitHub <noreply@github.com>2018-10-31 20:30:14 +0100
commit3c442e4138883f45a8ab123f8405017e7a99e283 (patch)
tree3231cdd9eb502b562f6eb484e5edf771451b07b1
parent3ee7597be038ed199faeafbc102f25970bd3288a (diff)
parent25e70e1eb798d9292b4d5864d89c6c424ff0218c (diff)
downloadnextcloud-server-3c442e4138883f45a8ab123f8405017e7a99e283.tar.gz
nextcloud-server-3c442e4138883f45a8ab123f8405017e7a99e283.zip
Merge pull request #12167 from nextcloud/hidden-class
Fix .hidden class specificity, should not be overridable, ref #12138
-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
+}