@quidgest/ui 0.6.2 → 0.7.0

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.
package/dist/ui.css CHANGED
@@ -228,26 +228,25 @@ summary {
228
228
  *,
229
229
  ::after,
230
230
  ::before {
231
- border: 0 solid #dce3e8;
231
+ border: 0 solid #c4c5ca;
232
232
  outline-offset: 1px;
233
233
  }
234
234
 
235
235
  body {
236
236
  font-size: 0.9rem;
237
237
  }
238
-
239
- * {
238
+ body * {
240
239
  scrollbar-color: #ccc #f1f1f1;
241
240
  scrollbar-width: thin;
242
241
  }
243
- *::-webkit-scrollbar {
242
+ body *::-webkit-scrollbar {
244
243
  width: 7px;
245
244
  }
246
- *::-webkit-scrollbar-thumb {
245
+ body *::-webkit-scrollbar-thumb {
247
246
  background-color: #ccc;
248
247
  border-radius: 0.25rem;
249
248
  }
250
- *::-webkit-scrollbar-track {
249
+ body *::-webkit-scrollbar-track {
251
250
  background-color: #f1f1f1;
252
251
  border-radius: 0.25rem;
253
252
  }
@@ -425,29 +424,34 @@ body {
425
424
  z-index: 3;
426
425
  }
427
426
 
427
+ .q-combobox__clear {
428
+ opacity: 0.5;
429
+ }
430
+ .q-combobox__clear:hover {
431
+ opacity: 1;
432
+ cursor: pointer;
433
+ }
434
+
428
435
  .q-field {
429
436
  display: flex;
430
437
  flex-direction: column;
431
438
  border-radius: 0.25rem;
432
- }
433
- .q-field:focus-within {
434
- outline: 2px solid rgb(var(--q-theme-primary-rgb)/0.25);
439
+ width: -moz-fit-content;
440
+ width: fit-content;
435
441
  }
436
442
  .q-field__label {
443
+ display: flex;
444
+ gap: 0.25rem;
445
+ align-items: center;
437
446
  color: rgb(var(--q-theme-on-background-rgb)/0.8);
438
447
  line-height: 1.5;
439
448
  }
440
- .q-field__label[data-val-required=true]::after {
441
- content: " *";
442
- font-weight: 700;
443
- color: var(--q-theme-danger);
444
- }
445
449
  .q-field__control {
446
450
  display: flex;
447
451
  align-items: center;
448
452
  height: 31.89px;
449
453
  width: 100%;
450
- border-radius: 0.25rem;
454
+ border-radius: inherit;
451
455
  border-width: 1px;
452
456
  background-color: transparent;
453
457
  padding: 0.26rem 0.25rem;
@@ -455,6 +459,9 @@ body {
455
459
  line-height: 1.5rem;
456
460
  transition: color var(--transition-duration) var(--transition-timing-function);
457
461
  }
462
+ .q-field__control:focus-within {
463
+ outline: 2px solid rgb(var(--q-theme-primary-rgb)/0.25);
464
+ }
458
465
  .q-field__prepend, .q-field__append {
459
466
  display: flex;
460
467
  align-items: center;
@@ -462,32 +469,37 @@ body {
462
469
  .q-field__append {
463
470
  margin-left: auto;
464
471
  }
465
- .q-field--readonly {
472
+ .q-field--required > .q-field__label label::after {
473
+ content: " *";
474
+ font-weight: 700;
475
+ color: var(--q-theme-danger);
476
+ }
477
+ .q-field--readonly .q-field__control {
466
478
  background-color: #eaebec;
467
479
  }
468
- .q-field--disabled {
480
+ .q-field--disabled .q-field__control {
469
481
  cursor: not-allowed;
470
482
  opacity: 0.5;
471
483
  }
472
- .q-field--mini {
484
+ .q-field--mini .q-field__control {
473
485
  width: 4.35rem;
474
486
  }
475
- .q-field--small {
487
+ .q-field--small .q-field__control {
476
488
  width: 6.525rem;
477
489
  }
478
- .q-field--medium {
490
+ .q-field--medium .q-field__control {
479
491
  width: 10.875rem;
480
492
  }
481
- .q-field--large {
493
+ .q-field--large .q-field__control {
482
494
  width: 15.225rem;
483
495
  }
484
- .q-field--x-large {
496
+ .q-field--x-large .q-field__control {
485
497
  width: 19.575rem;
486
498
  }
487
- .q-field--xx-large {
499
+ .q-field--xx-large .q-field__control {
488
500
  width: 36.975rem;
489
501
  }
490
- .q-field--block {
502
+ .q-field--block .q-field__control {
491
503
  width: 100%;
492
504
  }
493
505
 
@@ -502,6 +514,58 @@ body {
502
514
  height: 1em;
503
515
  }
504
516
 
517
+ .q-input-group {
518
+ display: flex;
519
+ align-items: flex-end;
520
+ }
521
+ .q-input-group__prepend > :first-child {
522
+ border-top-left-radius: 0.25rem;
523
+ border-bottom-left-radius: 0.25rem;
524
+ }
525
+ .q-input-group__append > :last-child {
526
+ border-top-right-radius: 0.25rem;
527
+ border-bottom-right-radius: 0.25rem;
528
+ }
529
+ .q-input-group__prepend, .q-input-group__append {
530
+ display: flex;
531
+ align-items: flex-end;
532
+ height: 31.89px;
533
+ }
534
+ .q-input-group__prepend .q-btn, .q-input-group__append .q-btn {
535
+ justify-content: center;
536
+ }
537
+ .q-input-group__prepend > *, .q-input-group__append > * {
538
+ border-radius: 0;
539
+ min-width: 40px;
540
+ height: 31.89px;
541
+ }
542
+ .q-input-group__prepend > span, .q-input-group__append > span {
543
+ display: flex;
544
+ align-items: center;
545
+ justify-content: center;
546
+ text-align: center;
547
+ padding: 0.25rem 0.5rem;
548
+ font-size: 0.9rem;
549
+ border-width: 1px;
550
+ background-color: rgb(var(--q-theme-on-background-rgb)/0.1);
551
+ color: var(--q-theme-primary);
552
+ white-space: nowrap;
553
+ }
554
+ .q-input-group > * {
555
+ border-radius: 0;
556
+ }
557
+ .q-input-group > :first-child {
558
+ border-top-left-radius: 0.25rem;
559
+ border-bottom-left-radius: 0.25rem;
560
+ }
561
+ .q-input-group > :last-child {
562
+ border-top-right-radius: 0.25rem;
563
+ border-bottom-right-radius: 0.25rem;
564
+ }
565
+ .q-input-group > * + * {
566
+ margin-left: -1px;
567
+ }
568
+
505
569
  .q-line-loader {
506
570
  width: 100%;
507
571
  height: 2px;
@@ -545,9 +609,6 @@ body {
545
609
  width: 100%;
546
610
  border-radius: 0.25rem;
547
611
  }
548
- .q-list:focus-visible {
549
- outline: 2px solid rgb(var(--q-theme-primary-rgb)/0.25);
550
- }
551
612
 
552
613
  .q-list-item-group {
553
614
  display: flex;
@@ -896,7 +957,7 @@ body {
896
957
  .q-text-field__counter {
897
958
  display: flex;
898
959
  margin-top: 0.1rem;
899
- justify-content: end;
960
+ justify-content: flex-end;
900
961
  color: rgb(var(--q-theme-on-background-rgb)/0.5);
901
962
  }
902
963