mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-12-19 03:10:47 +00:00
Reduce specificity of siteSub
Follow up to I8ab2a554f753348ea2fb0fd4d28053ea17fbe83e It should be possible to enable the #siteSub element with a simple #siteSub { display: block; }. When moving these styles from core we have made them more specific and harder to override Bug: T316027 Change-Id: I4009c67e97ed0e718c28a1fa18c0059075b7a8a7
This commit is contained in:
parent
1c8af16dfb
commit
69658483bd
|
@ -81,13 +81,16 @@ body {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#siteSub {
|
||||||
|
// By default its hidden as it was hidden in Vector legacy but site styles can reveal.
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.vector-body {
|
.vector-body {
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: @z-index-base;
|
z-index: @z-index-base;
|
||||||
|
|
||||||
#siteSub {
|
#siteSub {
|
||||||
// By default its hidden as it was hidden in Vector legacy but site styles can reveal.
|
|
||||||
display: none;
|
|
||||||
margin-top: 8px; // T311564
|
margin-top: 8px; // T311564
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue