mirror of https://github.com/vector-im/riot-web
Use translucent black for RoomSubList bg to fix tinting
The alternative is to specify yet another colour that we have to worry about when applying tinting, which is currently quite fragile and requires changes to many parts of the app, including all themes that don't require the colour to be tinted. By using translucent black, we effectively take the secondary accent colour of the LeftPanel and make it more black. Note: This does not preserve the previous colour we were using, although the alternative above does allow for this.pull/6227/head
parent
d806707de0
commit
f67b4570a8
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue