Skip to content

Commit

Permalink
bookmark control disabled state
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieFox committed Aug 10, 2024
1 parent 22f434c commit 4f66b87
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/component/bookmark/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -869,6 +869,7 @@
}

.bookmark-control-button {
background-color: transparent;
padding: 0;
border-radius: 0;
min-height: initial;
Expand All @@ -888,7 +889,12 @@
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));
opacity: 0.25;
}
Expand Down

0 comments on commit 4f66b87

Please sign in to comment.