Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix alignment and poor contrast on user pills in invite dialog (#11722)
Browse files Browse the repository at this point in the history
* improve invite tile color

* change checkmark color for consistency

* switch to cpd-color-text-info-primary

* fix misaligned "x"

* use --cpd-color-bg-success-subtle instead
  • Loading branch information
gabrc52 committed Oct 11, 2023
1 parent ac32d45 commit a80cf58
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions res/css/views/dialogs/_InviteDialog.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -151,13 +151,14 @@ limitations under the License.
margin-inline-end: $spacing-8;

.mx_InviteDialog_userTile_pill {
background-color: $username-variant1-color;
background-color: var(--cpd-color-bg-success-subtle);
border-radius: 12px;
display: inline-block;
height: 24px;
line-height: $font-24px;
padding-inline: $spacing-8;
color: #ffffff; /* this is fine without a var because it's for both themes */
vertical-align: middle;
color: $primary-content;

.mx_SearchResultAvatar {
border-radius: 20px;
Expand All @@ -182,6 +183,7 @@ limitations under the License.
.mx_InviteDialog_userTile_remove {
display: inline-block;
margin-inline-start: $spacing-4;
vertical-align: middle;
}
}

Expand Down Expand Up @@ -338,7 +340,7 @@ limitations under the License.

.mx_InviteDialog_tile--room_selected {
border-radius: 36px;
background-color: $username-variant1-color;
background-color: var(--cpd-color-bg-success-subtle);

&::before {
content: "";
Expand All @@ -352,7 +354,7 @@ limitations under the License.
position: absolute;
top: 6px; /* 50% */
left: 6px; /* 50% */
background-color: #ffffff; /* this is fine without a var because it's for both themes */
background-color: $primary-content;
}
}

Expand Down

0 comments on commit a80cf58

Please sign in to comment.