Add theme support

This commit is contained in:
2022-10-03 12:05:44 +02:00
parent 394d86a13a
commit 257f665ce6
7 changed files with 120 additions and 33 deletions

View File

@ -76,5 +76,21 @@ span.description {
select {
margin-top: 15px;
padding: 5px 0px;
outline: none;
border: 2px solid var(--element-border-input);
border-radius: 5px;
background-color: var(--element-color);
transition: 0.2s;
transition-property: background-color border-color;
color: var(--text-color);
}
select:hover {
background-color: var(--element-color-hover);
}
select:focus {
border-color: var(--element-border-focus);
}
</style>