mirror of
https://github.com/nextcloud/server.git
synced 2026-02-18 18:28:50 -05:00
Fix .hidden class specificity, should not be overridable, ref #12138
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
parent
1086cbbe61
commit
25e70e1eb7
1 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue