diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-11-01 21:00:44 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-11-01 21:00:44 +0100 |
commit | 9387294993140c27502e1f9613154831637db61c (patch) | |
tree | 281529e6b4f3e73230502a5b8f5943647f703896 /core/css/global.scss | |
parent | 927bdebd650b6dcc02af40f3871027086cd2fab0 (diff) | |
download | nextcloud-server-9387294993140c27502e1f9613154831637db61c.tar.gz nextcloud-server-9387294993140c27502e1f9613154831637db61c.zip |
Revert "Fix .hidden class specificity, should not be overridable, ref #12138"
This reverts commit 25e70e1eb798d9292b4d5864d89c6c424ff0218c.
Diffstat (limited to 'core/css/global.scss')
-rw-r--r-- | core/css/global.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/css/global.scss b/core/css/global.scss index 06dc3688a2b..9511d4324fa 100644 --- a/core/css/global.scss +++ b/core/css/global.scss @@ -25,12 +25,12 @@ } .hidden { - display: none !important; /* Hiding should take precedence */ + display: none; } .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 |