Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-11-01 23:00:44 +0300
committerJulius Härtl <jus@bitgrid.net>2018-11-01 23:00:44 +0300
commit9387294993140c27502e1f9613154831637db61c (patch)
tree281529e6b4f3e73230502a5b8f5943647f703896 /core/css/global.scss
parent927bdebd650b6dcc02af40f3871027086cd2fab0 (diff)
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.scss6
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