sqlite-hub 0.9.0 → 0.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  .top-nav-shell {
2
2
  align-items: center;
3
- background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
3
+ background: linear-gradient(to bottom, rgb(255 255 255 / 0.05), transparent);
4
4
  display: flex;
5
5
  height: 100%;
6
6
  justify-content: space-between;
@@ -25,7 +25,7 @@
25
25
 
26
26
  .top-nav-link {
27
27
  align-items: center;
28
- color: rgba(229, 226, 225, 0.6);
28
+ color: var(--text-muted);
29
29
  display: flex;
30
30
  font-family: var(--font-family-headline);
31
31
  height: 100%;
@@ -42,9 +42,8 @@
42
42
  }
43
43
 
44
44
  .top-nav-link.is-active {
45
- border-bottom: 2px solid var(--color-primary-container);
45
+ box-shadow: inset 0 -2px 0 var(--color-primary-container);
46
46
  color: var(--color-primary-container);
47
- padding-bottom: 1px;
48
47
  }
49
48
 
50
49
  .top-nav-actions {
@@ -95,12 +94,12 @@
95
94
  gap: 2px;
96
95
  margin: 4px 0 4px var(--spacing-6);
97
96
  padding-left: var(--spacing-6);
98
- border-left: 1px solid rgba(75, 71, 50, 0.15);
97
+ border-left: 1px solid rgb(var(--rgb-outline) / 0.15);
99
98
  }
100
99
 
101
100
  .sidebar-sublink {
102
101
  align-items: center;
103
- color: rgba(229, 226, 225, 0.35);
102
+ color: var(--text-faint);
104
103
  display: flex;
105
104
  font-family: var(--font-family-body);
106
105
  font-size: 0.6875rem;
@@ -121,14 +120,14 @@
121
120
  }
122
121
 
123
122
  .sidebar-sublink.is-active {
124
- border-left: 2px solid var(--color-primary-container);
125
- color: var(--color-primary-container);
126
123
  background: var(--color-surface-high);
124
+ box-shadow: inset 2px 0 0 var(--color-primary-container);
125
+ color: var(--color-primary-container);
127
126
  }
128
127
 
129
128
  .sidebar-link {
130
129
  align-items: center;
131
- color: rgba(229, 226, 225, 0.4);
130
+ color: rgb(var(--rgb-on-surface) / 0.4);
132
131
  display: flex;
133
132
  font-family: var(--font-family-headline);
134
133
  font-size: 0.75rem;
@@ -150,7 +149,7 @@
150
149
 
151
150
  .sidebar-link.is-active {
152
151
  background: var(--color-surface-high);
153
- border-left: 2px solid var(--color-primary-container);
152
+ box-shadow: inset 2px 0 0 var(--color-primary-container);
154
153
  color: var(--color-primary-container);
155
154
  }
156
155
 
@@ -182,7 +181,7 @@
182
181
  .status-bar-shell {
183
182
  align-items: center;
184
183
  background: var(--color-surface-lowest);
185
- border-top: 1px solid rgba(75, 71, 50, 0.15);
184
+ border-top: 1px solid rgb(var(--rgb-outline) / 0.15);
186
185
  display: flex;
187
186
  height: 100%;
188
187
  justify-content: space-between;
@@ -204,7 +203,7 @@
204
203
  }
205
204
 
206
205
  .status-bar-link {
207
- color: rgba(229, 226, 225, 0.3);
206
+ color: rgb(var(--rgb-on-surface) / 0.48);
208
207
  cursor: default;
209
208
  font-family: var(--font-family-mono);
210
209
  font-size: var(--font-size-status);
@@ -220,24 +219,50 @@
220
219
  .status-bar-dot {
221
220
  background: var(--color-success);
222
221
  border-radius: 9999px;
223
- box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
222
+ box-shadow: 0 0 8px rgb(var(--rgb-success) / 0.6);
224
223
  height: 6px;
225
224
  width: 6px;
226
225
  }
227
226
 
228
227
  .shell-section {
229
228
  background: var(--color-surface-container);
230
- border: 1px solid rgba(75, 71, 50, 0.12);
229
+ border: 1px solid var(--border-subtle);
231
230
  }
232
231
 
233
- .toolbar-button {
232
+ .standard-button,
233
+ .signature-button,
234
+ .delete-button,
235
+ .toolbar-button,
236
+ .query-history-icon-button,
237
+ .top-nav-icon {
234
238
  align-items: center;
235
239
  box-sizing: border-box;
236
240
  display: inline-flex;
237
- gap: var(--spacing-2);
238
- height: var(--control-height);
239
241
  justify-content: center;
240
242
  line-height: 1;
243
+ }
244
+
245
+ .standard-button:focus-visible,
246
+ .signature-button:focus-visible,
247
+ .delete-button:focus-visible,
248
+ .toolbar-button:focus-visible,
249
+ .query-history-icon-button:focus-visible,
250
+ .top-nav-icon:focus-visible,
251
+ .query-history-item-hit:focus-visible,
252
+ .query-history-tab:focus-visible,
253
+ .bottom-tab:focus-visible,
254
+ .sidebar-link:focus-visible,
255
+ .sidebar-sublink:focus-visible,
256
+ .charts-height-toggle__button:focus-visible {
257
+ box-shadow: var(--focus-ring);
258
+ outline: none;
259
+ position: relative;
260
+ z-index: 1;
261
+ }
262
+
263
+ .toolbar-button {
264
+ gap: var(--spacing-2);
265
+ height: var(--control-height);
241
266
  min-height: var(--control-height);
242
267
  padding: 0 var(--control-padding-inline);
243
268
  text-transform: uppercase;
@@ -256,7 +281,7 @@
256
281
  }
257
282
 
258
283
  .metric-card--accent {
259
- border-left: 2px solid var(--color-primary-container);
284
+ box-shadow: inset 2px 0 0 var(--color-primary-container);
260
285
  }
261
286
 
262
287
  .status-badge {
@@ -270,31 +295,36 @@
270
295
  }
271
296
 
272
297
  .status-badge--primary {
273
- background: rgba(252, 227, 0, 0.1);
274
- border-color: rgba(252, 227, 0, 0.2);
298
+ background: var(--primary-alpha-10);
299
+ border-color: var(--primary-alpha-20);
275
300
  color: var(--color-primary-container);
276
301
  }
277
302
 
278
303
  .status-badge--muted {
279
304
  background: var(--color-surface-highest);
280
- border-color: rgba(75, 71, 50, 0.2);
305
+ border-color: rgb(var(--rgb-outline) / 0.2);
281
306
  color: var(--color-on-surface-variant);
282
307
  }
283
308
 
284
309
  .status-badge--alert {
285
- background: rgba(147, 0, 10, 0.2);
286
- border-color: rgba(255, 180, 171, 0.2);
310
+ background: rgb(var(--rgb-error-container) / 0.2);
311
+ border-color: rgb(var(--rgb-error) / 0.2);
287
312
  color: var(--color-error);
288
313
  }
289
314
 
315
+ .status-badge--warning {
316
+ background: rgba(245, 158, 11, 0.12);
317
+ border-color: rgba(245, 158, 11, 0.28);
318
+ color: #f59e0b;
319
+ }
320
+
290
321
  .status-badge--success {
291
- background: rgba(0, 220, 225, 0.1);
322
+ background: rgb(var(--rgb-tertiary) / 0.1);
292
323
  color: var(--color-tertiary-dim);
293
324
  }
294
325
 
295
326
  .connection-card {
296
327
  background: var(--color-surface-container);
297
- border-left: 2px solid transparent;
298
328
  cursor: pointer;
299
329
  display: flex;
300
330
  flex-direction: column;
@@ -302,18 +332,18 @@
302
332
  text-align: left;
303
333
  transition:
304
334
  background-color var(--transition-fast),
305
- border-color var(--transition-fast),
306
335
  box-shadow var(--transition-standard);
307
336
  }
308
337
 
309
338
  .connection-card:hover {
310
339
  background: var(--color-surface-high);
311
- border-color: var(--color-outline-variant);
340
+ box-shadow: inset 2px 0 0 var(--color-outline-variant);
312
341
  }
313
342
 
314
343
  .connection-card.is-active {
315
- border-color: var(--color-primary-container);
316
- box-shadow: 0 0 20px rgba(252, 227, 0, 0.05);
344
+ box-shadow:
345
+ inset 2px 0 0 var(--color-primary-container),
346
+ 0 0 20px var(--primary-alpha-05);
317
347
  }
318
348
 
319
349
  .connection-card-footer {
@@ -324,7 +354,7 @@
324
354
 
325
355
  .bottom-tab {
326
356
  border-bottom: 1px solid transparent;
327
- color: rgba(205, 199, 171, 0.4);
357
+ color: var(--text-variant-subtle);
328
358
  font-size: var(--font-size-status);
329
359
  font-weight: 700;
330
360
  height: 100%;
@@ -333,7 +363,8 @@
333
363
  }
334
364
 
335
365
  .bottom-tab.is-active {
336
- border-color: var(--color-primary-container);
366
+ border-color: transparent;
367
+ box-shadow: inset 0 -1px 0 var(--color-primary-container);
337
368
  color: var(--color-primary-container);
338
369
  }
339
370
 
@@ -345,7 +376,7 @@
345
376
  }
346
377
 
347
378
  .page-eyebrow-line {
348
- background: rgba(252, 227, 0, 0.3);
379
+ background: var(--primary-alpha-30);
349
380
  height: 1px;
350
381
  width: 48px;
351
382
  }
@@ -357,7 +388,7 @@
357
388
 
358
389
  .view-card {
359
390
  background: var(--color-surface-low);
360
- border: 1px solid rgba(75, 71, 50, 0.1);
391
+ border: 1px solid rgb(var(--rgb-outline) / 0.1);
361
392
  }
362
393
 
363
394
  .view-card-header {
@@ -370,26 +401,26 @@
370
401
 
371
402
  .query-history-panel {
372
403
  display: flex;
373
- flex: 0 0 360px;
404
+ flex: 0 0 clamp(20rem, 26vw, 22.5rem);
374
405
  flex-direction: column;
375
406
  min-height: 0;
376
- width: 360px;
407
+ width: clamp(20rem, 26vw, 22.5rem);
377
408
  }
378
409
 
379
410
  .table-designer-sidebar {
380
411
  background: var(--color-surface-low);
381
- border-right: 1px solid rgba(75, 71, 50, 0.18);
412
+ border-right: 1px solid var(--border-medium);
382
413
  display: flex;
383
- flex: 0 0 18rem;
414
+ flex: 0 0 clamp(16rem, 20vw, 18.2rem);
384
415
  flex-direction: column;
385
416
  max-width: 18.2rem;
386
417
  min-height: 0;
387
- min-width: 18.2rem;
388
- width: 18.2rem;
418
+ min-width: min(18.2rem, 100%);
419
+ width: clamp(16rem, 20vw, 18.2rem);
389
420
  }
390
421
 
391
422
  .table-designer-sidebar__header {
392
- border-bottom: 1px solid rgba(75, 71, 50, 0.18);
423
+ border-bottom: 1px solid var(--border-medium);
393
424
  display: flex;
394
425
  flex-wrap: wrap;
395
426
  gap: var(--spacing-4);
@@ -428,7 +459,7 @@
428
459
  .table-designer-sidebar__meta,
429
460
  .table-designer-main__subtitle,
430
461
  .table-designer-main__section-text {
431
- color: rgba(229, 226, 225, 0.52);
462
+ color: rgb(var(--rgb-on-surface) / 0.52);
432
463
  font-family: var(--font-family-mono);
433
464
  font-size: var(--font-size-status);
434
465
  letter-spacing: 0.14em;
@@ -443,30 +474,25 @@
443
474
  .table-designer-sidebar__search {
444
475
  align-items: center;
445
476
  background: var(--color-surface-container-lowest);
446
- border: 1px solid rgba(75, 71, 50, 0.18);
477
+ border: 1px solid var(--border-medium);
447
478
  box-sizing: border-box;
448
479
  min-height: var(--control-height);
449
480
  margin: var(--spacing-4) var(--spacing-3) 0;
450
- border-bottom: 1px solid rgba(75, 71, 50, 0.18);
451
481
  display: flex;
452
482
  gap: var(--spacing-3);
453
483
  padding: 0 var(--control-padding-inline);
454
484
  }
455
485
 
456
- .table-designer-sidebar__search-input,
457
- .table-designer-field,
458
- .table-designer-main__name {
486
+ .table-designer-field {
459
487
  background: var(--color-surface-container-lowest);
460
- border: 1px solid rgba(75, 71, 50, 0.18);
488
+ border: 1px solid var(--border-medium);
461
489
  color: var(--color-on-surface);
462
490
  min-width: 0;
463
491
  outline: none;
464
492
  }
465
493
 
466
- input.table-designer-sidebar__search-input,
467
494
  input.table-designer-field,
468
- select.table-designer-field,
469
- input.table-designer-main__name {
495
+ select.table-designer-field {
470
496
  -webkit-appearance: none;
471
497
  appearance: none;
472
498
  border-radius: 0;
@@ -475,26 +501,58 @@ input.table-designer-main__name {
475
501
 
476
502
  input.table-designer-field,
477
503
  select.table-designer-field {
478
- background: var(--color-surface-container-lowest) !important;
479
- color: var(--color-on-surface) !important;
504
+ background: var(--color-surface-container-lowest);
505
+ color: var(--color-on-surface);
506
+ }
507
+
508
+ .table-designer-field:focus-visible,
509
+ .table-designer-main__name:focus-visible {
510
+ border-color: var(--primary-alpha-35);
511
+ box-shadow: var(--focus-ring-inset);
480
512
  }
481
513
 
482
- .table-designer-sidebar__search-input:focus,
483
- .table-designer-field:focus,
484
- .table-designer-main__name:focus {
485
- border-color: rgba(252, 227, 0, 0.35);
514
+ .table-designer-sidebar__search:focus-within {
515
+ border-color: var(--primary-alpha-35);
516
+ box-shadow: var(--focus-ring-inset);
517
+ }
518
+
519
+ .table-designer-sidebar__search .material-symbols-outlined {
520
+ flex: 0 0 auto;
486
521
  }
487
522
 
488
523
  .table-designer-sidebar__search-input {
489
- background: transparent !important;
524
+ -webkit-appearance: none;
525
+ appearance: none;
526
+ background: transparent;
527
+ background-color: transparent;
528
+ background-image: none;
490
529
  border: none;
530
+ border-radius: 0;
531
+ box-shadow: none;
491
532
  color: var(--color-on-surface);
492
533
  flex: 1;
493
534
  font-size: 0.875rem;
494
535
  height: calc(var(--control-height) - 2px);
536
+ min-width: 0;
537
+ outline: none;
495
538
  padding: 0;
496
539
  }
497
540
 
541
+ input.table-designer-sidebar__search-input[type='search'] {
542
+ background: transparent;
543
+ background-color: transparent;
544
+ background-image: none;
545
+ border: 0;
546
+ box-shadow: none;
547
+ color: var(--color-on-surface);
548
+ height: calc(var(--control-height) - 2px);
549
+ padding: 0;
550
+ }
551
+
552
+ .table-designer-sidebar__search-input::placeholder {
553
+ color: rgb(var(--rgb-on-surface-variant) / 0.65);
554
+ }
555
+
498
556
  .table-designer-sidebar__list {
499
557
  flex: 1;
500
558
  min-height: 0;
@@ -511,11 +569,11 @@ select.table-designer-field {
511
569
  }
512
570
 
513
571
  .table-designer-sidebar__item:hover {
514
- border-color: rgba(75, 71, 50, 0.1);
572
+ border-color: rgb(var(--rgb-outline) / 0.1);
515
573
  }
516
574
 
517
575
  .table-designer-sidebar__item.is-active {
518
- border-color: rgba(252, 227, 0, 0.3);
576
+ border-color: var(--primary-alpha-30);
519
577
  }
520
578
 
521
579
  .table-designer-sidebar__item-name {
@@ -532,7 +590,7 @@ select.table-designer-field {
532
590
  }
533
591
 
534
592
  .table-designer-sidebar__item-meta {
535
- color: rgba(229, 226, 225, 0.45);
593
+ color: var(--text-subtle);
536
594
  font-family: var(--font-family-mono);
537
595
  font-size: var(--font-size-status);
538
596
  letter-spacing: 0.12em;
@@ -544,7 +602,7 @@ select.table-designer-field {
544
602
  .table-designer-preview__empty,
545
603
  .table-designer-main__empty {
546
604
  align-items: center;
547
- color: rgba(205, 199, 171, 0.55);
605
+ color: var(--text-variant-muted);
548
606
  display: flex;
549
607
  flex-direction: column;
550
608
  justify-content: center;
@@ -581,7 +639,7 @@ select.table-designer-field {
581
639
  .table-designer-main__header,
582
640
  .table-designer-preview__header {
583
641
  align-items: center;
584
- border-bottom: 1px solid rgba(75, 71, 50, 0.16);
642
+ border-bottom: 1px solid rgb(var(--rgb-outline) / 0.16);
585
643
  display: flex;
586
644
  flex-wrap: wrap;
587
645
  gap: var(--spacing-4);
@@ -606,14 +664,33 @@ select.table-designer-field {
606
664
  }
607
665
 
608
666
  .table-designer-main__name {
609
- background: transparent !important;
667
+ -webkit-appearance: none;
668
+ appearance: none;
669
+ background: transparent;
670
+ background-color: transparent;
671
+ background-image: none;
610
672
  border: none;
673
+ border-radius: 0;
674
+ box-shadow: none;
611
675
  color: var(--color-primary-container);
612
676
  font-family: var(--font-family-headline);
613
- font-size: 2rem;
677
+ font-size: 1rem;
614
678
  font-weight: 900;
615
- letter-spacing: -0.06em;
679
+ letter-spacing: -0.04em;
680
+ height: auto;
616
681
  min-width: min(28rem, 100%);
682
+ outline: none;
683
+ padding: 0;
684
+ }
685
+
686
+ input.table-designer-main__name[type='text'] {
687
+ background: transparent;
688
+ background-color: transparent;
689
+ background-image: none;
690
+ border: 0;
691
+ box-shadow: none;
692
+ color: var(--color-primary-container);
693
+ height: auto;
617
694
  padding: 0;
618
695
  }
619
696
 
@@ -633,17 +710,17 @@ select.table-designer-field {
633
710
 
634
711
  .table-designer-fill-toggle {
635
712
  background: var(--color-surface-container);
636
- border: 1px solid rgba(75, 71, 50, 0.18);
713
+ border: 1px solid var(--border-medium);
637
714
  color: var(--color-on-surface);
638
715
  gap: 0.75rem;
639
716
  }
640
717
 
641
718
  .table-designer-fill-toggle.is-disabled {
642
- color: rgba(229, 226, 225, 0.45);
719
+ color: var(--text-subtle);
643
720
  }
644
721
 
645
722
  .table-designer-fill-toggle__meta {
646
- color: rgba(205, 199, 171, 0.52);
723
+ color: rgb(var(--rgb-on-surface-variant) / 0.52);
647
724
  font-family: var(--font-family-mono);
648
725
  font-size: var(--font-size-status);
649
726
  letter-spacing: 0.1em;
@@ -652,8 +729,8 @@ select.table-designer-field {
652
729
 
653
730
  .table-designer-main__error,
654
731
  .table-designer-route-error {
655
- background: rgba(147, 0, 10, 0.16);
656
- border: 1px solid rgba(255, 180, 171, 0.16);
732
+ background: rgb(var(--rgb-error-container) / 0.16);
733
+ border: 1px solid rgb(var(--rgb-error) / 0.16);
657
734
  color: var(--color-on-surface);
658
735
  margin: var(--spacing-4);
659
736
  padding: var(--spacing-4);
@@ -678,17 +755,17 @@ select.table-designer-field {
678
755
  }
679
756
 
680
757
  .table-designer-banner {
681
- border: 1px solid rgba(75, 71, 50, 0.16);
758
+ border: 1px solid rgb(var(--rgb-outline) / 0.16);
682
759
  margin: 0 var(--spacing-4) var(--spacing-4);
683
760
  padding: var(--spacing-4);
684
761
  }
685
762
 
686
763
  .table-designer-banner.is-warning {
687
- background: rgba(252, 227, 0, 0.06);
764
+ background: var(--primary-alpha-06);
688
765
  }
689
766
 
690
767
  .table-designer-banner.is-validation {
691
- background: rgba(147, 0, 10, 0.12);
768
+ background: rgb(var(--rgb-error-container) / 0.12);
692
769
  }
693
770
 
694
771
  .table-designer-banner__header {
@@ -719,7 +796,7 @@ select.table-designer-field {
719
796
  }
720
797
 
721
798
  .table-designer-banner__item-text {
722
- color: rgba(229, 226, 225, 0.68);
799
+ color: rgb(var(--rgb-on-surface) / 0.68);
723
800
  font-size: 0.8125rem;
724
801
  margin-top: var(--spacing-1);
725
802
  }
@@ -743,7 +820,7 @@ select.table-designer-field {
743
820
 
744
821
  .table-designer-grid {
745
822
  background: var(--color-surface-container-lowest);
746
- border: 1px solid rgba(75, 71, 50, 0.14);
823
+ border: 1px solid rgb(var(--rgb-outline) / 0.14);
747
824
  flex: 1;
748
825
  min-height: 0;
749
826
  overflow: auto;
@@ -768,8 +845,8 @@ select.table-designer-field {
768
845
  }
769
846
 
770
847
  .table-designer-grid__header {
771
- border-bottom: 1px solid rgba(75, 71, 50, 0.16);
772
- color: rgba(205, 199, 171, 0.52);
848
+ border-bottom: 1px solid rgb(var(--rgb-outline) / 0.16);
849
+ color: rgb(var(--rgb-on-surface-variant) / 0.52);
773
850
  font-family: var(--font-family-mono);
774
851
  font-size: var(--font-size-status);
775
852
  letter-spacing: 0.12em;
@@ -781,7 +858,7 @@ select.table-designer-field {
781
858
  }
782
859
 
783
860
  .table-designer-grid__row {
784
- border-bottom: 1px solid rgba(75, 71, 50, 0.1);
861
+ border-bottom: 1px solid rgb(var(--rgb-outline) / 0.1);
785
862
  align-items: center;
786
863
  }
787
864
 
@@ -793,17 +870,18 @@ select.table-designer-field {
793
870
 
794
871
  .table-designer-check {
795
872
  background: var(--color-surface-container);
796
- border: 1px solid rgba(75, 71, 50, 0.18);
797
- color: rgba(229, 226, 225, 0.75);
873
+ border: 1px solid var(--border-medium);
874
+ color: rgb(var(--rgb-on-surface) / 0.75);
798
875
  font-size: 0.75rem;
799
876
  gap: 0.5rem;
800
877
  }
801
878
 
802
879
  .table-designer-checkbox-override {
880
+ /* Tailwind Forms resets checkbox controls late; keep this grid override visually pinned to the 4173 reference. */
803
881
  background: var(--color-surface-container-lowest) !important;
804
882
  background-color: var(--color-surface-container-lowest) !important;
805
883
  background-image: none !important;
806
- border: 1px solid rgba(75, 71, 50, 0.18) !important;
884
+ border: 1px solid var(--border-medium) !important;
807
885
  }
808
886
 
809
887
  .table-designer-check input[type='checkbox']:not(:checked),
@@ -836,7 +914,7 @@ select.table-designer-field {
836
914
 
837
915
  @media (max-width: 1023px) {
838
916
  .table-designer-sidebar {
839
- border-bottom: 1px solid rgba(75, 71, 50, 0.18);
917
+ border-bottom: 1px solid var(--border-medium);
840
918
  border-right: none;
841
919
  flex-basis: auto;
842
920
  }
@@ -845,8 +923,7 @@ select.table-designer-field {
845
923
  .query-history-item {
846
924
  align-items: stretch;
847
925
  background: var(--color-surface-low);
848
- border: 1px solid rgba(75, 71, 50, 0.16);
849
- border-left: 2px solid transparent;
926
+ border: 1px solid rgb(var(--rgb-outline) / 0.16);
850
927
  display: flex;
851
928
  flex-direction: column;
852
929
  min-width: 0;
@@ -858,16 +935,17 @@ select.table-designer-field {
858
935
 
859
936
  .query-history-item:hover {
860
937
  background: var(--color-surface-high);
861
- border-color: rgba(252, 227, 0, 0.18);
938
+ border-color: var(--primary-alpha-18);
862
939
  }
863
940
 
864
941
  .query-history-item.is-active {
865
- border-left-color: var(--color-primary-container);
866
- box-shadow: 0 0 24px rgba(252, 227, 0, 0.06);
942
+ box-shadow:
943
+ inset 2px 0 0 var(--color-primary-container),
944
+ 0 0 24px var(--primary-alpha-06);
867
945
  }
868
946
 
869
947
  .query-history-item.is-error {
870
- border-left-color: var(--color-error);
948
+ box-shadow: inset 2px 0 0 var(--color-error);
871
949
  }
872
950
 
873
951
  .query-history-item-hit {
@@ -882,18 +960,15 @@ select.table-designer-field {
882
960
  }
883
961
 
884
962
  .query-history-item-hit.is-active {
885
- background: rgba(252, 227, 0, 0.08);
963
+ background: var(--primary-alpha-08);
886
964
  }
887
965
 
888
966
  .query-history-icon-button {
889
- align-items: center;
890
967
  background: transparent;
891
968
  border: 0;
892
969
  box-sizing: border-box;
893
- color: rgba(229, 226, 225, 0.6);
894
- display: inline-flex;
970
+ color: var(--text-muted);
895
971
  height: var(--control-height);
896
- justify-content: center;
897
972
  transition:
898
973
  color var(--transition-fast),
899
974
  background-color var(--transition-fast);
@@ -911,7 +986,7 @@ select.table-designer-field {
911
986
  background: transparent;
912
987
  border: 0;
913
988
  border-bottom: 1px solid transparent;
914
- color: rgba(205, 199, 171, 0.45);
989
+ color: var(--text-variant-subtle);
915
990
  display: inline-flex;
916
991
  font-family: var(--font-family-mono);
917
992
  font-size: var(--font-size-status);
@@ -926,7 +1001,8 @@ select.table-designer-field {
926
1001
  }
927
1002
 
928
1003
  .query-history-tab.is-active {
929
- border-color: var(--color-primary-container);
1004
+ border-color: transparent;
1005
+ box-shadow: inset 0 -1px 0 var(--color-primary-container);
930
1006
  color: var(--color-primary-container);
931
1007
  }
932
1008
 
@@ -945,7 +1021,7 @@ select.table-designer-field {
945
1021
  @media (max-width: 1279px) {
946
1022
  .query-history-panel {
947
1023
  border-left: 0;
948
- border-top: 1px solid rgba(75, 71, 50, 0.16);
1024
+ border-top: 1px solid rgb(var(--rgb-outline) / 0.16);
949
1025
  flex: 0 0 auto;
950
1026
  width: 100%;
951
1027
  }
@@ -57,7 +57,7 @@
57
57
 
58
58
  .app-right-panel {
59
59
  background: var(--color-surface-low);
60
- border-left: 1px solid rgba(75, 71, 50, 0.2);
60
+ border-left: 1px solid rgb(var(--rgb-outline) / 0.2);
61
61
  box-shadow: var(--shadow-panel);
62
62
  display: flex;
63
63
  flex-direction: column;