Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix Tooltips
  • Loading branch information
1Git2Clone committed Mar 23, 2026
commit d0cc5e5a578831e2b399f29df3525a3ab10b5534
10 changes: 10 additions & 0 deletions src/menu/popup.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
:root {
--color-bg: #fefefe;
--color-text: #111111;
--color-tooltip-bg: #fefefe;
--color-tooltip-text: #111111;
}

@media (prefers-color-scheme: dark) {
:root {
--color-bg: #111111;
--color-text: #fefefe;
--color-tooltip-bg: #111111;
--color-tooltip-text: #fefefe;
}

#ghlink:not([data-theme]) {
Expand All @@ -17,11 +21,15 @@
:root[data-theme="light"] {
--color-bg: #fefefe;
--color-text: #111111;
--color-tooltip-bg: #fefefe;
--color-tooltip-text: #111111;
}

:root[data-theme="dark"] {
--color-bg: #111111;
--color-text: #fefefe;
--color-tooltip-bg: #111111;
--color-tooltip-text: #fefefe;
}

:root[data-theme="light"] #ghlink {
Expand Down Expand Up @@ -73,6 +81,8 @@ body {
width: 120px;
left: 0;
visibility: hidden;
background-color: var(--color-tooltip-bg);
color: var(--color-tooltip-text);
text-align: center;
border-radius: 6px;
padding: 5px 5px;
Expand Down