mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-25 14:27:01 -04:00
132 lines
2.3 KiB
CSS
132 lines
2.3 KiB
CSS
.vc-uvs-icon {
|
|
height: 14px;
|
|
width: 14px;
|
|
min-width: 14px;
|
|
border-radius: 50%;
|
|
background-color: var(--background-floating);
|
|
cursor: pointer;
|
|
padding: 4px;
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
}
|
|
|
|
.vc-uvs-profile-icon {
|
|
height: 24px;
|
|
width: 24px;
|
|
border-radius: 50%;
|
|
color: #fff;
|
|
background-color: var(--background-floating);
|
|
cursor: pointer;
|
|
padding: 4px;
|
|
opacity: 0.8;
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.vc-uvs-profile-icon svg {
|
|
color: #fff;
|
|
}
|
|
|
|
.vc-uvs-svg {
|
|
color: var(--interactive-normal);
|
|
}
|
|
|
|
.vc-uvs-icon-live {
|
|
height: 16px;
|
|
border-radius: 16px;
|
|
background-color: var(--status-danger);
|
|
color: #fff;
|
|
font-size: 12px;
|
|
line-height: 16px;
|
|
font-weight: 600;
|
|
font-family: var(--font-display);
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
|
|
.vc-uvs-icon:hover {
|
|
background-color: var(--background-tertiary);
|
|
}
|
|
|
|
.vc-uvs-profile-icon:hover {
|
|
background-color: var(--background-tertiary);
|
|
}
|
|
|
|
.vc-uvs-icon.vc-uvs-icon-current-call {
|
|
padding: 3px;
|
|
background-color: var(--status-positive);
|
|
}
|
|
|
|
.vc-uvs-profile-icon.vc-uvs-icon-current-call {
|
|
padding: 3px;
|
|
background-color: var(--status-positive);
|
|
}
|
|
|
|
.vc-uvs-icon-current-call:hover {
|
|
background-color: var(--button-positive-background);
|
|
}
|
|
|
|
.vc-uvs-icon-current-call svg {
|
|
color: #fff;
|
|
}
|
|
|
|
|
|
|
|
.vc-uvs-icon-live:hover {
|
|
background-color: var(--button-danger-background);
|
|
}
|
|
|
|
.vc-uvs-icon-live>div {
|
|
padding: 0 6px;
|
|
}
|
|
|
|
|
|
.vc-uvs-tooltip {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.vc-uvs-tooltip-header {
|
|
display: block;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.vc-uvs-tooltip-subtext {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 3px;
|
|
margin-bottom: 3px;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.vc-uvs-tooltip-subtext>div {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.vc-uvs-tooltip-icon {
|
|
min-width: 16px;
|
|
width: 18px;
|
|
height: 18px;
|
|
margin-right: 12px;
|
|
color: #fff;
|
|
}
|
|
|
|
.vc-uvs-users-list {
|
|
width: fit-content;
|
|
margin-top: 6;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.vc-uvs-icon-container {
|
|
margin-left: 12px;
|
|
margin-right: 12px;
|
|
}
|