Skip to content

Commit

Permalink
Merge pull request #12167 from nextcloud/hidden-class
Browse files Browse the repository at this point in the history
Fix .hidden class specificity, should not be overridable, ref #12138
  • Loading branch information
rullzer authored Oct 31, 2018
2 parents 3ee7597 + 25e70e1 commit 3c442e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/css/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -47,4 +47,4 @@

.inlineblock {
display: inline-block;
}
}

0 comments on commit 3c442e4

Please sign in to comment.