This commit is contained in:
Huong Nguyen 2024-09-10 10:46:40 +07:00
commit e70d6fd690
No known key found for this signature in database
GPG Key ID: 40D88AB693A3E72A
4 changed files with 26 additions and 4 deletions

View File

@ -0,0 +1,17 @@
issueNumber: MDL-83047
notes:
theme_boost:
- message: >+
The `.page-header-headings` CSS class now has a background colour
applied to the maintenance and secure layouts.
You may need to override this class in your maintenance and secure
layouts if both of the following are true:
* Your theme plugin inherits from `theme_boost` and uses this CSS class
* Your theme plugin applies a different styling for the page header for
the maintenance and secure layouts.
type: changed

View File

@ -3086,8 +3086,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 */

View File

@ -26045,7 +26045,8 @@ blockquote {
border-left: 5px solid #8f959e;
}
.page-header-headings {
.pagelayout-maintenance .page-header-headings,
.pagelayout-secure .page-header-headings {
background-color: #fff;
}

View File

@ -26045,7 +26045,8 @@ blockquote {
border-left: 5px solid #8f959e;
}
.page-header-headings {
.pagelayout-maintenance .page-header-headings,
.pagelayout-secure .page-header-headings {
background-color: #fff;
}