Dark theme: Fix select2 icons
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
parent
db1f1048f9
commit
dd3ed98031
|
@ -431,7 +431,7 @@ div.select2-drop {
|
||||||
}
|
}
|
||||||
.select2-search input {
|
.select2-search input {
|
||||||
min-height: auto;
|
min-height: auto;
|
||||||
background: url('../img/actions/search.svg') no-repeat right center !important;
|
background: var(--icon-search-000) no-repeat right center !important;
|
||||||
background-origin: content-box !important;
|
background-origin: content-box !important;
|
||||||
}
|
}
|
||||||
.select2-results {
|
.select2-results {
|
||||||
|
@ -554,7 +554,7 @@ div.select2-container {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
border: none;
|
border: none;
|
||||||
b {
|
b {
|
||||||
background: url('../img/actions/triangle-s.svg') no-repeat center !important;
|
background: var(--icon-triangle-s-000) no-repeat center !important;
|
||||||
opacity: .5;
|
opacity: .5;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -619,7 +619,7 @@ div.select2-container {
|
||||||
color: inherit !important;
|
color: inherit !important;
|
||||||
&::before {
|
&::before {
|
||||||
content: ' ';
|
content: ' ';
|
||||||
background-image: url('../img/actions/checkmark.svg?v=1');
|
background-image: var(--icon-checkmark-000);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
min-width: 16px;
|
min-width: 16px;
|
||||||
|
@ -809,7 +809,7 @@ div.select2-container {
|
||||||
/* selected checkmark icon */
|
/* selected checkmark icon */
|
||||||
&::before {
|
&::before {
|
||||||
content: ' ';
|
content: ' ';
|
||||||
background-image: url('../img/actions/checkmark.svg?v=1');
|
background-image: var(--icon-checkmark-000);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
min-width: 16px;
|
min-width: 16px;
|
||||||
|
@ -828,7 +828,7 @@ div.select2-container {
|
||||||
*/
|
*/
|
||||||
&[data-select='create'] {
|
&[data-select='create'] {
|
||||||
&::before {
|
&::before {
|
||||||
background-image: url('../img/actions/add.svg?v=1');
|
background-image: var(--icon-add-000);
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue