2023-01-03 01:30:54 +00:00
|
|
|
.vc-settings-tab-bar {
|
2022-11-25 22:38:55 +00:00
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: -2px;
|
|
|
|
border-bottom: 2px solid var(--background-modifier-accent);
|
|
|
|
}
|
|
|
|
|
2023-01-03 01:30:54 +00:00
|
|
|
.vc-settings-tab-bar-item {
|
2022-11-25 22:38:55 +00:00
|
|
|
margin-right: 32px;
|
|
|
|
padding-bottom: 16px;
|
|
|
|
margin-bottom: -2px;
|
|
|
|
}
|
|
|
|
|
2023-01-03 01:30:54 +00:00
|
|
|
.vc-settings-quick-actions-card {
|
2022-11-25 22:38:55 +00:00
|
|
|
padding: 1em;
|
|
|
|
display: flex;
|
|
|
|
gap: 1em;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
flex-grow: 1;
|
2023-01-30 04:02:17 +00:00
|
|
|
flex-flow: row wrap;
|
2022-11-25 22:38:55 +00:00
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
2023-01-03 01:30:54 +00:00
|
|
|
|
|
|
|
.vc-settings-donate {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vc-settings-card {
|
|
|
|
padding: 1em;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vc-backup-restore-card {
|
|
|
|
background-color: var(--info-warning-background);
|
|
|
|
border-color: var(--info-warning-foreground);
|
|
|
|
color: var(--info-warning-text);
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2023-03-28 16:20:06 +00:00
|
|
|
|
|
|
|
.vc-settings-theme-links {
|
|
|
|
/* Needed to fix bad themes that hide certain textarea elements for whatever eldritch reason */
|
|
|
|
display: inline-block !important;
|
|
|
|
color: var(--text-normal) !important;
|
|
|
|
padding: 0.5em;
|
|
|
|
border: 1px solid var(--background-modifier-accent);
|
|
|
|
}
|
2023-04-07 00:27:18 +00:00
|
|
|
|
|
|
|
.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);
|
|
|
|
}
|
2023-04-08 21:28:12 +00:00
|
|
|
|
|
|
|
.vc-text-selectable,
|
|
|
|
.vc-text-selectable :not(a, button) {
|
|
|
|
/* make text selectable, silly discord makes the entirety of settings not selectable */
|
|
|
|
user-select: text;
|
|
|
|
|
|
|
|
/* discord also sets cursor: default which prevents the cursor from showing as text */
|
|
|
|
cursor: initial;
|
|
|
|
}
|