Skip to content

Commit 7f58684

Browse files
authored
Fix light mode popover backgrounds (#29) fix #23
2 parents 4ca2019 + e80d4a3 commit 7f58684

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/styles/main.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123

124124
.workspace-branch-static-button {
125125
border: 1px solid var(--border-muted);
126-
background: rgba(12, 16, 26, 0.94);
126+
background: var(--surface-card-strong);
127127
color: var(--text-stronger);
128128
border-radius: 999px;
129129
padding: 2px 10px;
@@ -138,7 +138,7 @@
138138
.workspace-branch-static-button:hover {
139139
color: var(--text-stronger);
140140
border-color: var(--border-strong);
141-
background: rgba(18, 22, 32, 0.98);
141+
background: var(--surface-control-hover);
142142
}
143143

144144
.worktree-info-popover {
@@ -148,7 +148,7 @@
148148
min-width: 280px;
149149
max-width: min(360px, 80vw);
150150
z-index: 12;
151-
background: rgba(12, 16, 26, 0.94);
151+
background: var(--surface-command);
152152
border: 1px solid var(--border-muted);
153153
border-radius: 10px;
154154
padding: 10px;
@@ -281,7 +281,7 @@
281281
min-width: 220px;
282282
max-width: 320px;
283283
z-index: 10;
284-
background: rgba(12, 16, 26, 0.94);
284+
background: var(--surface-command);
285285
border: 1px solid var(--border-muted);
286286
border-radius: 10px;
287287
padding: 6px;

src/styles/sidebar.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@
250250
.workspace-add-menu {
251251
position: fixed;
252252
isolation: isolate;
253-
background: rgba(12, 16, 26, 0.94);
253+
background: var(--surface-command);
254254
border: 1px solid var(--border-muted);
255255
border-radius: 10px;
256256
padding: 6px;

0 commit comments

Comments
 (0)