Skip to content

Commit

Permalink
Merge pull request #6227 from vector-im/luke/fix-room-list-tinting-css
Browse files Browse the repository at this point in the history
Use translucent black for RoomSubList bg to fix tinting
  • Loading branch information
ara4n authored Feb 22, 2018
2 parents d806707 + 1139a3f commit d3fe023
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/skins/vector/css/themes/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ $roomtile-name-color: rgba(69, 69, 69, 0.8);
$roomtile-selected-bg-color: rgba(255, 255, 255, 0.8);
$roomtile-focused-bg-color: rgba(255, 255, 255, 0.9);

$roomsublist-background: #badece;
$roomsublist-background: rgba(0, 0, 0, 0.05);
$roomsublist-label-fg-color: $h3-color;
$roomsublist-label-bg-color: $tertiary-accent-color;
$roomsublist-chevron-color: $accent-color;
Expand Down
2 changes: 1 addition & 1 deletion src/skins/vector/css/themes/_dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ $roomtile-name-color: rgba(186, 186, 186, 0.8);
$roomtile-selected-bg-color: #333;
$roomtile-focused-bg-color: rgba(255, 255, 255, 0.2);

$roomsublist-background: #222;
$roomsublist-background: rgba(0, 0, 0, 0.2);
$roomsublist-label-fg-color: $h3-color;
$roomsublist-label-bg-color: $tertiary-accent-color;
$roomsublist-chevron-color: $accent-color;
Expand Down
2 changes: 1 addition & 1 deletion src/skins/vector/themes/status/css/_status.scss
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ $roomtile-name-color: #ffffff;
$roomtile-selected-bg-color: #465561;
$roomtile-focused-bg-color: #6d8597;

$roomsublist-background: #465561;
$roomsublist-background: rgba(0, 0, 0, 0.2);
$roomsublist-label-fg-color: #ffffff;
$roomsublist-label-bg-color: $secondary-accent-color;
$roomsublist-chevron-color: #ffffff;
Expand Down

0 comments on commit d3fe023

Please sign in to comment.