fix theme-disrespecting text colorizing
This commit is contained in:
parent
5699eb115d
commit
4c81215a60
|
@ -23,6 +23,14 @@
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.select2-selection--single .select2-selection__placeholder {
|
||||||
|
color: var(--SmartThemeEmColor);
|
||||||
|
}
|
||||||
|
|
||||||
|
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
|
||||||
|
color: var(--SmartThemeEmColor);
|
||||||
|
}
|
||||||
|
|
||||||
.select2-container .select2-selection--single .select2-selection__rendered {
|
.select2-container .select2-selection--single .select2-selection__rendered {
|
||||||
color: var(--SmartThemeBodyColor);
|
color: var(--SmartThemeBodyColor);
|
||||||
line-height: revert;
|
line-height: revert;
|
||||||
|
@ -194,6 +202,7 @@ span.select2.select2-container .select2-selection__choice__remove:hover {
|
||||||
.select2_choice_clickable+span.select2-container .select2-selection__choice__display {
|
.select2_choice_clickable+span.select2-container .select2-selection__choice__display {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.select2_choice_clickable_buttonstyle+span.select2-container .select2-selection__choice__display {
|
.select2_choice_clickable_buttonstyle+span.select2-container .select2-selection__choice__display {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: background-color 0.3s;
|
transition: background-color 0.3s;
|
||||||
|
@ -211,7 +220,9 @@ span.select2.select2-container .select2-selection__choice__remove:hover {
|
||||||
.select2_multi_sameline+span.select2-container .select2-selection--multiple {
|
.select2_multi_sameline+span.select2-container .select2-selection--multiple {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}.select2_multi_sameline+span.select2-container .select2-selection--multiple .select2-search--inline {
|
}
|
||||||
|
|
||||||
|
.select2_multi_sameline+span.select2-container .select2-selection--multiple .select2-search--inline {
|
||||||
/* Allow search placeholder to take up all space if needed */
|
/* Allow search placeholder to take up all space if needed */
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
}
|
}
|
||||||
|
@ -255,4 +266,4 @@ span.select2.select2-container .select2-selection__choice__remove:hover {
|
||||||
|
|
||||||
.select2_multi_sameline+span.select2-container.select2-container--focus .select2-selection--multiple .select2-search--inline {
|
.select2_multi_sameline+span.select2-container.select2-container--focus .select2-selection--multiple .select2-search--inline {
|
||||||
height: unset;
|
height: unset;
|
||||||
}
|
}
|
|
@ -381,7 +381,8 @@ table.responsiveTable {
|
||||||
}
|
}
|
||||||
|
|
||||||
small {
|
small {
|
||||||
color: var(--grey70);
|
color: var(--SmartThemeBodyColor);
|
||||||
|
opacity: 0.7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mes.smallSysMes {
|
.mes.smallSysMes {
|
||||||
|
@ -2037,11 +2038,17 @@ body[data-stscript-style] .hljs.language-stscript {
|
||||||
}
|
}
|
||||||
|
|
||||||
.text_pole::placeholder {
|
.text_pole::placeholder {
|
||||||
color: rgb(139, 139, 139);
|
color: var(--SmartThemeEmColor) !important;
|
||||||
|
opacity: 0.7;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea::placeholder {
|
||||||
|
color: var(--SmartThemeEmColor) !important;
|
||||||
|
opacity: 0.7;
|
||||||
}
|
}
|
||||||
|
|
||||||
#send_textarea::placeholder {
|
#send_textarea::placeholder {
|
||||||
color: var(--SmartThemeEmColor);
|
color: var(--SmartThemeEmColor) !important;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
@ -5167,4 +5174,4 @@ body:not(.movingUI) .drawer-content.maximized {
|
||||||
color: #FAF8F6;
|
color: #FAF8F6;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pastel White */
|
/* Pastel White */
|
Loading…
Reference in New Issue