mirror of
https://github.com/MercuryWorkshop/scramjet.git
synced 2025-05-13 06:20:02 -04:00
1549 lines
31 KiB
CSS
1549 lines
31 KiB
CSS
.vc-error-card {
|
|
padding: 2em;
|
|
background-color: #e7828430;
|
|
border: 1px solid #e78284;
|
|
border-radius: 5px;
|
|
color: var(--text-normal, white);
|
|
}
|
|
[class*="profileBadges"] {
|
|
flex: none;
|
|
}
|
|
.vc-author-modal-root {
|
|
padding: 1em;
|
|
}
|
|
.vc-author-modal-header {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 1em;
|
|
}
|
|
.vc-author-modal-name {
|
|
text-transform: none;
|
|
flex-grow: 0;
|
|
background: var(--background-tertiary);
|
|
border-radius: 0 9999px 9999px 0;
|
|
padding: 6px 0.8em 6px 0.5em;
|
|
font-size: 20px;
|
|
height: 20px;
|
|
position: relative;
|
|
text-wrap: nowrap;
|
|
}
|
|
.vc-author-modal-name:before {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
height: 100%;
|
|
width: 32px;
|
|
background: var(--background-tertiary);
|
|
z-index: -1;
|
|
left: -32px;
|
|
top: 0;
|
|
border-top-left-radius: 9999px;
|
|
border-bottom-left-radius: 9999px;
|
|
}
|
|
.vc-author-modal-avatar {
|
|
height: 32px;
|
|
width: 32px;
|
|
border-radius: 50%;
|
|
}
|
|
.vc-author-modal-links {
|
|
margin-left: auto;
|
|
}
|
|
.vc-author-modal-plugins {
|
|
display: grid;
|
|
gap: 0.5em;
|
|
margin-top: 0.75em;
|
|
}
|
|
.vc-notification-root {
|
|
all: unset;
|
|
display: flex;
|
|
flex-direction: column;
|
|
color: var(--text-normal);
|
|
background-color: var(--background-secondary-alt);
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
}
|
|
.vc-notification-root:not(
|
|
.vc-notification-log-wrapper > .vc-notification-root
|
|
) {
|
|
position: absolute;
|
|
z-index: 2147483647;
|
|
right: 1rem;
|
|
width: 25vw;
|
|
min-height: 10vh;
|
|
}
|
|
.vc-notification {
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding: 1.25rem;
|
|
gap: 1.25rem;
|
|
}
|
|
.vc-notification-content {
|
|
width: 100%;
|
|
}
|
|
.vc-notification-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.vc-notification-title {
|
|
color: var(--header-primary);
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
line-height: 1.25rem;
|
|
text-transform: uppercase;
|
|
}
|
|
.vc-notification-close-btn {
|
|
all: unset;
|
|
cursor: pointer;
|
|
color: var(--interactive-normal);
|
|
opacity: 0.5;
|
|
transition:
|
|
opacity 0.2s ease-in-out,
|
|
color 0.2s ease-in-out;
|
|
}
|
|
.vc-notification-close-btn:hover {
|
|
color: var(--interactive-hover);
|
|
opacity: 1;
|
|
}
|
|
.vc-notification-icon {
|
|
height: 4rem;
|
|
width: 4rem;
|
|
border-radius: 6px;
|
|
}
|
|
.vc-notification-progressbar {
|
|
height: 0.25rem;
|
|
border-radius: 5px;
|
|
margin-top: auto;
|
|
}
|
|
.vc-notification-p {
|
|
margin: 0.5rem 0 0;
|
|
line-height: 140%;
|
|
}
|
|
.vc-notification-img {
|
|
width: 100%;
|
|
}
|
|
.vc-notification-log-empty {
|
|
height: 218px;
|
|
background: url(/assets/b36de980b174d7b798c89f35c116e5c6.svg) center no-repeat;
|
|
margin-bottom: 40px;
|
|
}
|
|
.vc-notification-log-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 1em;
|
|
overflow: hidden;
|
|
}
|
|
.vc-notification-log-wrapper {
|
|
transition: 0.2s ease;
|
|
transition-property: height, opacity;
|
|
}
|
|
.vc-notification-log-wrapper:not(:last-child) {
|
|
margin-bottom: 1em;
|
|
}
|
|
.vc-notification-log-removing {
|
|
height: 0 !important;
|
|
opacity: 0;
|
|
margin-bottom: 1em;
|
|
}
|
|
.vc-notification-log-body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.vc-notification-log-timestamp {
|
|
margin-left: auto;
|
|
font-size: 0.8em;
|
|
font-weight: lighter;
|
|
}
|
|
.vc-notification-log-danger-btn {
|
|
color: var(--white-500);
|
|
background-color: var(--button-danger-background);
|
|
}
|
|
.vc-expandableheader-center-flex {
|
|
display: flex;
|
|
place-items: center;
|
|
}
|
|
.vc-expandableheader-btn {
|
|
all: unset;
|
|
cursor: pointer;
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
.vc-open-external-icon {
|
|
transform: rotate(45deg);
|
|
}
|
|
.vc-owner-crown-icon {
|
|
color: var(--text-warning);
|
|
}
|
|
.vc-switch-slider {
|
|
transition: 0.1s transform ease-in-out;
|
|
}
|
|
.vc-plugins-grid {
|
|
margin-top: 16px;
|
|
display: grid;
|
|
grid-gap: 16px;
|
|
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
|
|
}
|
|
.vc-plugins-info-button {
|
|
height: 24px;
|
|
width: 24px;
|
|
padding: 0;
|
|
background: transparent;
|
|
margin-right: 8px;
|
|
}
|
|
.vc-plugins-settings-button:hover {
|
|
color: var(--interactive-hover);
|
|
}
|
|
.vc-plugins-filter-controls {
|
|
display: grid;
|
|
height: 40px;
|
|
gap: 10px;
|
|
grid-template-columns: 1fr 150px;
|
|
}
|
|
.vc-plugins-badge {
|
|
padding: 0 6px;
|
|
font-family: var(--font-display);
|
|
font-weight: 500;
|
|
border-radius: 8px;
|
|
height: 16px;
|
|
font-size: 12px;
|
|
line-height: 16px;
|
|
color: var(--white-500);
|
|
text-align: center;
|
|
}
|
|
.vc-plugins-dep-name {
|
|
margin: 0 auto;
|
|
}
|
|
.vc-plugins-info-card {
|
|
padding: 1em;
|
|
height: 8em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.vc-plugins-info-card div {
|
|
line-height: 32px;
|
|
}
|
|
.vc-plugins-restart-card {
|
|
padding: 1em;
|
|
background: var(--info-warning-background);
|
|
border: 1px solid var(--info-warning-foreground);
|
|
color: var(--info-warning-text);
|
|
}
|
|
.vc-plugins-restart-card button {
|
|
margin-top: 0.5em;
|
|
background: var(--info-warning-foreground) !important;
|
|
}
|
|
.vc-plugins-info-button svg:not(:hover, :focus) {
|
|
color: var(--text-muted);
|
|
}
|
|
.vc-plugin-modal-info {
|
|
align-items: center;
|
|
}
|
|
.vc-plugin-modal-description {
|
|
flex-grow: 1;
|
|
}
|
|
.vc-settings-modal-link-icon {
|
|
height: 32px;
|
|
width: 32px;
|
|
border-radius: 50%;
|
|
border: 4px solid var(--background-tertiary);
|
|
box-sizing: border-box;
|
|
}
|
|
.vc-settings-modal-links {
|
|
display: flex;
|
|
gap: 0.2em;
|
|
}
|
|
.vc-addon-card {
|
|
background-color: var(--background-secondary-alt);
|
|
color: var(--interactive-active);
|
|
border-radius: 8px;
|
|
display: block;
|
|
height: 100%;
|
|
padding: 12px;
|
|
width: 100%;
|
|
transition: 0.1s ease-out;
|
|
transition-property: box-shadow, transform, background, opacity;
|
|
box-sizing: border-box;
|
|
}
|
|
.vc-addon-card-disabled {
|
|
opacity: 0.6;
|
|
}
|
|
.vc-addon-card:hover {
|
|
background-color: var(--background-tertiary);
|
|
transform: translateY(-1px);
|
|
box-shadow: var(--elevation-high);
|
|
}
|
|
.vc-addon-header {
|
|
margin-top: auto;
|
|
display: flex;
|
|
width: 100%;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
.vc-addon-note {
|
|
height: 36px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
box-orient: vertical;
|
|
}
|
|
.vc-addon-name-author {
|
|
width: 100%;
|
|
}
|
|
.vc-addon-name {
|
|
display: flex;
|
|
width: 100%;
|
|
align-items: center;
|
|
flex-grow: 1;
|
|
gap: 8px;
|
|
}
|
|
.vc-addon-author {
|
|
font-size: 0.8em;
|
|
}
|
|
.vc-addon-author:before {
|
|
content: "by ";
|
|
}
|
|
.vc-addon-title-container {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
height: 1.25em;
|
|
position: relative;
|
|
}
|
|
.vc-addon-title {
|
|
position: absolute;
|
|
inset: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
@keyframes vc-addon-title {
|
|
0% {
|
|
transform: translate(0);
|
|
}
|
|
50% {
|
|
transform: translate(var(--offset));
|
|
}
|
|
to {
|
|
transform: translate(0);
|
|
}
|
|
}
|
|
.vc-addon-title:hover {
|
|
overflow: visible;
|
|
animation: vc-addon-title var(--duration) linear infinite;
|
|
}
|
|
.vc-settings-tab-bar {
|
|
margin-top: 20px;
|
|
margin-bottom: 10px;
|
|
border-bottom: 2px solid var(--background-modifier-accent);
|
|
}
|
|
.vc-settings-tab-bar-item {
|
|
margin-right: 32px;
|
|
padding-bottom: 16px;
|
|
margin-bottom: -2px;
|
|
}
|
|
.vc-settings-donate {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
.vc-settings-card {
|
|
padding: 1em;
|
|
margin-bottom: 1em;
|
|
}
|
|
.vc-backup-restore-card {
|
|
background-color: var(--info-warning-background);
|
|
border-color: var(--info-warning-foreground);
|
|
color: var(--info-warning-text);
|
|
}
|
|
.vc-settings-theme-links {
|
|
display: inline-block !important;
|
|
color: var(--text-normal) !important;
|
|
padding: 0.5em;
|
|
border: 1px solid var(--background-modifier-accent);
|
|
max-height: unset;
|
|
background-color: transparent;
|
|
box-sizing: border-box;
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
resize: none;
|
|
width: 100%;
|
|
}
|
|
.vc-settings-theme-links::placeholder {
|
|
color: var(--header-secondary);
|
|
}
|
|
.vc-settings-theme-links:focus {
|
|
background-color: var(--background-tertiary);
|
|
}
|
|
.vc-cloud-settings-sync-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
grid-gap: 1em;
|
|
}
|
|
.vc-cloud-erase-data-danger-btn {
|
|
color: var(--white-500);
|
|
background-color: var(--button-danger-background);
|
|
}
|
|
.vc-text-selectable,
|
|
.vc-text-selectable :where([class*="text" i], [class*="title" i]) {
|
|
user-select: text;
|
|
cursor: initial;
|
|
}
|
|
.vc-updater-modal {
|
|
padding: 1.5em !important;
|
|
}
|
|
.vc-updater-modal-close-button {
|
|
float: right;
|
|
}
|
|
.vc-settings-theme-grid {
|
|
display: grid;
|
|
grid-gap: 16px;
|
|
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
|
|
}
|
|
.vc-settings-theme-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: var(--background-secondary-alt);
|
|
color: var(--interactive-active);
|
|
border-radius: 8px;
|
|
padding: 1em;
|
|
width: 100%;
|
|
transition: 0.1s ease-out;
|
|
transition-property: box-shadow, transform, background, opacity;
|
|
}
|
|
.vc-settings-theme-card-text {
|
|
text-overflow: ellipsis;
|
|
height: 1.2em;
|
|
margin-bottom: 2px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
.vc-settings-theme-author:before {
|
|
content: "by ";
|
|
}
|
|
.vc-settings-quickActions-card {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(200px, max-content));
|
|
gap: 0.5em;
|
|
justify-content: center;
|
|
padding: 0.5em 0;
|
|
margin-bottom: 1em;
|
|
}
|
|
.vc-settings-quickActions-pill {
|
|
all: unset;
|
|
background: var(--background-secondary);
|
|
color: var(--header-secondary);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5em;
|
|
padding: 8px 12px;
|
|
border-radius: 9999px;
|
|
}
|
|
.vc-settings-quickActions-pill:hover {
|
|
background: var(--background-secondary-alt);
|
|
}
|
|
.vc-settings-quickActions-pill:focus-visible {
|
|
outline: 2px solid var(--focus-primary);
|
|
outline-offset: 2px;
|
|
}
|
|
.vc-settings-quickActions-img {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
.client-theme-settings {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.client-theme-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
.client-theme-settings-labels {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
}
|
|
.client-theme-container > [class^="colorSwatch"] > [class^="swatch"] {
|
|
border: thin solid var(--background-modifier-accent) !important;
|
|
}
|
|
.client-theme-warning * {
|
|
color: var(--text-danger);
|
|
}
|
|
.client-theme-contrast-warning {
|
|
background-color: var(--background-primary);
|
|
padding: 0.5rem;
|
|
border-radius: 0.5rem;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.vc-dearrow-toggle-off svg {
|
|
filter: grayscale(1);
|
|
}
|
|
.vc-dearrow-toggle-on,
|
|
.vc-dearrow-toggle-off {
|
|
all: unset;
|
|
display: inline;
|
|
cursor: pointer;
|
|
position: absolute;
|
|
top: 0.75rem;
|
|
right: 0.75rem;
|
|
}
|
|
.vc-decor-danger-btn {
|
|
color: var(--white-500);
|
|
background-color: var(--button-danger-background);
|
|
}
|
|
.vc-decor-change-decoration-modal-content {
|
|
position: relative;
|
|
display: flex;
|
|
border-radius: 5px 5px 0 0;
|
|
padding: 0 16px;
|
|
gap: 4px;
|
|
}
|
|
.vc-decor-change-decoration-modal-preview {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 24px;
|
|
gap: 8px;
|
|
max-width: 280px;
|
|
}
|
|
.vc-decor-change-decoration-modal-decoration {
|
|
width: 80px;
|
|
height: 80px;
|
|
}
|
|
.vc-decor-change-decoration-modal-footer {
|
|
justify-content: space-between;
|
|
}
|
|
.vc-decor-change-decoration-modal-footer-btn-container {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
}
|
|
.vc-decor-create-decoration-modal-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
padding: 0 16px;
|
|
}
|
|
.vc-decor-create-decoration-modal-form-preview-container {
|
|
display: flex;
|
|
gap: 16px;
|
|
}
|
|
.vc-decor-modal-header,
|
|
.vc-decor-modal-footer {
|
|
padding: 16px;
|
|
}
|
|
.vc-decor-create-decoration-modal-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
gap: 16px;
|
|
}
|
|
.vc-decor-sectioned-grid-list-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden scroll;
|
|
max-height: 512px;
|
|
width: 352px;
|
|
gap: 12px;
|
|
}
|
|
.vc-decor-sectioned-grid-list-grid {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
.vc-decor-section-remove-margin {
|
|
margin-bottom: 0;
|
|
}
|
|
.vc-fpt-preview * {
|
|
pointer-events: none;
|
|
}
|
|
.vc-membercount-widget {
|
|
display: flex;
|
|
align-content: center;
|
|
--color-online: var(--green-360);
|
|
--color-total: var(--primary-400);
|
|
}
|
|
.vc-membercount-tooltip {
|
|
margin-top: 0.25em;
|
|
margin-left: 2px;
|
|
}
|
|
.vc-membercount-member-list {
|
|
justify-content: center;
|
|
margin-top: 1em;
|
|
padding-inline: 1em;
|
|
}
|
|
.vc-membercount-online {
|
|
color: var(--color-online);
|
|
}
|
|
.vc-membercount-total {
|
|
color: var(--color-total);
|
|
}
|
|
.vc-membercount-online-dot {
|
|
background-color: var(--color-online);
|
|
display: inline-block;
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
margin-right: 0.5em;
|
|
}
|
|
.vc-membercount-total-dot {
|
|
display: inline-block;
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
border: 3px solid var(--color-total);
|
|
margin: 0 0.5em 0 1em;
|
|
}
|
|
.vc-mentionAvatars-avatar {
|
|
vertical-align: middle;
|
|
width: 1em !important;
|
|
height: 1em;
|
|
margin: 0 4px 0.2rem 2px;
|
|
border-radius: 50%;
|
|
box-sizing: border-box;
|
|
}
|
|
.messagelogger-deleted [class^="buttons"] {
|
|
display: none;
|
|
}
|
|
.messagelogger-deleted
|
|
:is(
|
|
video,
|
|
.emoji,
|
|
[data-type="sticker"],
|
|
iframe,
|
|
.messagelogger-deleted-attachment,
|
|
[class|="inlineMediaEmbed"]
|
|
) {
|
|
filter: grayscale(1) !important;
|
|
transition: 0.15s filter ease-in-out;
|
|
&[class*="hiddenMosaicItem_"] {
|
|
filter: grayscale(1)
|
|
blur(var(--custom-message-attachment-spoiler-blur-radius, 44px)) !important;
|
|
}
|
|
}
|
|
.messagelogger-deleted
|
|
:is(
|
|
video,
|
|
.emoji,
|
|
[data-type="sticker"],
|
|
iframe,
|
|
.messagelogger-deleted-attachment,
|
|
[class|="inlineMediaEmbed"]
|
|
):hover {
|
|
filter: grayscale(0) !important;
|
|
}
|
|
.theme-dark .messagelogger-edited {
|
|
filter: brightness(80%);
|
|
}
|
|
.theme-light .messagelogger-edited {
|
|
opacity: 0.5;
|
|
}
|
|
.messagelogger-edit-marker {
|
|
cursor: pointer;
|
|
}
|
|
.vc-ml-modal-timestamp {
|
|
cursor: unset;
|
|
height: unset;
|
|
}
|
|
.vc-ml-modal-tab-bar {
|
|
flex-wrap: wrap;
|
|
gap: 16px;
|
|
}
|
|
.vc-permviewer-userperms-title-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 10px;
|
|
margin-bottom: 6px;
|
|
}
|
|
.vc-permviewer-userperms-btns-container {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.vc-permviewer-userperms-sortorder-btn {
|
|
all: unset;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
.vc-permviewer-userperms-permdetails-btn,
|
|
.vc-permviewer-userperms-toggleperms-btn {
|
|
all: unset;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.vc-permviewer-perms-title {
|
|
flex-grow: 1;
|
|
}
|
|
.vc-permviewer-perms-no-perms {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
.vc-permviewer-perms-container {
|
|
display: grid;
|
|
grid-template-columns: 1fr 2fr;
|
|
grid-template-areas: "list permissions";
|
|
padding: 16px 0;
|
|
}
|
|
.vc-permviewer-perms-list {
|
|
grid-area: list;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
border-right: 2px solid var(--background-modifier-active);
|
|
}
|
|
.vc-permviewer-perms-list-item-btn {
|
|
all: unset;
|
|
cursor: pointer;
|
|
}
|
|
.vc-permviewer-perms-list-item {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 8px 5px;
|
|
cursor: pointer;
|
|
width: 230px;
|
|
border-radius: 5px;
|
|
}
|
|
.vc-permviewer-perms-list-item:hover {
|
|
background-color: var(--background-modifier-hover);
|
|
}
|
|
.vc-permviewer-perms-list-item-active {
|
|
background-color: var(--background-modifier-selected);
|
|
}
|
|
.vc-permviewer-perms-list-item > div {
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
.vc-permviewer-perms-role-circle {
|
|
border-radius: 50%;
|
|
width: 12px;
|
|
height: 12px;
|
|
margin-left: 3px;
|
|
margin-right: 11px;
|
|
flex-shrink: 0;
|
|
}
|
|
.vc-permviewer-perms-user-img {
|
|
border-radius: 50%;
|
|
width: 20px;
|
|
height: 20px;
|
|
margin-right: 6px;
|
|
}
|
|
.vc-permviewer-perms-perms {
|
|
grid-area: permissions;
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-left: 5px;
|
|
}
|
|
.vc-permviewer-perms-perms-item {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 10px;
|
|
border-bottom: 2px solid var(--background-modifier-active);
|
|
}
|
|
.vc-permviewer-perms-perms-item:last-child {
|
|
border: 0;
|
|
}
|
|
.vc-permviewer-perms-perms-item-icon {
|
|
border: 1px solid var(--background-modifier-selected);
|
|
width: 24px;
|
|
height: 24px;
|
|
margin-right: 5px;
|
|
}
|
|
.vc-permviewer-perms-perms-item .vc-info-icon {
|
|
color: var(--interactive-muted);
|
|
cursor: pointer;
|
|
position: absolute;
|
|
right: 0;
|
|
scale: 0.9;
|
|
transition: color ease-in 0.1s;
|
|
}
|
|
.vc-permviewer-perms-perms-item .vc-info-icon:hover {
|
|
color: var(--interactive-active);
|
|
}
|
|
.vc-permviewer-role-button {
|
|
border-radius: var(--radius-xs);
|
|
background: var(--bg-mod-faint);
|
|
color: var(--interactive-normal);
|
|
border: 1px solid var(--border-faint);
|
|
width: -moz-fit-content;
|
|
width: fit-content;
|
|
height: 24px;
|
|
padding: 4px;
|
|
}
|
|
.custom-profile-theme .vc-permviewer-role-button {
|
|
background: rgb(var(--bg-overlay-color) / var(--bg-overlay-opacity-6));
|
|
border-color: var(--profile-body-border-color);
|
|
}
|
|
.vc-pip-button {
|
|
color: var(--interactive-normal);
|
|
}
|
|
.vc-pip-button:hover {
|
|
background-color: var(--background-modifier-hover);
|
|
color: var(--interactive-hover);
|
|
}
|
|
.vc-pindms-section-container {
|
|
box-sizing: border-box;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
line-height: 16px;
|
|
letter-spacing: 0.02em;
|
|
font-family: var(--font-display);
|
|
font-weight: 600;
|
|
flex: 1 1 auto;
|
|
color: var(--channels-default);
|
|
cursor: pointer;
|
|
}
|
|
.vc-pindms-modal-content {
|
|
display: grid;
|
|
justify-content: center;
|
|
padding: 1rem;
|
|
gap: 1.5rem;
|
|
}
|
|
.vc-pindms-modal-content [class^="defaultContainer"] {
|
|
display: none;
|
|
}
|
|
.vc-pindms-collapse-icon {
|
|
width: 16px;
|
|
height: 16px;
|
|
color: var(--interactive-normal);
|
|
transform: rotate(90deg);
|
|
}
|
|
.vc-pindms-collapsed .vc-pindms-collapse-icon {
|
|
transform: rotate(0);
|
|
}
|
|
.vc-platform-indicator {
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
vertical-align: top;
|
|
position: relative;
|
|
}
|
|
.vc-chatbar-button {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.vc-pronoundb-compact {
|
|
display: none;
|
|
}
|
|
[class*="compact"] .vc-pronoundb-compact {
|
|
display: inline-block;
|
|
margin-left: -2px;
|
|
margin-right: 0.25rem;
|
|
}
|
|
.vc-ranb-button {
|
|
color: var(--interactive-normal);
|
|
padding: 0 0.5em;
|
|
margin-bottom: 0.5em;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
.vc-ranb-button:hover {
|
|
color: var(--interactive-active);
|
|
}
|
|
.vc-reply-timestamp {
|
|
margin-right: 0.25em;
|
|
}
|
|
[class|="section"]:not([class|="lastSection"]) + .vc-rdb-view {
|
|
margin-top: 12px;
|
|
}
|
|
.vc-rdb-badge {
|
|
vertical-align: middle;
|
|
margin-left: 4px;
|
|
}
|
|
.vc-rdb-input {
|
|
margin-top: 6px;
|
|
margin-bottom: 12px;
|
|
resize: none;
|
|
overflow: hidden;
|
|
background: transparent;
|
|
border: 1px solid var(--profile-message-input-border-color);
|
|
}
|
|
.vc-rdb-modal-footer > div {
|
|
width: 100%;
|
|
margin: 6px 16px;
|
|
}
|
|
.vc-rdb-input > div > div {
|
|
padding-left: 0 !important;
|
|
}
|
|
.vc-rdb-placeholder {
|
|
margin-bottom: 4px;
|
|
font-weight: 700;
|
|
font-style: italic;
|
|
color: var(--text-muted);
|
|
}
|
|
.vc-rdb-input * {
|
|
font-size: 14px;
|
|
}
|
|
.vc-rdb-modal-footer {
|
|
padding: 0;
|
|
}
|
|
.vc-rdb-modal-footer .vc-rdb-input {
|
|
margin-bottom: 0;
|
|
background: var(--input-background);
|
|
}
|
|
.vc-rdb-modal-footer [class|="pageControlContainer"] {
|
|
margin-top: 0;
|
|
}
|
|
.vc-rdb-modal-header {
|
|
flex-grow: 1;
|
|
}
|
|
.vc-rdb-modal-reviews {
|
|
margin-top: 16px;
|
|
}
|
|
.vc-rdb-review {
|
|
padding-top: 8px !important;
|
|
padding-bottom: 8px !important;
|
|
padding-right: 32px !important;
|
|
}
|
|
.vc-rdb-review:hover {
|
|
background: var(--background-message-hover) !important;
|
|
border-radius: 8px;
|
|
}
|
|
.vc-rdb-review-comment img {
|
|
vertical-align: text-top;
|
|
}
|
|
.vc-rdb-review-comment {
|
|
overflow-y: hidden;
|
|
margin-top: 1px;
|
|
margin-bottom: 8px;
|
|
color: var(--text-normal);
|
|
font-size: 15px;
|
|
}
|
|
.vc-rdb-blocked-badge {
|
|
cursor: pointer;
|
|
}
|
|
.vc-rdb-block-modal-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.vc-rdb-block-modal {
|
|
padding: 1em;
|
|
display: grid;
|
|
gap: 0.75em;
|
|
}
|
|
.vc-rdb-button-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 10px;
|
|
}
|
|
@media (max-width: 600px) {
|
|
.vc-rdb-button-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
.vc-rdb-block-modal-row {
|
|
display: flex;
|
|
height: 2em;
|
|
gap: 0.5em;
|
|
align-items: center;
|
|
}
|
|
.vc-rdb-block-modal-row img {
|
|
border-radius: 50%;
|
|
height: 2em;
|
|
width: 2em;
|
|
}
|
|
.vc-rdb-block-modal img:before {
|
|
content: "";
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: var(--background-modifier-accent);
|
|
}
|
|
.vc-rdb-block-modal-username {
|
|
flex-grow: 1;
|
|
}
|
|
.vc-rdb-block-modal-unblock {
|
|
cursor: pointer;
|
|
}
|
|
.vc-st-modal-content input {
|
|
background-color: var(--input-background);
|
|
color: var(--text-normal);
|
|
width: 95%;
|
|
padding: 8px 8px 8px 12px;
|
|
margin: 1em 0;
|
|
outline: none;
|
|
border: 1px solid var(--input-background);
|
|
border-radius: 4px;
|
|
font-weight: 500;
|
|
font-style: inherit;
|
|
font-size: 100%;
|
|
}
|
|
.vc-st-format-label,
|
|
.vc-st-format-label span {
|
|
background-color: transparent;
|
|
}
|
|
.vc-st-modal-content [class|="select"] {
|
|
margin-bottom: 1em;
|
|
}
|
|
.vc-st-modal-content [class|="select"] span {
|
|
background-color: var(--input-background);
|
|
}
|
|
.vc-st-modal-header {
|
|
place-content: center space-between;
|
|
}
|
|
.vc-st-modal-header h1 {
|
|
margin: 0;
|
|
}
|
|
.vc-st-modal-header button {
|
|
padding: 0;
|
|
}
|
|
.vc-st-preview-text {
|
|
margin-bottom: 1em;
|
|
}
|
|
.vc-st-button svg {
|
|
transform: scale(1.1) translateY(1px);
|
|
}
|
|
.vc-gp-root {
|
|
height: 100%;
|
|
user-select: text;
|
|
}
|
|
.vc-gp-banner {
|
|
cursor: pointer;
|
|
aspect-ratio: auto 240 / 135;
|
|
height: 334px;
|
|
width: 100%;
|
|
object-fit: cover;
|
|
overflow: clip;
|
|
overflow-clip-margin: content-box;
|
|
}
|
|
.vc-gp-header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 0.5em;
|
|
margin: 0.5em;
|
|
}
|
|
.vc-gp-header img {
|
|
width: 48px;
|
|
height: 48px;
|
|
cursor: pointer;
|
|
}
|
|
.vc-gp-name-and-description {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.2em;
|
|
}
|
|
.vc-gp-name {
|
|
margin: 0;
|
|
}
|
|
.vc-gp-tab-bar {
|
|
border-bottom: 2px solid var(--background-modifier-accent);
|
|
margin: 20px 12px 0;
|
|
display: flex;
|
|
gap: 40px;
|
|
align-items: stretch;
|
|
flex-direction: row;
|
|
}
|
|
.vc-gp-tab {
|
|
border-bottom: 2px solid transparent;
|
|
color: var(--interactive-normal);
|
|
cursor: pointer;
|
|
height: 39px;
|
|
line-height: 14px;
|
|
}
|
|
.vc-gp-tab-content {
|
|
margin: 1em;
|
|
}
|
|
.vc-gp-tab:where(.vc-gp-selected, :hover, :focus) {
|
|
border-bottom-color: var(--interactive-active);
|
|
}
|
|
.vc-gp-info {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 1em;
|
|
}
|
|
.vc-gp-server-info-pair {
|
|
color: var(--text-normal);
|
|
}
|
|
.vc-gp-server-info-pair [class^="timestamp"] {
|
|
margin-left: 0;
|
|
}
|
|
.vc-gp-owner {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.2em;
|
|
}
|
|
.vc-gp-owner img {
|
|
height: 20px;
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
}
|
|
.vc-gp-scroller {
|
|
width: 100%;
|
|
max-height: 500px;
|
|
}
|
|
.vc-gp-scroller [class^="listRow"] {
|
|
margin: 1px 0;
|
|
}
|
|
.vc-gp-scroller [class^="listRow"]:hover {
|
|
background-color: var(--background-modifier-hover);
|
|
}
|
|
.vc-user-connection {
|
|
all: unset;
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
}
|
|
.vc-sc-tooltip {
|
|
display: inline-flex;
|
|
gap: 0.25em;
|
|
align-items: center;
|
|
}
|
|
.vc-sc-connection-name {
|
|
word-break: break-all;
|
|
}
|
|
.vc-sc-tooltip svg {
|
|
min-width: 16px;
|
|
}
|
|
.shc-lock-screen-outer-container {
|
|
overflow: hidden scroll;
|
|
flex: 1 1 auto;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
.shc-lock-screen-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
min-height: 100%;
|
|
}
|
|
.shc-lock-screen-container > * {
|
|
margin: 5px;
|
|
}
|
|
.shc-lock-screen-logo {
|
|
width: 180px;
|
|
height: 180px;
|
|
}
|
|
.shc-lock-screen-heading-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
.shc-lock-screen-heading-container > * {
|
|
margin: inherit;
|
|
}
|
|
.shc-lock-screen-heading-nsfw-icon {
|
|
color: var(--text-normal);
|
|
}
|
|
.shc-lock-screen-topic-container {
|
|
color: var(--text-normal);
|
|
background: var(--bg-overlay-3, var(--background-secondary));
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
max-width: 70vw;
|
|
}
|
|
.shc-lock-screen-tags-container {
|
|
background: var(--bg-overlay-3, var(--background-secondary));
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
max-width: 70vw;
|
|
}
|
|
.shc-lock-screen-tags-container > * {
|
|
margin: inherit;
|
|
}
|
|
.shc-lock-screen-tags {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
.shc-evenodd-fill-current-color {
|
|
fill-rule: evenodd;
|
|
fill: currentcolor;
|
|
}
|
|
.shc-hidden-channel-icon {
|
|
margin-left: 6px;
|
|
z-index: 0;
|
|
cursor: not-allowed;
|
|
}
|
|
.shc-lock-screen-default-emoji-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
.shc-lock-screen-default-emoji-container > [class^="emojiContainer"] {
|
|
background: var(--bg-overlay-3, var(--background-secondary));
|
|
border-radius: 8px;
|
|
padding: 5px 6px;
|
|
margin-left: 5px;
|
|
}
|
|
.shc-lock-screen-allowed-users-and-roles-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background: var(--bg-overlay-3, var(--background-secondary));
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
max-width: 70vw;
|
|
}
|
|
.shc-lock-screen-allowed-users-and-roles-container-title {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
.shc-lock-screen-allowed-users-and-roles-container-toggle-btn {
|
|
all: unset;
|
|
margin-left: 5px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.shc-lock-screen-allowed-users-and-roles-container-toggle-btn > svg {
|
|
color: var(--text-normal);
|
|
}
|
|
.shc-lock-screen-allowed-users-and-roles-container-permdetails-btn {
|
|
all: unset;
|
|
margin-right: 5px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.shc-lock-screen-allowed-users-and-roles-container-permdetails-btn > svg {
|
|
color: var(--text-normal);
|
|
}
|
|
.shc-lock-screen-allowed-users-and-roles-container > [class^="members"] {
|
|
margin-left: 10px;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
.vc-smyn-suffix {
|
|
color: var(--text-muted);
|
|
}
|
|
.vc-smyn-suffix:before {
|
|
content: "(";
|
|
}
|
|
.vc-smyn-suffix:after {
|
|
content: ")";
|
|
}
|
|
.vc-std-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.vc-std-wrapper [class*="communicationDisabled"] {
|
|
margin-right: 0;
|
|
}
|
|
#vc-spotify-player {
|
|
padding: 0.375rem 0.5rem;
|
|
border-bottom: 1px solid var(--background-modifier-accent);
|
|
--vc-spotify-green: #1db954;
|
|
}
|
|
.theme-light #vc-spotify-player {
|
|
background: var(--bg-overlay-3, var(--background-secondary-alt));
|
|
}
|
|
.theme-dark #vc-spotify-player {
|
|
background: var(--bg-overlay-1, var(--background-secondary-alt));
|
|
}
|
|
.vc-spotify-button {
|
|
background: none;
|
|
color: var(--interactive-normal);
|
|
padding: 0;
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.vc-spotify-button:hover {
|
|
color: var(--interactive-hover);
|
|
background-color: var(--background-modifier-selected);
|
|
}
|
|
.vc-spotify-button svg {
|
|
height: 24px;
|
|
width: 24px;
|
|
}
|
|
[class*="vc-spotify-shuffle"] > svg,
|
|
[class*="vc-spotify-repeat"] > svg {
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
.vc-spotify-button svg path {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.vc-spotify-shuffle-on,
|
|
.vc-spotify-repeat-context,
|
|
.vc-spotify-repeat-track,
|
|
.vc-spotify-shuffle-on:hover,
|
|
.vc-spotify-repeat-context:hover,
|
|
.vc-spotify-repeat-track:hover {
|
|
color: var(--vc-spotify-green);
|
|
}
|
|
.vc-spotify-tooltip-text {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
padding-right: 0.2em;
|
|
max-width: 100%;
|
|
margin: unset;
|
|
}
|
|
.vc-spotify-repeat-1 {
|
|
font-size: 70%;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
.vc-spotify-button-row {
|
|
justify-content: center;
|
|
}
|
|
#vc-spotify-info-wrapper {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
height: 3em;
|
|
gap: 0.5em;
|
|
}
|
|
#vc-spotify-info-wrapper img {
|
|
height: 90%;
|
|
object-fit: contain;
|
|
}
|
|
#vc-spotify-album-expanded-wrapper img {
|
|
width: 100%;
|
|
object-fit: contain;
|
|
}
|
|
#vc-spotify-titles {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0.2rem;
|
|
align-items: flex-start;
|
|
place-content: flex-start center;
|
|
overflow: hidden;
|
|
}
|
|
#vc-spotify-song-title {
|
|
color: var(--header-primary);
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
.vc-spotify-ellipoverflow {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.vc-spotify-artist,
|
|
.vc-spotify-album {
|
|
font-size: 12px;
|
|
text-decoration: none;
|
|
color: var(--header-secondary);
|
|
}
|
|
.vc-spotify-comma {
|
|
color: var(--header-secondary);
|
|
}
|
|
.vc-spotify-artist[role="link"]:hover,
|
|
#vc-spotify-album-title[role="link"]:hover,
|
|
#vc-spotify-song-title[role="link"]:hover {
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
}
|
|
#vc-spotify-album-image {
|
|
border-radius: 3px;
|
|
transition: filter 0.2s;
|
|
}
|
|
#vc-spotify-album-image:hover {
|
|
filter: brightness(1.2);
|
|
cursor: pointer;
|
|
}
|
|
#vc-spotify-progress-bar {
|
|
position: relative;
|
|
color: var(--text-normal);
|
|
width: 100%;
|
|
margin: 0.5em 0 5px;
|
|
}
|
|
#vc-spotify-progress-bar > [class^="slider"] {
|
|
flex-grow: 1;
|
|
width: 100%;
|
|
padding: 0 !important;
|
|
}
|
|
#vc-spotify-progress-bar > [class^="slider"] [class^="bar-"] {
|
|
height: 4px !important;
|
|
}
|
|
#vc-spotify-progress-bar > [class^="slider"] [class^="grabber"] {
|
|
height: 10px !important;
|
|
width: 10px !important;
|
|
margin-top: 4px;
|
|
background-color: var(--interactive-normal);
|
|
border-color: var(--interactive-normal);
|
|
color: var(--interactive-normal);
|
|
opacity: 0;
|
|
transition: opacity 0.1s;
|
|
}
|
|
#vc-spotify-progress-bar:hover > [class^="slider"] [class^="grabber"] {
|
|
opacity: 1;
|
|
}
|
|
#vc-spotify-progress-text {
|
|
margin: 0;
|
|
}
|
|
.vc-spotify-progress-time {
|
|
font-size: 12px;
|
|
top: 10px;
|
|
position: absolute;
|
|
}
|
|
.vc-spotify-time-left {
|
|
left: 0;
|
|
}
|
|
.vc-spotify-time-right {
|
|
right: 0;
|
|
}
|
|
.vc-spotify-fallback {
|
|
padding: 0.5em;
|
|
color: var(--text-normal);
|
|
}
|
|
.vc-trans-modal-content {
|
|
padding: 1em;
|
|
}
|
|
.vc-trans-modal-header {
|
|
place-content: center space-between;
|
|
}
|
|
.vc-trans-modal-header h1 {
|
|
margin: 0;
|
|
}
|
|
.vc-trans-accessory {
|
|
color: var(--text-muted);
|
|
margin-top: 0.5em;
|
|
font-style: italic;
|
|
font-weight: 400;
|
|
}
|
|
.vc-trans-accessory svg {
|
|
margin-right: 0.25em;
|
|
}
|
|
.vc-trans-dismiss {
|
|
all: unset;
|
|
cursor: pointer;
|
|
color: var(--text-link);
|
|
}
|
|
.vc-trans-dismiss:is(:hover, :focus) {
|
|
text-decoration: underline;
|
|
}
|
|
.vc-trans-auto-translate {
|
|
color: var(--green-360);
|
|
}
|
|
.vc-trans-chat-button {
|
|
scale: 1.085;
|
|
}
|
|
.vc-typing-indicator {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 20px;
|
|
}
|
|
.vc-typing-indicator-avatars {
|
|
margin-left: 6px;
|
|
}
|
|
.vc-typing-indicator-dots {
|
|
margin-left: 6px;
|
|
height: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
z-index: 0;
|
|
cursor: pointer;
|
|
}
|
|
.vc-uvs-button > div {
|
|
white-space: normal !important;
|
|
}
|
|
.vc-uvs-button {
|
|
width: 100%;
|
|
margin: auto;
|
|
height: unset;
|
|
}
|
|
.vc-uvs-header {
|
|
color: var(--header-primary);
|
|
margin-bottom: 6px;
|
|
}
|
|
.vc-uvs-modal-margin {
|
|
margin: 0 12px;
|
|
}
|
|
.vc-uvs-modal-margin div {
|
|
margin-bottom: 0 !important;
|
|
}
|
|
.vc-uvs-popout-margin-self > [class^="section"] {
|
|
padding-top: 0;
|
|
padding-bottom: 12px;
|
|
}
|
|
.vc-toolbox-btn,
|
|
.vc-toolbox-btn > svg {
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
.vc-toolbox-btn > svg {
|
|
color: var(--interactive-normal);
|
|
}
|
|
.vc-toolbox-btn[class*="selected"] > svg {
|
|
color: var(--interactive-active);
|
|
}
|
|
.vc-toolbox-btn:hover > svg {
|
|
color: var(--interactive-hover);
|
|
}
|
|
.vc-voice-download {
|
|
width: 24px;
|
|
height: 24px;
|
|
color: var(--interactive-normal);
|
|
margin-left: 12px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
}
|
|
.vc-voice-download:hover {
|
|
color: var(--interactive-active);
|
|
}
|
|
.vc-vmsg-modal {
|
|
padding: 1em;
|
|
}
|
|
.vc-vmsg-buttons {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 0.5em;
|
|
margin-bottom: 1em;
|
|
}
|
|
.vc-vmsg-modal audio {
|
|
width: 100%;
|
|
}
|
|
.vc-vmsg-preview {
|
|
color: var(--text-normal);
|
|
border-radius: 24px;
|
|
background-color: var(--background-secondary);
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 16px;
|
|
height: 48px;
|
|
}
|
|
.vc-vmsg-preview-indicator {
|
|
background: var(--button-secondary-background);
|
|
width: 16px;
|
|
height: 16px;
|
|
border-radius: 50%;
|
|
transition: background 0.2s ease-in-out;
|
|
}
|
|
.vc-vmsg-preview-recording .vc-vmsg-preview-indicator {
|
|
background: var(--status-danger);
|
|
}
|
|
.vc-vmsg-preview-time {
|
|
opacity: 0.8;
|
|
margin: 0 0.5em;
|
|
font-size: 80%;
|
|
font-family: var(--font-code);
|
|
}
|
|
.vc-vmsg-preview-label {
|
|
opacity: 0.5;
|
|
letter-spacing: 0.125em;
|
|
font-weight: 600;
|
|
flex: 1;
|
|
text-align: center;
|
|
}
|