Quellcode durchsuchen

Merge pull request #12167 from nextcloud/hidden-class

Fix .hidden class specificity, should not be overridable, ref #12138
tags/v15.0.0beta1
Roeland Jago Douma vor 5 Jahren
Ursprung
Commit
3c442e4138
Es ist kein Account mit der E-Mail-Adresse des Committers verbunden
1 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
  1. 3
    3
      core/css/global.scss

+ 3
- 3
core/css/global.scss Datei anzeigen

@@ -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;
}
}

Laden…
Abbrechen
Speichern