2023-11-21 19:30:29 +00:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2024-01-16 02:53:27 +00:00
|
|
|
.client-theme-warning * {
|
2023-11-21 19:30:29 +00:00
|
|
|
color: var(--text-danger);
|
|
|
|
}
|
2024-01-16 02:53:27 +00:00
|
|
|
|
|
|
|
.client-theme-contrast-warning {
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
padding: 0.5rem;
|
|
|
|
border-radius: .5rem;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|