Skip to content

Commit c308e86

Browse files
authored
fix: added fix for query addon lightmode ui (#8725)
1 parent 41ee417 commit c308e86

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

frontend/src/components/QueryBuilderV2/QueryV2/QueryAddOns/QueryAddOns.styles.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@
127127
box-sizing: border-box;
128128
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
129129
font-family: 'Space Mono', monospace !important;
130+
color: var(--bg-vanilla-100) !important;
130131

131132
ul {
132133
width: 100% !important;
@@ -162,7 +163,6 @@
162163
overflow: hidden;
163164

164165
font-family: 'Space Mono', monospace !important;
165-
color: var(--bg-vanilla-100) !important;
166166

167167
.cm-completionIcon {
168168
display: none !important;
@@ -331,13 +331,14 @@
331331

332332
ul {
333333
li {
334+
color: var(--bg-ink-300) !important;
334335
&:hover {
335336
background: var(--bg-vanilla-300) !important;
336337
}
337338

338339
&[aria-selected='true'] {
339-
color: var(--bg-ink-500) !important;
340340
background: var(--bg-vanilla-300) !important;
341+
font-weight: 600 !important;
341342
}
342343
}
343344
}

frontend/src/components/QueryBuilderV2/QueryV2/QueryAggregation/QueryAggregation.styles.scss

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -271,16 +271,13 @@
271271

272272
ul {
273273
li {
274-
&:hover {
275-
background-color: var(--bg-vanilla-300) !important;
276-
color: var(--bg-ink-500) !important;
277-
font-weight: 600;
278-
}
274+
color: var(--bg-ink-300) !important;
279275

276+
&:hover,
280277
&[aria-selected='true'] {
281278
background: var(--bg-vanilla-300) !important;
282279
color: var(--bg-ink-500) !important;
283-
font-weight: 600;
280+
font-weight: 600 !important;
284281
}
285282
}
286283
}

frontend/src/components/QueryBuilderV2/QueryV2/QuerySearch/QuerySearch.styles.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@
585585
&:hover,
586586
&[aria-selected='true'] {
587587
background-color: var(--bg-vanilla-300) !important;
588-
font-weight: 600;
588+
font-weight: 600 !important;
589589
}
590590
}
591591
}

0 commit comments

Comments
 (0)