Skip to content

Commit

Permalink
Fix space name color for Light Theme (#634)
Browse files Browse the repository at this point in the history
* Fix space name color for Ligth Theme

* Fix background color of hover state for user list when forwarding a message

* Adds variable to previous commit
  • Loading branch information
areox-net authored Jul 31, 2023
1 parent 9525ac0 commit 031bcf7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion res/themes/tchap-light/css/_tchap_custom.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
$color_1: #2e2f32;
$color_2: white;
$color_3: #68707d;
$hover: #f4f6fa;
$background-color_1: #000091;
$background-color_2: transparent;
$background-color_3: rgba(125, 125, 150, 0.65);
Expand Down Expand Up @@ -120,5 +121,14 @@ $border-color_1: #7e7ec4;
background: $color_2;
}
.mx_SpaceRoomView_landing .mx_SpaceHierarchy_list li.mx_SpaceHierarchy_roomTileWrapper .mx_SpaceHierarchy_roomTile:focus-within, .mx_SpaceRoomView_landing .mx_SpaceHierarchy_list li.mx_SpaceHierarchy_roomTileWrapper .mx_SpaceHierarchy_roomTile:hover {
background-color: #f4f6fa;
background-color: $hover;
}
.mx_SpacePanel .mx_SpaceButton .mx_SpaceButton_name {
color: $color_2;
}
.mx_SpacePanel .mx_SpaceButton.mx_SpaceButton_active:not(.mx_SpaceButton_narrow) .mx_SpaceButton_selectionWrapper {
background-color: #7e7ec487;
}
.mx_ForwardDialog>.mx_ForwardList .mx_ForwardList_results .mx_ForwardList_entry:hover {
background-color: $hover;
}

0 comments on commit 031bcf7

Please sign in to comment.