bookmark control disabled state

This commit is contained in:
Kuldeep Matharu 2024-08-10 12:21:56 +01:00
parent 22f434c0d3
commit 4f66b87136

View File

@ -869,6 +869,7 @@
} }
.bookmark-control-button { .bookmark-control-button {
background-color: transparent;
padding: 0; padding: 0;
border-radius: 0; border-radius: 0;
min-height: initial; min-height: initial;
@ -888,7 +889,12 @@
color: hsl(var(--theme-accent-text)); color: hsl(var(--theme-accent-text));
} }
.bookmark-control-button:disabled { .bookmark-control-button:disabled,
.bookmark-control-button:disabled:hover,
.bookmark-control-button:disabled:focus,
.bookmark-control-button:disabled:active,
.bookmark-control-button.active:disabled:active {
background-color: transparent;
color: hsl(var(--theme-accent-text)); color: hsl(var(--theme-accent-text));
opacity: 0.25; opacity: 0.25;
} }