improve bookmark control colour contrast

This commit is contained in:
zombieFox 2021-08-14 14:45:00 +01:00
parent a100f68a4b
commit b1b70ab5b8
1 changed files with 7 additions and 0 deletions

View File

@ -804,9 +804,16 @@
.bookmark-control-button:hover,
.bookmark-control-button:focus {
background-color: hsla(var(--theme-accent-rgb-text), 0.1);
color: hsl(var(--theme-accent-rgb-text));
}
.bookmark-control-button:active,
.bookmark-control-button.active {
color: hsl(var(--theme-accent-rgb-text));
}
.bookmark-control-button:disabled {
color: hsl(var(--theme-accent-rgb-text));
opacity: 0.25;
}