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:
@@ -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() {
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user