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:
Jon Robson 2022-08-31 13:07:05 -07:00
parent 1c8af16dfb
commit 69658483bd

View file

@ -81,13 +81,16 @@ body {
float: right;
}
#siteSub {
// By default its hidden as it was hidden in Vector legacy but site styles can reveal.
display: none;
}
.vector-body {
position: relative;
z-index: @z-index-base;
#siteSub {
// By default its hidden as it was hidden in Vector legacy but site styles can reveal.
display: none;
margin-top: 8px; // T311564
}