MDL-83047 theme_boost: Apply background colour only on select layouts

* Apply the styling of `background-color` for `.page-header-headings`
only in the maintenance and secure layouts.
This commit is contained in:
Jun Pataleta
2024-09-09 17:01:23 +08:00
parent 7f6d05ad04
commit 91932bf748
3 changed files with 9 additions and 4 deletions
+5 -2
View File
@@ -3127,8 +3127,11 @@ blockquote {
border-left: 5px solid $gray-500;
}
.page-header-headings {
background-color: $body-bg;
.pagelayout-maintenance,
.pagelayout-secure {
.page-header-headings {
background-color: $body-bg;
}
}
/* Prevent long strings exceeding page width */
+2 -1
View File
@@ -25953,7 +25953,8 @@ blockquote {
border-left: 5px solid #8f959e;
}
.page-header-headings {
.pagelayout-maintenance .page-header-headings,
.pagelayout-secure .page-header-headings {
background-color: #fff;
}
+2 -1
View File
@@ -25953,7 +25953,8 @@ blockquote {
border-left: 5px solid #8f959e;
}
.page-header-headings {
.pagelayout-maintenance .page-header-headings,
.pagelayout-secure .page-header-headings {
background-color: #fff;
}