fix(ui): theme colors for the query builder popover

pull/10897/head
charlie 2024-01-08 14:39:10 +08:00
parent ab94100bb9
commit b57af93ada
2 changed files with 13 additions and 2 deletions

View File

@ -16,7 +16,6 @@
.menu-link {
transition: none;
border: none;
border-radius: unset !important;
background: none;
.type-icon {

View File

@ -21,7 +21,13 @@
}
.cp__select .input-wrap input {
border: none;
@apply border-0 outline-0 text-popover-foreground/90;
box-shadow: none;
}
.item-results-wrap {
@apply py-1;
}
.cp__select-input {
@ -52,4 +58,10 @@
.query-clause-btn {
border-color: var(--ls-border-color);
}
.query-builder-picker {
.form-input {
@apply focus:border-0;
}
}
}