فهرست منبع

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

charlie 2 سال پیش
والد
کامیت
b57af93ada
2فایلهای تغییر یافته به همراه13 افزوده شده و 2 حذف شده
  1. 0 1
      src/main/frontend/components/command_palette.css
  2. 13 1
      src/main/frontend/components/query/builder.css

+ 0 - 1
src/main/frontend/components/command_palette.css

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

+ 13 - 1
src/main/frontend/components/query/builder.css

@@ -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;
+       }
+    }
 }