MDL-77863 theme_boost: Fix colours

* Fix tag area text shadow colour. It is originally set to
  `rgba(255, 255, 255, 0.5)` so it should be `rgba($white, 0.5)`
  instead of `rgba($black, 0.5)`.
* Revert colour for `$content-item-unread-colour` to `#f4f4f4` instead
  of `$gray-100`.
This commit is contained in:
Jun Pataleta
2023-09-07 10:57:50 +08:00
parent e7caf8bd5f
commit 60d350c59d
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ $region-footer-height: 30px;
$content-item-hover-colour-bg: $primary;
$content-item-hover-colour-text: $white;
$content-item-selected-colour-bg: #4f94cd;
$content-item-unread-colour: $gray-100;
$content-item-unread-colour: #f4f4f4;
$content-header-footer-height: $region-header-height + $region-footer-height;
@mixin invisible() {
+1 -1
View File
@@ -114,7 +114,7 @@ $comment-paging-current-border-color: #ccc !default;
$tags-tagarea-border-color: #e3e3e3 !default;
$tags-tagarea-title-color: #999 !default;
$tags-tagarea-title-border-color: #e3e3e3 !default;
$tags-tagarea-title-text-shadow-color: rgba($black, .5) !default;
$tags-tagarea-title-text-shadow-color: rgba($white, .5) !default;
$webservice-doc-td-border-color: $black !default;
+2 -2
View File
@@ -23641,7 +23641,7 @@ img.user-image {
font-weight: bold;
line-height: 20px;
color: #999;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
text-transform: uppercase;
word-wrap: break-word;
border-bottom: solid 1px #e3e3e3;
@@ -36121,7 +36121,7 @@ body {
}
.content-item-container.unread {
margin: 0;
background-color: #f8f9fa;
background-color: #f4f4f4;
}
.content-item-container.unread:hover {
color: #fff;
+2 -2
View File
@@ -23641,7 +23641,7 @@ img.user-image {
font-weight: bold;
line-height: 20px;
color: #999;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
text-transform: uppercase;
word-wrap: break-word;
border-bottom: solid 1px #e3e3e3;
@@ -36055,7 +36055,7 @@ body {
}
.content-item-container.unread {
margin: 0;
background-color: #f8f9fa;
background-color: #f4f4f4;
}
.content-item-container.unread:hover {
color: #fff;