pxvmc/src/member_list.scss

44 lines
931 B
SCSS
Raw Normal View History

2023-10-08 18:28:04 +00:00
@use "colors";
2023-10-26 20:11:59 +00:00
[class^="members_"] {
2023-10-08 18:28:04 +00:00
background-color: transparent;
2023-10-26 20:11:59 +00:00
[class^="member_"] {
2023-10-08 18:28:04 +00:00
background-color: transparent;
margin-left: 0;
2023-10-26 20:11:59 +00:00
[class^="memberInner_"] {
2023-10-08 18:28:04 +00:00
height: 36px;
padding: 0 4px;
2023-10-26 20:11:59 +00:00
[class^="avatar_"] {
2023-10-08 18:28:04 +00:00
margin-right: 6px;
}
}
}
2023-10-26 20:11:59 +00:00
[class^="membersGroup_"] {
2023-10-08 18:28:04 +00:00
padding: 0;
padding-left: 4px;
height: 21px;
background: linear-gradient(to right, colors.$highlight, transparent 75%);
line-height: 21px;
font-weight: normal;
font-size: 12px;
color: colors.$c7;
text-shadow: 0px 0px 4px colors.$c0, 0px 0px 4px colors.$c0,
0px 0px 4px colors.$c0, 0px 0px 4px colors.$c0;
font-weight: normal;
2023-10-26 20:11:59 +00:00
&:not(:has(> [class^="hiddenVisually_"])) {
2023-10-08 18:28:04 +00:00
display: flex;
align-items: center;
}
2023-10-26 20:11:59 +00:00
&:has(> [class^="hiddenVisually_"]) > span[aria-hidden="true"] {
2023-10-08 18:28:04 +00:00
display: flex;
align-items: center;
}
}
}