Browse Source

room-details: Fix contrast of room name and description on room-details page

Have fixed the contrast of room name and description on room-details page by changing the opacity of the respective widgets.

Fixes: https://gitlab.gnome.org/GNOME/fractal/-/issues/1138
merge-requests/1327/merge
prathamgupta44 3 years ago committed by Kévin Commaille
parent
commit
22bb04d440
  1. 5
      data/resources/style.css

5
data/resources/style.css

@ -612,12 +612,17 @@ typing-bar avatar {
.room-details-name:disabled {
font-size: 2em;
filter: opacity(1);
}
.room-details-topic:not(:disabled) {
min-height: 102px;
}
.room-details-topic:disabled {
filter: opacity(1);
}
.cutout-button {
background-color: @window_bg_color;
border-radius: 9999px;

Loading…
Cancel
Save