mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
721 B
38 lines
721 B
:host {
|
|
display: block;
|
|
|
|
.safe-withdrawal-rate-select {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: initial;
|
|
|
|
background-color: transparent !important;
|
|
border: none !important;
|
|
|
|
color: rgb(var(--dark-primary-text));
|
|
|
|
font: inherit;
|
|
|
|
&:focus {
|
|
box-shadow: none;
|
|
outline: none;
|
|
}
|
|
|
|
option {
|
|
background-color: rgb(var(--light-background));
|
|
color: rgb(var(--dark-primary-text));
|
|
border: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
:host-context(.theme-dark) {
|
|
.safe-withdrawal-rate-select {
|
|
color: rgb(var(--light-primary-text));
|
|
|
|
option {
|
|
background-color: rgb(var(--dark-background));
|
|
color: rgb(var(--light-primary-text));
|
|
}
|
|
}
|
|
}
|
|
|