Improve colors with hovering in light and dark mode

This commit is contained in:
Pablo Zmdl
2025-08-01 13:06:35 +02:00
parent 89a46a401c
commit 5fdbb810dd
2 changed files with 15 additions and 3 deletions

View File

@@ -257,10 +257,22 @@ html.dark-mode {
.listing li ul,
.listing tbody td,
.listing li {
.listing li,
.listing li ul li:first-child {
border-color: @color-dark-list-border;
}
#subscription-table {
.placeholder {
/* color-dark-list-border is a little too dark here, so we use the input border color */
border-color: @color-dark-input-border;
}
.hover {
background-color: @color-dark-list-droptarget-background;
}
}
.listing li.selected,
.listing li.selected > a,
.listing li.selected > div > a, // this is used e.g. by kolab_addressbook

View File

@@ -1123,12 +1123,12 @@ html.touch {
}
.placeholder {
border: dashed thin #ccc;
border: dashed thin @color-input-border;
min-height: 1.5rem;
}
.hover {
background-color: lightyellow;
background-color: @color-list-droptarget-background;
.placeholder {
margin-left: 3em;