fix cumb colors / selected NO_CI

This commit is contained in:
Dennis Eichhorn 2020-06-05 12:13:19 +02:00 committed by GitHub
parent 26a59ed899
commit b9294c0524
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,6 +37,14 @@
} }
&.active:after, &:hover:after { &.active:after, &:hover:after {
color: var(--text-on-background-color-2);
}
&.active:after {
border-left: 14px solid var(--button-colored-background);
}
&:hover:after {
border-left: 14px solid var(--button-colored-background-hover); border-left: 14px solid var(--button-colored-background-hover);
} }
} }
@ -46,6 +54,14 @@
} }
.active, li:hover { .active, li:hover {
color: var(--text-on-background-color-2);
}
.active {
background: var(--button-colored-background);
}
li:hover {
background: var(--button-colored-background-hover); background: var(--button-colored-background-hover);
} }
} }
@ -67,6 +83,14 @@
} }
&.active:not(:last-child):after, &:hover:not(:last-child):after { &.active:not(:last-child):after, &:hover:not(:last-child):after {
color: var(--text-on-background-color-2);
}
&.active:not(:last-child):after {
border-left: 14px solid var(--button-colored-background);
}
&:hover:not(:last-child):after {
border-left: 14px solid var(--button-colored-background-hover); border-left: 14px solid var(--button-colored-background-hover);
} }
} }
@ -76,4 +100,4 @@
border: none; border: none;
} }
} }
} }