Skip to content
This repository was archived by the owner on Oct 26, 2025. It is now read-only.

Commit bd48048

Browse files
committed
fix hardly visible buttons in light mode
1 parent af5e722 commit bd48048

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

browser/components/notes/content/notes-bms.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@
1212
}
1313

1414
button {
15-
background-color: var(--in-content-box-info-background) !important;
15+
background-color: var(--in-content-button-background) !important;
1616
transition: 0.2s ease-out;
1717
}
1818

1919
button:hover,
2020
button#memo-add:hover {
21-
background-color: #ffffff40 !important;
21+
background-color: var(--in-content-button-background-hover) !important;
2222
}
2323

2424
button:active,
2525
button#memo-add:active {
26-
background-color: #ffffff50 !important;
26+
background-color: var(--in-content-button-background-active) !important;
2727
}
2828

2929
#memo-add.selected {
@@ -74,15 +74,15 @@ html {
7474
}
7575

7676
.memo-list-item.selected {
77-
background-color: #ffffff20;
77+
background-color: var(--in-content-button-background);
7878
}
7979

8080
.memo-list-item:hover {
81-
background-color: #ffffff30;
81+
background-color: var(--in-content-button-background-hover);
8282
}
8383

8484
.memo-list-item:active {
85-
background-color: #ffffff40;
85+
background-color: var(--in-content-button-background-active);
8686
}
8787

8888
.memo-list-item::after {

0 commit comments

Comments
 (0)