mirror of https://github.com/vector-im/riot-web
Fix alignment and poor contrast on user pills in invite dialog (#11722)
* 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 insteadpull/28217/head
parent
ac32d45bcd
commit
a80cf58aa3
|
@ -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;
|
||||
|
@ -182,6 +183,7 @@ limitations under the License.
|
|||
.mx_InviteDialog_userTile_remove {
|
||||
display: inline-block;
|
||||
margin-inline-start: $spacing-4;
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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: "";
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue