@fastkit/vui 1.4.0 → 1.4.1

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/vui.css CHANGED
@@ -18,6 +18,60 @@
18
18
  flex-direction:column;
19
19
  align-items:flex-start;
20
20
  }
21
+ .v-text-field__input{
22
+ cursor:text;
23
+ }
24
+ .v-text-field__input__element{
25
+ width:100%;
26
+ min-width:0;
27
+ padding:0;
28
+ margin:0;
29
+ overflow:hidden;
30
+ text-overflow:ellipsis;
31
+ font-size:inherit;
32
+ line-height:inherit;
33
+ letter-spacing:inherit;
34
+ white-space:nowrap;
35
+ outline:0;
36
+ background:transparent;
37
+ border:0;
38
+ border-radius:0;
39
+ }
40
+ .v-text-field__input__element:-webkit-autofill:-webkit-autofill,.v-text-field__input__element:-webkit-autofill:-webkit-autofill:active,.v-text-field__input__element:-webkit-autofill:-webkit-autofill:focus,.v-text-field__input__element:-webkit-autofill:-webkit-autofill:hover{
41
+ color:inherit !important;
42
+ transition:background-color 5000s;
43
+ -webkit-text-fill-color:#fff !important;
44
+ }
45
+ .v-text-field__input__element::-ms-clear{
46
+ display:none;
47
+ }
48
+ .v-text-field__input__element::placeholder{
49
+ font-style:italic;
50
+ color:var(--control-disabled-color);
51
+ }
52
+ .v-button-group{
53
+ display:inline-flex;
54
+ align-items:stretch;
55
+ }
56
+ .v-button-group__item{
57
+ position:relative;
58
+ margin:0;
59
+ }
60
+ .v-button-group__item--has-left{
61
+ border-top-left-radius:0;
62
+ border-bottom-left-radius:0;
63
+ }
64
+ .v-button-group__item--has-right{
65
+ border-top-right-radius:0;
66
+ border-bottom-right-radius:0;
67
+ }
68
+ .v-button-group__item:focus{
69
+ z-index:1;
70
+ }
71
+ .v-grid-container{
72
+ display:flex;
73
+ flex-wrap:wrap;
74
+ }
21
75
  :root{
22
76
  --root-em:16px;
23
77
  --root-spacing:8px;
@@ -479,173 +533,260 @@
479
533
  .wysiwyg p{
480
534
  margin:0;
481
535
  }
482
- .v-pagination{
483
- --pagination-size:var(--pagination-item-size);
484
- --pagination-margin:var(--pagination-item-margin);
485
- --pagination-font-size:var(--pagination-item-font-size);
486
- --pagination-radius:var(--pagination-item-radius);
487
- display:flex;
536
+ .v-button{
537
+ --padding:1em;
538
+ --height:2.5714285714em;
539
+ --icon-margin:0.6em;
540
+ position:relative;
541
+ display:inline-flex;
542
+ flex:0 0 auto;
488
543
  align-items:center;
544
+ justify-content:center;
545
+ min-width:calc(var(--root-em)*4);
546
+ height:var(--height);
547
+ padding:0 var(--padding);
548
+ margin:calc(var(--root-em)*.375) calc(var(--root-em)*.5);
489
549
  overflow:hidden;
490
- font-weight:700;
550
+ font:inherit;
551
+ font-weight:500;
491
552
  line-height:1;
553
+ vertical-align:bottom;
554
+ text-transform:uppercase;
555
+ letter-spacing:.0892857143em;
556
+ text-decoration:none;
557
+ appearance:none;
558
+ cursor:pointer;
559
+ user-select:none;
560
+ outline:0;
561
+ border-style:solid;
562
+ border-width:1px;
563
+ border-radius:var(--control-field-radius);
564
+ transition:.3s cubic-bezier(.25, .8, .5, 1),color 1ms;
492
565
  }
493
- .v-pagination:before{
494
- width:var(--pagination-size);
495
- margin:var(--pagination-margin);
496
- content:none;
497
- }
498
- .v-pagination--left{
566
+ .v-button--align-left{
499
567
  justify-content:flex-start;
500
568
  }
501
- .v-pagination--center{
502
- justify-content:center;
503
- }
504
- .v-pagination--right{
569
+ .v-button--align-right{
505
570
  justify-content:flex-end;
506
571
  }
507
- .v-pagination a.v-pagination__item,.v-pagination__item{
508
- -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
572
+ .v-button--plain{
573
+ color:inherit !important;
509
574
  }
510
- .v-pagination a.v-pagination__item::-moz-focus-inner,.v-pagination__item::-moz-focus-inner{
511
- border:0;
575
+ .v-button--plain.v-button--guard-in-progress,.v-button--plain[aria-disabled=true],.v-button--plain[disabled]{
576
+ opacity:.5;
512
577
  }
513
- .v-pagination a.v-pagination__item,.v-pagination__item{
514
- padding:0;
515
- appearance:none;
516
- touch-action:manipulation;
517
- cursor:pointer;
518
- user-select:none;
519
- outline:0;
520
- border-width:0;
578
+ .v-button--sm{
579
+ font-size:calc(var(--root-em)*.75);
521
580
  }
522
- .v-pagination a.v-pagination__item,.v-pagination a.v-pagination__item:focus,.v-pagination a.v-pagination__item:hover,.v-pagination__item,.v-pagination__item:focus,.v-pagination__item:hover{
523
- text-decoration:none;
581
+ .v-button--md{
582
+ font-size:calc(var(--root-em)*.875);
524
583
  }
525
- .v-pagination a.v-pagination__item,.v-pagination__item{
526
- display:flex;
527
- align-items:center;
528
- justify-content:center;
529
- min-width:var(--pagination-size);
530
- height:var(--pagination-size);
531
- margin:calc(var(--pagination-margin)*.5);
532
- font-size:var(--pagination-font-size);
533
- color:inherit;
534
- border-radius:var(--pagination-radius);
535
- transition:.1s;
584
+ .v-button--lg{
585
+ font-size:calc(var(--root-em)*1.375);
536
586
  }
537
- .v-pagination a.v-pagination__item:focus,.v-pagination a.v-pagination__item:hover,.v-pagination__item:focus,.v-pagination__item:hover{
538
- background:rgba(0,0,0,.1);
587
+ .v-button--rounded{
588
+ --padding:0;
589
+ min-width:0;
590
+ aspect-ratio:1/1;
591
+ margin:calc(var(--root-em)*.125);
592
+ border-radius:50%;
593
+ --height:auto;
539
594
  }
540
- .v-pagination a.v-pagination__item--active,.v-pagination a.v-pagination__item--active:active,.v-pagination a.v-pagination__item--active:focus,.v-pagination a.v-pagination__item--active:hover,.v-pagination__item--active,.v-pagination__item--active:active,.v-pagination__item--active:focus,.v-pagination__item--active:hover{
541
- color:var(--text-color);
542
- pointer-events:none;
543
- background-color:var(--main-color);
595
+ .v-button--icon{
596
+ min-width:1.9285714286em;
597
+ margin:calc(var(--root-em)*.125);
598
+ --height:1.9285714286em;
599
+ --padding:0em;
544
600
  }
545
- .v-pagination a.v-pagination__item--disabled,.v-pagination a.v-pagination__item--truncate,.v-pagination__item--disabled,.v-pagination__item--truncate{
546
- color:var(--palette-muted) !important;
547
- pointer-events:none !important;
548
- background:transparent !important;
601
+ .v-button::-moz-focus-inner{
602
+ border:0;
549
603
  }
550
- .v-pagination a.v-pagination__item .v-icon,.v-pagination__item .v-icon{
551
- font-size:125%;
604
+ .v-button.v-button--guard-in-progress,.v-button[aria-disabled=true],.v-button[disabled]{
605
+ cursor:default;
552
606
  }
553
- .v-pagination--dense .v-pagination__item{
554
- --pagination-size:var(--pagination-item-size-dense);
555
- --pagination-margin:var(--pagination-item-margin-dense);
556
- --pagination-font-size:var(--pagination-item-font-size-dense);
607
+ .v-button--spacer-left{
608
+ margin-left:auto;
557
609
  }
558
- .v-pagination--disabled .v-pagination__item{
559
- color:var(--palette-muted);
560
- pointer-events:none;
610
+ .v-button--spacer-right{
611
+ margin-right:auto;
561
612
  }
562
- .v-pagination--disabled .v-pagination__item:focus,.v-pagination--disabled .v-pagination__item:hover{
563
- background:transparent;
613
+ .v-button__content{
614
+ display:flex;
615
+ align-items:center;
616
+ justify-content:center;
617
+ justify-self:stretch;
618
+ pointer-events:none;
564
619
  }
565
- .v-pagination--disabled .v-pagination__item--active{
566
- background:var(--palette-muted);
620
+ .v-button--loading .v-button__content{
621
+ opacity:0;
567
622
  }
568
- .v-disabled-reason{
569
- -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
623
+ .v-button__icon--start{
624
+ margin-right:var(--icon-margin);
570
625
  }
571
- .v-disabled-reason::-moz-focus-inner{
572
- border:0;
626
+ .v-button__icon--end{
627
+ margin-left:var(--icon-margin);
573
628
  }
574
- .v-disabled-reason{
629
+ .v-button__loading{
575
630
  position:absolute;
576
- inset:0;
577
- z-index:10;
631
+ top:50%;
632
+ left:50%;
633
+ z-index:1;
634
+ transform:translate(-50%, -50%);
635
+ }
636
+ .v-paper{
637
+ --paper-radius:var(--control-field-radius);
578
638
  display:block;
579
- pointer-events:none;
580
- cursor:default;
639
+ color:var(--paper-text-color);
640
+ background-color:var(--paper-background--color);
641
+ border-radius:var(--paper-radius);
642
+ }
643
+ .v-paper--plain{
644
+ --paper-background--color:var(--palette-background);
645
+ --paper-text-color:inherit;
646
+ --paper-link-color:var(--link-color);
647
+ }
648
+ .v-paper--has-color{
649
+ --paper-background--color:var(--main-color);
650
+ --paper-text-color:var(--text-color);
651
+ --paper-link-color:var(--nav-color);
652
+ }
653
+ .v-paper__inner{
654
+ position:relative;
581
655
  border-radius:inherit;
582
656
  }
583
- .v-disabled-reason[tabindex]:not([tabindex^="-"]){
584
- pointer-events:auto;
657
+ .v-paper--square{
658
+ --paper-radius:0px;
585
659
  }
586
- .v-grid-item{
587
- display:block;
660
+ .v-paper__header{
661
+ border-top-left-radius:inherit;
662
+ border-top-right-radius:inherit;
588
663
  }
589
- .v-radio{
590
- --my-color:var(--color);
664
+ .v-paper__footer{
665
+ border-bottom-right-radius:inherit;
666
+ border-bottom-left-radius:inherit;
591
667
  }
592
- .v-radio__faux{
593
- position:relative;
668
+ .v-navigation__caption{
594
669
  display:block;
595
- width:100%;
596
- height:100%;
597
- transition:border-color .2s,background-color .2s;
670
+ padding:calc(var(--root-em)*.625) calc(var(--root-em)*1.5625);
671
+ margin:1em 0 0;
672
+ font-size:.75rem;
673
+ color:var(--caption-color);
674
+ text-transform:uppercase;
598
675
  }
599
- .v-radio__faux:after,.v-radio__faux:before{
600
- position:absolute;
676
+ .v-grid-item{
601
677
  display:block;
602
- content:"";
603
- border-radius:100%;
604
- }
605
- .v-radio__faux:before{
606
- inset:0;
607
- border:2px solid;
608
678
  }
609
- .v-radio__faux:after{
610
- top:50%;
611
- left:50%;
612
- width:50%;
613
- height:50%;
614
- background:currentColor;
615
- transform:translate(-50%, -50%) scale(0);
616
- transition:transform .2s;
679
+ .v-busy-image{
680
+ position:relative;
681
+ display:inline-block;
682
+ max-width:100%;
683
+ vertical-align:bottom;
617
684
  }
618
- .v-radio--selected .v-radio__faux:after{
619
- transform:translate(-50%, -50%) scale(1);
685
+ .v-busy-image--clickable{
686
+ cursor:pointer;
620
687
  }
621
- .v-navigation__caption{
688
+ .v-busy-image--cover{
689
+ background-repeat:no-repeat;
690
+ background-position:50%;
691
+ background-size:cover;
692
+ }
693
+ .v-busy-image--loading:before{
694
+ position:absolute;
695
+ inset:0;
622
696
  display:block;
623
- padding:calc(var(--root-em)*.625) calc(var(--root-em)*1.5625);
624
- margin:1em 0 0;
625
- font-size:.75rem;
626
- color:var(--caption-color);
627
- text-transform:uppercase;
697
+ content:"";
698
+ background:rgba(0,0,0,.1);
699
+ animation:v-tiny-image-blink 1.5s ease-in-out infinite normal;
628
700
  }
629
- .v-grid-container{
701
+ .v-busy-image__node{
702
+ position:relative;
703
+ display:inline-block;
704
+ max-width:100%;
705
+ vertical-align:bottom;
706
+ }
707
+ .v-busy-image__slot{
708
+ position:absolute;
709
+ top:0;
710
+ left:0;
711
+ width:100%;
712
+ height:100%;
713
+ pointer-events:none;
714
+ }
715
+ @keyframes v-tiny-image-blink{
716
+ 0%{
717
+ opacity:1;
718
+ }
719
+ 50%{
720
+ opacity:0;
721
+ }
722
+ to{
723
+ opacity:1;
724
+ }
725
+ }
726
+ .v-drawer-layout{
727
+ display:block;
728
+ width:100%;
729
+ height:100%;
730
+ }
731
+ .v-drawer-layout__inner{
630
732
  display:flex;
631
- flex-wrap:wrap;
733
+ flex-direction:column;
734
+ align-items:stretch;
735
+ width:100%;
736
+ height:100%;
632
737
  }
633
- .v-icon{
634
- display:inline-flex;
738
+ .v-drawer-layout__header{
739
+ display:flex;
740
+ flex:0 0 var(--val-topToolbar-height);
635
741
  align-items:center;
636
742
  justify-content:center;
637
- width:1.25em;
638
- aspect-ratio:1/1;
639
- user-select:none;
743
+ height:var(--val-topToolbar-height);
640
744
  }
641
- .v-icon--clickable{
642
- cursor:pointer;
745
+ .v-drawer-layout__body{
746
+ flex:1 1 100%;
747
+ overflow:auto;
748
+ -webkit-overflow-scrolling:touch;
643
749
  }
644
- .v-icon__body{
645
- display:inline-flex;
646
- align-items:center;
647
- justify-content:center;
648
- transition:transform .15s linear;
750
+ .v-drawer-layout__footer{
751
+ flex:0 0 auto;
752
+ margin-top:auto;
753
+ }
754
+ .v-disabled-reason{
755
+ -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
756
+ }
757
+ .v-disabled-reason::-moz-focus-inner{
758
+ border:0;
759
+ }
760
+ .v-disabled-reason{
761
+ position:absolute;
762
+ inset:0;
763
+ z-index:10;
764
+ display:block;
765
+ pointer-events:none;
766
+ cursor:default;
767
+ border-radius:inherit;
768
+ }
769
+ .v-disabled-reason[tabindex]:not([tabindex^="-"]){
770
+ pointer-events:auto;
771
+ }
772
+ .v-navigation-item--opened{
773
+ --tile-background:var(--tile-active-background);
774
+ --tile-text-color:var(--tile-text-active-color);
775
+ }
776
+ .v-navigation-item__expand{
777
+ transition:height .2s;
778
+ }
779
+ .v-navigation-item__expand .v-navigation-item{
780
+ --tile-background:var(--tile-active-background);
781
+ }
782
+ .v-navigation-item--depth-1{
783
+ --depth-padding:calc(var(--list-tile-padding)*2);
784
+ }
785
+ .v-navigation-item--depth-2{
786
+ --depth-padding:calc(var(--list-tile-padding)*3);
787
+ }
788
+ .v-navigation-item--depth-3{
789
+ --depth-padding:calc(var(--list-tile-padding)*4);
649
790
  }
650
791
  .v-form-control{
651
792
  display:flex;
@@ -716,15 +857,6 @@
716
857
  flex:0 1;
717
858
  margin-left:auto;
718
859
  }
719
- .v-card-actions{
720
- display:flex;
721
- align-items:center;
722
- padding:var(--card-actions-padding);
723
- }
724
- .v-card-actions .v-btn{
725
- margin-top:0;
726
- margin-bottom:0;
727
- }
728
860
  .v-hero{
729
861
  --hero-background-color:var(--main-color);
730
862
  --hero-text-color:var(--text-color);
@@ -748,38 +880,6 @@
748
880
  padding-left:10px;
749
881
  margin-left:auto;
750
882
  }
751
- .v-option-group{
752
- display:block;
753
- }
754
- .v-option-group__label{
755
- padding:1em;
756
- font-size:.875em;
757
- color:var(--palette-caption);
758
- opacity:.6;
759
- }
760
- .v-option-group--disabled .v-option-group__label{
761
- color:var(--palette-muted);
762
- opacity:.4;
763
- }
764
- .v-button-group{
765
- display:inline-flex;
766
- align-items:stretch;
767
- }
768
- .v-button-group__item{
769
- position:relative;
770
- margin:0;
771
- }
772
- .v-button-group__item--has-left{
773
- border-top-left-radius:0;
774
- border-bottom-left-radius:0;
775
- }
776
- .v-button-group__item--has-right{
777
- border-top-right-radius:0;
778
- border-bottom-right-radius:0;
779
- }
780
- .v-button-group__item:focus{
781
- z-index:1;
782
- }
783
883
  .v-chip{
784
884
  -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
785
885
  }
@@ -856,371 +956,125 @@
856
956
  .v-chip .v-avatar{
857
957
  --avatar-size:14px;
858
958
  }
859
- .v-avatar{
860
- -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
861
- }
862
- .v-avatar::-moz-focus-inner{
863
- border:0;
959
+ .v-skelton-loader-bone{
960
+ position:relative;
961
+ overflow:hidden;
962
+ cursor:progress;
963
+ background:rgba(0,0,0,.12);
964
+ border-radius:inherit;
864
965
  }
865
- .v-avatar{
866
- padding:0;
867
- appearance:none;
868
- touch-action:manipulation;
869
- cursor:pointer;
870
- user-select:none;
871
- outline:0;
872
- border-width:0;
966
+ .v-skelton-loader-bone:after{
967
+ position:absolute;
968
+ top:0;
969
+ right:0;
970
+ left:0;
971
+ z-index:1;
972
+ height:100%;
973
+ content:"";
974
+ background:linear-gradient(90deg, hsla(0,0%,100%,0), hsla(0,0%,100%,.3), hsla(0,0%,100%,0));
975
+ transform:translateX(-100%);
976
+ animation:v-skelton-loader-bone-loading 1.5s infinite;
873
977
  }
874
- .v-avatar,.v-avatar:focus,.v-avatar:hover{
875
- text-decoration:none;
978
+ .v-breadcrumbs{
979
+ display:block;
980
+ margin:1.5em auto;
981
+ font-size:var(--breadcrumbs-font-size);
876
982
  }
877
- .v-avatar{
878
- --avatar-radius:50%;
879
- --avatar-font-weight:var(--typo-medium-weight);
880
- --avatar-base-font-size:var(--typo-base-size);
881
- --avatar-font-size:var(--avatar-base-font-size);
983
+ .v-breadcrumbs__list{
882
984
  display:inline-flex;
883
- flex-basis:var(--avatar-size);
985
+ flex-wrap:wrap;
884
986
  align-items:center;
885
- justify-content:center;
886
- width:var(--avatar-size);
887
- min-width:var(--avatar-size);
888
- height:var(--avatar-size);
889
- overflow:hidden;
890
- font-size:var(--avatar-font-size);
891
- font-weight:var(--avatar-font-weight);
892
- line-height:1;
893
987
  vertical-align:bottom;
894
- text-align:center;
895
- cursor:default;
896
- border-style:solid;
897
- border-width:1px;
898
- border-radius:var(--avatar-radius);
899
- --shadow-color:transparent !important;
900
- --focusShadow-color:transparent !important;
901
- }
902
- .v-avatar--clickable{
903
- cursor:pointer;
904
988
  }
905
- .v-avatar--sm{
906
- --avatar-size:36px;
907
- --avatar-font-size:calc(var(--avatar-base-font-size)*0.75);
989
+ .v-breadcrumbs__divider,.v-breadcrumbs__item,.v-breadcrumbs__list{
990
+ padding:0;
991
+ margin:0;
992
+ list-style:none;
908
993
  }
909
- .v-avatar--md{
910
- --avatar-size:48px;
994
+ .v-breadcrumbs__link{
995
+ display:inline-flex;
996
+ align-items:center;
997
+ vertical-align:middle;
998
+ white-space:nowrap;
999
+ text-decoration:none;
911
1000
  }
912
- .v-avatar--lg{
913
- --avatar-size:62px;
914
- --avatar-font-size:calc(var(--avatar-base-font-size)*1.25);
1001
+ .v-breadcrumbs__item--disabled .v-breadcrumbs__link{
1002
+ color:inherit;
1003
+ pointer-events:none;
915
1004
  }
916
- .v-avatar--rounded{
917
- --avatar-radius:4px;
918
- }
919
- .v-avatar--tile{
920
- --avatar-radius:0;
921
- }
922
- .v-avatar img,.v-avatar__image{
923
- display:inline-flex;
924
- width:inherit !important;
925
- height:inherit !important;
926
- object-fit:cover;
927
- border-radius:inherit;
928
- }
929
- .v-drawer-layout{
930
- display:block;
931
- width:100%;
932
- height:100%;
933
- }
934
- .v-drawer-layout__inner{
935
- display:flex;
936
- flex-direction:column;
937
- align-items:stretch;
938
- width:100%;
939
- height:100%;
940
- }
941
- .v-drawer-layout__header{
942
- display:flex;
943
- flex:0 0 var(--val-topToolbar-height);
944
- align-items:center;
945
- justify-content:center;
946
- height:var(--val-topToolbar-height);
947
- }
948
- .v-drawer-layout__body{
949
- flex:1 1 100%;
950
- overflow:auto;
951
- -webkit-overflow-scrolling:touch;
952
- }
953
- .v-drawer-layout__footer{
954
- flex:0 0 auto;
955
- margin-top:auto;
956
- }
957
- .v-paper{
958
- --paper-radius:var(--control-field-radius);
959
- display:block;
960
- color:var(--paper-text-color);
961
- background-color:var(--paper-background--color);
962
- border-radius:var(--paper-radius);
963
- }
964
- .v-paper--plain{
965
- --paper-background--color:var(--palette-background);
966
- --paper-text-color:inherit;
967
- --paper-link-color:var(--link-color);
968
- }
969
- .v-paper--has-color{
970
- --paper-background--color:var(--main-color);
971
- --paper-text-color:var(--text-color);
972
- --paper-link-color:var(--nav-color);
973
- }
974
- .v-paper__inner{
975
- position:relative;
976
- border-radius:inherit;
977
- }
978
- .v-paper--square{
979
- --paper-radius:0px;
980
- }
981
- .v-paper__header{
982
- border-top-left-radius:inherit;
983
- border-top-right-radius:inherit;
984
- }
985
- .v-paper__footer{
986
- border-bottom-right-radius:inherit;
987
- border-bottom-left-radius:inherit;
1005
+ .v-breadcrumbs__icon{
1006
+ margin-right:.2em;
1007
+ font-size:140%;
988
1008
  }
989
- .v-button{
990
- --padding:1em;
991
- --height:2.5714285714em;
992
- --icon-margin:0.6em;
1009
+ .v-breadcrumbs__divider{
993
1010
  position:relative;
994
- display:inline-flex;
995
- flex:0 0 auto;
996
- align-items:center;
997
- justify-content:center;
998
- min-width:calc(var(--root-em)*4);
999
- height:var(--height);
1000
- padding:0 var(--padding);
1001
- margin:calc(var(--root-em)*.375) calc(var(--root-em)*.5);
1002
- overflow:hidden;
1003
- font:inherit;
1004
- font-weight:500;
1005
- line-height:1;
1006
- vertical-align:bottom;
1007
- text-transform:uppercase;
1008
- letter-spacing:.0892857143em;
1009
- text-decoration:none;
1010
- appearance:none;
1011
- cursor:pointer;
1012
- user-select:none;
1013
- outline:0;
1014
- border-style:solid;
1015
- border-width:1px;
1016
- border-radius:var(--control-field-radius);
1017
- transition:.3s cubic-bezier(.25, .8, .5, 1),color 1ms;
1018
- }
1019
- .v-button--align-left{
1020
- justify-content:flex-start;
1021
- }
1022
- .v-button--align-right{
1023
- justify-content:flex-end;
1024
- }
1025
- .v-button--plain{
1026
- color:inherit !important;
1027
- }
1028
- .v-button--plain.v-button--guard-in-progress,.v-button--plain[aria-disabled=true],.v-button--plain[disabled]{
1029
- opacity:.5;
1030
- }
1031
- .v-button--sm{
1032
- font-size:calc(var(--root-em)*.75);
1033
- }
1034
- .v-button--md{
1035
- font-size:calc(var(--root-em)*.875);
1036
- }
1037
- .v-button--lg{
1038
- font-size:calc(var(--root-em)*1.375);
1039
- }
1040
- .v-button--rounded{
1041
- --padding:0;
1042
- min-width:0;
1043
- aspect-ratio:1/1;
1044
- margin:calc(var(--root-em)*.125);
1045
- border-radius:50%;
1046
- --height:auto;
1047
- }
1048
- .v-button--icon{
1049
- min-width:1.9285714286em;
1050
- margin:calc(var(--root-em)*.125);
1051
- --height:1.9285714286em;
1052
- --padding:0em;
1053
- }
1054
- .v-button::-moz-focus-inner{
1055
- border:0;
1056
- }
1057
- .v-button.v-button--guard-in-progress,.v-button[aria-disabled=true],.v-button[disabled]{
1058
- cursor:default;
1059
- }
1060
- .v-button--spacer-left{
1061
- margin-left:auto;
1062
- }
1063
- .v-button--spacer-right{
1064
- margin-right:auto;
1065
- }
1066
- .v-button__content{
1011
+ top:1px;
1067
1012
  display:flex;
1068
1013
  align-items:center;
1069
1014
  justify-content:center;
1070
- justify-self:stretch;
1071
- pointer-events:none;
1072
- }
1073
- .v-button--loading .v-button__content{
1074
- opacity:0;
1075
- }
1076
- .v-button__icon--start{
1077
- margin-right:var(--icon-margin);
1015
+ margin:0 1.25em;
1078
1016
  }
1079
- .v-button__icon--end{
1080
- margin-left:var(--icon-margin);
1017
+ .v-breadcrumbs__divider__icon{
1018
+ display:block;
1019
+ width:.5em;
1020
+ height:.5em;
1021
+ margin-left:-.25em;
1022
+ border-top:1px solid;
1023
+ border-right:1px solid;
1024
+ transform:rotate(45deg);
1081
1025
  }
1082
- .v-button__loading{
1083
- position:absolute;
1084
- top:50%;
1085
- left:50%;
1086
- z-index:1;
1087
- transform:translate(-50%, -50%);
1026
+ .v-radio{
1027
+ --my-color:var(--color);
1088
1028
  }
1089
- .v-skelton-loader-bone{
1029
+ .v-radio__faux{
1090
1030
  position:relative;
1091
- overflow:hidden;
1092
- cursor:progress;
1093
- background:rgba(0,0,0,.12);
1094
- border-radius:inherit;
1031
+ display:block;
1032
+ width:100%;
1033
+ height:100%;
1034
+ transition:border-color .2s,background-color .2s;
1095
1035
  }
1096
- .v-skelton-loader-bone:after{
1036
+ .v-radio__faux:after,.v-radio__faux:before{
1097
1037
  position:absolute;
1098
- top:0;
1099
- right:0;
1100
- left:0;
1101
- z-index:1;
1102
- height:100%;
1038
+ display:block;
1103
1039
  content:"";
1104
- background:linear-gradient(90deg, hsla(0,0%,100%,0), hsla(0,0%,100%,.3), hsla(0,0%,100%,0));
1105
- transform:translateX(-100%);
1106
- animation:v-skelton-loader-bone-loading 1.5s infinite;
1107
- }
1108
- .v-text-counter{
1109
- white-space:nowrap;
1110
- }
1111
- .v-navigation-item--opened{
1112
- --tile-background:var(--tile-active-background);
1113
- --tile-text-color:var(--tile-text-active-color);
1114
- }
1115
- .v-navigation-item__expand{
1116
- transition:height .2s;
1117
- }
1118
- .v-navigation-item__expand .v-navigation-item{
1119
- --tile-background:var(--tile-active-background);
1120
- }
1121
- .v-navigation-item--depth-1{
1122
- --depth-padding:calc(var(--list-tile-padding)*2);
1123
- }
1124
- .v-navigation-item--depth-2{
1125
- --depth-padding:calc(var(--list-tile-padding)*3);
1126
- }
1127
- .v-navigation-item--depth-3{
1128
- --depth-padding:calc(var(--list-tile-padding)*4);
1129
- }
1130
- .v-list-tile{
1131
- --tile-background:var(--main-color, transparent);
1132
- --tile-active-background:var(--deep-color, transparent);
1133
- --tile-text-color:var(--text-color);
1134
- --tile-text-active-color:var(--text-color);
1135
- --tile-pin-color:transparent;
1136
- --paper-link-color:var(--tile-text-color);
1137
- --depth-padding:var(--list-tile-padding);
1138
- display:flex;
1139
- align-items:center;
1140
- width:100%;
1141
- padding:var(--list-tile-padding);
1142
- padding-left:var(--depth-padding);
1143
- color:var(--tile-text-color) !important;
1144
- text-align:left;
1145
- text-decoration:none;
1146
- appearance:none;
1147
- user-select:none;
1148
- outline:0;
1149
- background:var(--tile-background);
1150
- border:0;
1151
- border-left:3px solid var(--tile-pin-color);
1152
- border-radius:0;
1153
- transition:color .15s cubic-bezier(.4, 0, .2, 1) 0s,background-color .15s cubic-bezier(.4, 0, .2, 1) 0s;
1154
- }
1155
- .v-list-tile--clickable{
1156
- cursor:pointer;
1157
- --tile-text-color:var(--nav-color);
1158
- --tile-text-active-color:var(--navActive-color, var(--nav-color));
1159
- }
1160
- .v-list-tile--clickable:focus,.v-list-tile--clickable:hover{
1161
- --tile-background:var(--tile-active-background);
1162
- --tile-text-color:var(--tile-text-active-color);
1163
- }
1164
- .v-list-tile--active{
1165
- --tile-pin-color:var(--pin-color);
1166
- --tile-text-color:var(--tile-text-active-color);
1167
- --tile-background:var(--tile-active-background);
1168
- }
1169
- .v-list-tile__body{
1170
- font-size:.8125rem;
1171
- font-weight:500;
1172
- line-height:1.5;
1040
+ border-radius:100%;
1173
1041
  }
1174
- .v-list-tile__icon{
1175
- min-width:2em;
1042
+ .v-radio__faux:before{
1043
+ inset:0;
1044
+ border:2px solid;
1176
1045
  }
1177
- .v-list-tile__icon--end{
1178
- margin-left:auto;
1179
- text-align:right;
1046
+ .v-radio__faux:after{
1047
+ top:50%;
1048
+ left:50%;
1049
+ width:50%;
1050
+ height:50%;
1051
+ background:currentColor;
1052
+ transform:translate(-50%, -50%) scale(0);
1053
+ transition:transform .2s;
1180
1054
  }
1181
- .v-card-content{
1182
- padding:var(--card-content-padding);
1055
+ .v-radio--selected .v-radio__faux:after{
1056
+ transform:translate(-50%, -50%) scale(1);
1183
1057
  }
1184
- .v-card{
1185
- -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
1058
+ .v-checkbox{
1059
+ --my-border-color:var(--color);
1060
+ --my-faux-bg-color:transparent;
1186
1061
  }
1187
- .v-card::-moz-focus-inner{
1188
- border:0;
1062
+ .v-checkbox--indeterminate,.v-checkbox--selected{
1063
+ --my-border-color:transparent;
1064
+ --my-faux-bg-color:var(--color);
1189
1065
  }
1190
- .v-card{
1191
- position:relative;
1066
+ .v-checkbox__faux{
1067
+ display:block;
1192
1068
  width:100%;
1193
- padding:0;
1194
- text-align:left;
1195
- appearance:none;
1196
- touch-action:manipulation;
1197
- user-select:none;
1198
- outline:0;
1199
- border:0;
1200
- }
1201
- .v-card,.v-card:focus,.v-card:hover{
1202
- text-decoration:none;
1203
- }
1204
- .v-card.clickable{
1205
- cursor:pointer;
1206
- }
1207
- .v-card.clickable:before{
1208
- position:absolute;
1209
- inset:0;
1210
- content:"";
1211
- background:currentColor;
1212
- border-radius:inherit;
1213
- opacity:0;
1214
- transition:.3s cubic-bezier(.25, .8, .5, 1);
1215
- }
1216
- .v-card.clickable:focus:before,.v-card.clickable:hover:before{
1217
- opacity:.125;
1218
- }
1219
- .v-card[aria-disabled=true],.v-card[disabled]{
1220
- pointer-events:none;
1069
+ height:100%;
1070
+ background:var(--my-faux-bg-color);
1071
+ border:2px solid var(--my-border-color);
1072
+ border-radius:var(--control-field-radius);
1073
+ clip-path:polygon(0 0, 0 100%, 100% 100%, 100% 0, 88.25% 28.25%, 38% 78.125%, 12% 50%, 20% 42.1875%, 38% 63%, 82% 20%, 88.25% 28.25%, 100% 0);
1074
+ transition:border-color .2s,background-color .2s;
1221
1075
  }
1222
- .v-card[aria-disabled=true]:before,.v-card[disabled]:before{
1223
- content:none;
1076
+ .v-checkbox--indeterminate .v-checkbox__faux{
1077
+ clip-path:polygon(0 0, 0 100%, 100% 100%, 100% 0, 77.7777777778% 44.4444444444%, 77.7777777778% 55.5555555556%, 22.2222222222% 55.5555555556%, 22.2222222222% 44.4444444444%, 77.7777777778% 44.4444444444%, 100% 0);
1224
1078
  }
1225
1079
  .v-control-field{
1226
1080
  position:relative;
@@ -1345,105 +1199,127 @@
1345
1199
  .v-control-field__adornment .v-icon{
1346
1200
  font-size:1.2em;
1347
1201
  }
1348
- .v-checkbox{
1349
- --my-border-color:var(--color);
1350
- --my-faux-bg-color:transparent;
1351
- }
1352
- .v-checkbox--indeterminate,.v-checkbox--selected{
1353
- --my-border-color:transparent;
1354
- --my-faux-bg-color:var(--color);
1355
- }
1356
- .v-checkbox__faux{
1357
- display:block;
1202
+ .v-list-tile{
1203
+ --tile-background:var(--main-color, transparent);
1204
+ --tile-active-background:var(--deep-color, transparent);
1205
+ --tile-text-color:var(--text-color);
1206
+ --tile-text-active-color:var(--text-color);
1207
+ --tile-pin-color:transparent;
1208
+ --paper-link-color:var(--tile-text-color);
1209
+ --depth-padding:var(--list-tile-padding);
1210
+ display:flex;
1211
+ align-items:center;
1358
1212
  width:100%;
1359
- height:100%;
1360
- background:var(--my-faux-bg-color);
1361
- border:2px solid var(--my-border-color);
1362
- border-radius:var(--control-field-radius);
1363
- clip-path:polygon(0 0, 0 100%, 100% 100%, 100% 0, 88.25% 28.25%, 38% 78.125%, 12% 50%, 20% 42.1875%, 38% 63%, 82% 20%, 88.25% 28.25%, 100% 0);
1364
- transition:border-color .2s,background-color .2s;
1365
- }
1366
- .v-checkbox--indeterminate .v-checkbox__faux{
1367
- clip-path:polygon(0 0, 0 100%, 100% 100%, 100% 0, 77.7777777778% 44.4444444444%, 77.7777777778% 55.5555555556%, 22.2222222222% 55.5555555556%, 22.2222222222% 44.4444444444%, 77.7777777778% 44.4444444444%, 100% 0);
1213
+ padding:var(--list-tile-padding);
1214
+ padding-left:var(--depth-padding);
1215
+ color:var(--tile-text-color) !important;
1216
+ text-align:left;
1217
+ text-decoration:none;
1218
+ appearance:none;
1219
+ user-select:none;
1220
+ outline:0;
1221
+ background:var(--tile-background);
1222
+ border:0;
1223
+ border-left:3px solid var(--tile-pin-color);
1224
+ border-radius:0;
1225
+ transition:color .15s cubic-bezier(.4, 0, .2, 1) 0s,background-color .15s cubic-bezier(.4, 0, .2, 1) 0s;
1368
1226
  }
1369
- .v-select__input{
1227
+ .v-list-tile--clickable{
1370
1228
  cursor:pointer;
1229
+ --tile-text-color:var(--nav-color);
1230
+ --tile-text-active-color:var(--navActive-color, var(--nav-color));
1371
1231
  }
1372
- .v-select__input__element{
1373
- position:absolute;
1374
- width:1px;
1375
- height:1px;
1376
- overflow:hidden;
1377
- white-space:nowrap;
1378
- clip:rect(0 0 0 0);
1379
- clip-path:inset(100%);
1232
+ .v-list-tile--clickable:focus,.v-list-tile--clickable:hover{
1233
+ --tile-background:var(--tile-active-background);
1234
+ --tile-text-color:var(--tile-text-active-color);
1380
1235
  }
1381
- .v-select__body{
1382
- padding:.5em 0;
1236
+ .v-list-tile--active{
1237
+ --tile-pin-color:var(--pin-color);
1238
+ --tile-text-color:var(--tile-text-active-color);
1239
+ --tile-background:var(--tile-active-background);
1383
1240
  }
1384
- .v-select__selections{
1385
- display:table;
1386
- width:100%;
1387
- table-layout:fixed;
1241
+ .v-list-tile__body{
1242
+ font-size:.8125rem;
1243
+ font-weight:500;
1244
+ line-height:1.5;
1388
1245
  }
1389
- .v-select__selections__inner{
1390
- display:table-cell;
1391
- overflow:hidden;
1392
- text-overflow:ellipsis;
1393
- vertical-align:middle;
1394
- white-space:nowrap;
1246
+ .v-list-tile__icon{
1247
+ min-width:2em;
1395
1248
  }
1396
- .v-select--multiple .v-select__selections{
1397
- display:block;
1249
+ .v-list-tile__icon--end{
1250
+ margin-left:auto;
1251
+ text-align:right;
1398
1252
  }
1399
- .v-select--multiple .v-select__selections__inner{
1253
+ .v-option-group{
1400
1254
  display:block;
1401
- overflow:auto;
1402
- white-space:unset;
1403
1255
  }
1404
- .v-select--multiple .v-control-field__body{
1405
- padding:.2em 0;
1256
+ .v-option-group__label{
1257
+ padding:1em;
1258
+ font-size:.875em;
1259
+ color:var(--palette-caption);
1260
+ opacity:.6;
1406
1261
  }
1407
- .v-select__placeholder{
1408
- font-style:italic;
1409
- color:var(--control-disabled-color);
1262
+ .v-option-group--disabled .v-option-group__label{
1263
+ color:var(--palette-muted);
1264
+ opacity:.4;
1410
1265
  }
1411
- .v-file-input__inner{
1266
+ .v-card-actions{
1412
1267
  display:flex;
1413
- align-items:stretch;
1268
+ align-items:center;
1269
+ padding:var(--card-actions-padding);
1414
1270
  }
1415
- .v-file-input__button{
1416
- flex:0 0 auto;
1417
- height:auto;
1418
- margin:0;
1419
- margin-bottom:1px !important;
1420
- border-top-right-radius:0;
1421
- border-bottom-right-radius:0;
1271
+ .v-card-actions .v-btn{
1272
+ margin-top:0;
1273
+ margin-bottom:0;
1422
1274
  }
1423
- .v-file-input__selections{
1424
- display:flex;
1425
- flex-wrap:wrap;
1275
+ .v-icon{
1276
+ display:inline-flex;
1426
1277
  align-items:center;
1427
- align-self:stretch;
1428
- padding:4px 6px;
1278
+ justify-content:center;
1279
+ width:1.25em;
1280
+ aspect-ratio:1/1;
1281
+ user-select:none;
1429
1282
  }
1430
- .v-file-input__placeholder{
1431
- color:var(--control-disabled-color);
1283
+ .v-icon--clickable{
1284
+ cursor:pointer;
1432
1285
  }
1433
- .v-file-input__input{
1434
- flex:1 1 100%;
1286
+ .v-icon__body{
1287
+ display:inline-flex;
1288
+ align-items:center;
1289
+ justify-content:center;
1290
+ transition:transform .15s linear;
1291
+ }
1292
+ .v-textarea__input{
1435
1293
  cursor:text;
1436
- border-top-left-radius:0;
1437
- border-bottom-left-radius:0;
1438
1294
  }
1439
- .v-file-input__input__element{
1440
- position:absolute;
1441
- width:1px;
1442
- height:1px;
1443
- overflow:hidden;
1444
- white-space:nowrap;
1445
- clip:rect(0 0 0 0);
1446
- clip-path:inset(100%);
1295
+ .v-textarea__input__element{
1296
+ width:100%;
1297
+ min-width:0;
1298
+ padding:8px 0;
1299
+ margin:0;
1300
+ font-size:inherit;
1301
+ line-height:inherit;
1302
+ letter-spacing:inherit;
1303
+ resize:none;
1304
+ outline:0;
1305
+ background:transparent;
1306
+ border:0;
1307
+ border-radius:0;
1308
+ }
1309
+ .v-textarea__input__element:-webkit-autofill:-webkit-autofill,.v-textarea__input__element:-webkit-autofill:-webkit-autofill:active,.v-textarea__input__element:-webkit-autofill:-webkit-autofill:focus,.v-textarea__input__element:-webkit-autofill:-webkit-autofill:hover{
1310
+ color:inherit !important;
1311
+ transition:background-color 5000s;
1312
+ -webkit-text-fill-color:#fff !important;
1313
+ }
1314
+ .v-textarea__input__element::-ms-clear{
1315
+ display:none;
1316
+ }
1317
+ .v-textarea__input__element::placeholder{
1318
+ font-style:italic;
1319
+ color:var(--control-disabled-color);
1320
+ }
1321
+ .v-card-content{
1322
+ padding:var(--card-content-padding);
1447
1323
  }
1448
1324
  .v-option{
1449
1325
  -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
@@ -1518,89 +1394,160 @@
1518
1394
  .v-option[aria-disabled=true]:before,.v-option[disabled]:before,.v-option[tabindex="-1"]:before{
1519
1395
  opacity:0 !important;
1520
1396
  }
1521
- .v-toolbar-menu{
1522
- height:100%;
1523
- margin:0;
1524
- box-shadow:none;
1397
+ .v-select__input{
1398
+ cursor:pointer;
1525
1399
  }
1526
- .v-breadcrumbs{
1400
+ .v-select__input__element{
1401
+ position:absolute;
1402
+ width:1px;
1403
+ height:1px;
1404
+ overflow:hidden;
1405
+ white-space:nowrap;
1406
+ clip:rect(0 0 0 0);
1407
+ clip-path:inset(100%);
1408
+ }
1409
+ .v-select__body{
1410
+ padding:.5em 0;
1411
+ }
1412
+ .v-select__selections{
1413
+ display:table;
1414
+ width:100%;
1415
+ table-layout:fixed;
1416
+ }
1417
+ .v-select__selections__inner{
1418
+ display:table-cell;
1419
+ overflow:hidden;
1420
+ text-overflow:ellipsis;
1421
+ vertical-align:middle;
1422
+ white-space:nowrap;
1423
+ }
1424
+ .v-select--multiple .v-select__selections{
1527
1425
  display:block;
1528
- margin:1.5em auto;
1529
- font-size:var(--breadcrumbs-font-size);
1530
1426
  }
1531
- .v-breadcrumbs__list{
1532
- display:inline-flex;
1533
- flex-wrap:wrap;
1427
+ .v-select--multiple .v-select__selections__inner{
1428
+ display:block;
1429
+ overflow:auto;
1430
+ white-space:unset;
1431
+ }
1432
+ .v-select--multiple .v-control-field__body{
1433
+ padding:.2em 0;
1434
+ }
1435
+ .v-select__placeholder{
1436
+ font-style:italic;
1437
+ color:var(--control-disabled-color);
1438
+ }
1439
+ .v-switch{
1440
+ --my-pin-color:var(--palette-background);
1441
+ }
1442
+ .v-switch--selected{
1443
+ --my-pin-color:var(--color);
1444
+ }
1445
+ .v-switch__faux{
1446
+ position:relative;
1447
+ display:flex;
1534
1448
  align-items:center;
1535
- vertical-align:bottom;
1449
+ justify-content:center;
1450
+ width:100%;
1451
+ width:var(--control-switch-width);
1452
+ height:100%;
1453
+ cursor:pointer;
1536
1454
  }
1537
- .v-breadcrumbs__divider,.v-breadcrumbs__item,.v-breadcrumbs__list{
1538
- padding:0;
1539
- margin:0;
1540
- list-style:none;
1455
+ .v-switch__faux:before{
1456
+ display:block;
1457
+ width:var(--control-switch-track-width);
1458
+ height:var(--control-switch-track-height);
1459
+ content:"";
1460
+ background:var(--color);
1461
+ border-radius:calc(var(--control-switch-track-height)/2);
1462
+ opacity:.5;
1541
1463
  }
1542
- .v-breadcrumbs__link{
1543
- display:inline-flex;
1464
+ .v-switch__faux__pin{
1465
+ position:absolute;
1466
+ top:0;
1467
+ bottom:0;
1468
+ left:0;
1469
+ display:flex;
1544
1470
  align-items:center;
1545
- vertical-align:middle;
1546
- white-space:nowrap;
1547
- text-decoration:none;
1471
+ justify-content:center;
1472
+ width:var(--outer-size);
1473
+ height:var(--outer-size);
1474
+ border-radius:50%;
1475
+ transition:left .15s cubic-bezier(.4, 0, .2, 1) 0s,transform .15s cubic-bezier(.4, 0, .2, 1) 0s;
1548
1476
  }
1549
- .v-breadcrumbs__item--disabled .v-breadcrumbs__link{
1550
- color:inherit;
1551
- pointer-events:none;
1477
+ .v-switch__faux__pin:after,.v-switch__faux__pin:before{
1478
+ display:block;
1479
+ content:"";
1552
1480
  }
1553
- .v-breadcrumbs__icon{
1554
- margin-right:.2em;
1555
- font-size:140%;
1481
+ .v-switch__faux__pin:before{
1482
+ position:absolute;
1483
+ width:100%;
1484
+ height:100%;
1485
+ background:currentColor;
1486
+ border-radius:50%;
1487
+ opacity:0;
1488
+ transition:opacity .2s;
1489
+ }
1490
+ .v-switch__faux__pin:after{
1491
+ position:relative;
1492
+ width:var(--icon-size);
1493
+ height:var(--icon-size);
1494
+ background:var(--my-pin-color);
1495
+ border-radius:50%;
1496
+ box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);
1497
+ transform:scale(var(--control-checkable-faux-scale));
1498
+ }
1499
+ .v-switch--selected .v-switch__faux__pin{
1500
+ left:calc(100% - var(--outer-size));
1501
+ }
1502
+ .v-switch--disabled .v-switch__faux:before{
1503
+ background-color:#000;
1504
+ opacity:.12;
1505
+ }
1506
+ .v-switch--disabled .v-switch__faux__pin:after{
1507
+ background-color:#f5f5f5;
1508
+ }
1509
+ .v-switch__faux:hover .v-switch__faux__pin:before{
1510
+ opacity:.1;
1511
+ }
1512
+ .v-switch:focus-within .v-switch__faux__pin:before{
1513
+ opacity:.1;
1514
+ }
1515
+ .v-file-input__inner{
1516
+ display:flex;
1517
+ align-items:stretch;
1518
+ }
1519
+ .v-file-input__button{
1520
+ flex:0 0 auto;
1521
+ height:auto;
1522
+ margin:0;
1523
+ margin-bottom:1px !important;
1524
+ border-top-right-radius:0;
1525
+ border-bottom-right-radius:0;
1556
1526
  }
1557
- .v-breadcrumbs__divider{
1558
- position:relative;
1559
- top:1px;
1527
+ .v-file-input__selections{
1560
1528
  display:flex;
1529
+ flex-wrap:wrap;
1561
1530
  align-items:center;
1562
- justify-content:center;
1563
- margin:0 1.25em;
1531
+ align-self:stretch;
1532
+ padding:4px 6px;
1564
1533
  }
1565
- .v-breadcrumbs__divider__icon{
1566
- display:block;
1567
- width:.5em;
1568
- height:.5em;
1569
- margin-left:-.25em;
1570
- border-top:1px solid;
1571
- border-right:1px solid;
1572
- transform:rotate(45deg);
1534
+ .v-file-input__placeholder{
1535
+ color:var(--control-disabled-color);
1573
1536
  }
1574
- .v-text-field__input{
1537
+ .v-file-input__input{
1538
+ flex:1 1 100%;
1575
1539
  cursor:text;
1540
+ border-top-left-radius:0;
1541
+ border-bottom-left-radius:0;
1576
1542
  }
1577
- .v-text-field__input__element{
1578
- width:100%;
1579
- min-width:0;
1580
- padding:0;
1581
- margin:0;
1543
+ .v-file-input__input__element{
1544
+ position:absolute;
1545
+ width:1px;
1546
+ height:1px;
1582
1547
  overflow:hidden;
1583
- text-overflow:ellipsis;
1584
- font-size:inherit;
1585
- line-height:inherit;
1586
- letter-spacing:inherit;
1587
1548
  white-space:nowrap;
1588
- outline:0;
1589
- background:transparent;
1590
- border:0;
1591
- border-radius:0;
1592
- }
1593
- .v-text-field__input__element:-webkit-autofill:-webkit-autofill,.v-text-field__input__element:-webkit-autofill:-webkit-autofill:active,.v-text-field__input__element:-webkit-autofill:-webkit-autofill:focus,.v-text-field__input__element:-webkit-autofill:-webkit-autofill:hover{
1594
- color:inherit !important;
1595
- transition:background-color 5000s;
1596
- -webkit-text-fill-color:#fff !important;
1597
- }
1598
- .v-text-field__input__element::-ms-clear{
1599
- display:none;
1600
- }
1601
- .v-text-field__input__element::placeholder{
1602
- font-style:italic;
1603
- color:var(--control-disabled-color);
1549
+ clip:rect(0 0 0 0);
1550
+ clip-path:inset(100%);
1604
1551
  }
1605
1552
  .v-content-switcher{
1606
1553
  position:relative;
@@ -1655,24 +1602,6 @@
1655
1602
  line-height:1;
1656
1603
  white-space:nowrap;
1657
1604
  }
1658
- .v-toolbar-edge{
1659
- display:flex;
1660
- flex:0 0;
1661
- align-items:center;
1662
- align-self:stretch;
1663
- }
1664
- .v-toolbar-edge--empty,.v-toolbar-edge:empty{
1665
- display:none;
1666
- }
1667
- .v-toolbar-edge--start{
1668
- margin-right:calc(var(--root-em)*.75);
1669
- margin-left:calc(var(--root-em)*-1*.75);
1670
- }
1671
- .v-toolbar-edge--end{
1672
- padding-left:calc(var(--root-em)*.75);
1673
- margin-right:calc(var(--root-em)*-1*.75);
1674
- margin-left:auto;
1675
- }
1676
1605
  .v-toolbar{
1677
1606
  --height:var(--toolbar-height);
1678
1607
  display:flex;
@@ -1692,188 +1621,181 @@
1692
1621
  .v-toolbar--dense{
1693
1622
  --height:var(--toolbar-dense-height);
1694
1623
  }
1695
- .v-switch{
1696
- --my-pin-color:var(--palette-background);
1624
+ .v-toolbar-edge{
1625
+ display:flex;
1626
+ flex:0 0;
1627
+ align-items:center;
1628
+ align-self:stretch;
1697
1629
  }
1698
- .v-switch--selected{
1699
- --my-pin-color:var(--color);
1630
+ .v-toolbar-edge--empty,.v-toolbar-edge:empty{
1631
+ display:none;
1700
1632
  }
1701
- .v-switch__faux{
1633
+ .v-toolbar-edge--start{
1634
+ margin-right:calc(var(--root-em)*.75);
1635
+ margin-left:calc(var(--root-em)*-1*.75);
1636
+ }
1637
+ .v-toolbar-edge--end{
1638
+ padding-left:calc(var(--root-em)*.75);
1639
+ margin-right:calc(var(--root-em)*-1*.75);
1640
+ margin-left:auto;
1641
+ }
1642
+ .v-tabs{
1702
1643
  position:relative;
1703
- display:flex;
1704
- align-items:center;
1705
- justify-content:center;
1706
1644
  width:100%;
1707
- width:var(--control-switch-width);
1708
- height:100%;
1709
- cursor:pointer;
1710
- }
1711
- .v-switch__faux:before{
1712
- display:block;
1713
- width:var(--control-switch-track-width);
1714
- height:var(--control-switch-track-height);
1715
- content:"";
1716
- background:var(--color);
1717
- border-radius:calc(var(--control-switch-track-height)/2);
1718
- opacity:.5;
1645
+ height:var(--tabs-height);
1646
+ overflow:hidden;
1719
1647
  }
1720
- .v-switch__faux__pin{
1648
+ .v-tabs:before{
1721
1649
  position:absolute;
1722
- top:0;
1650
+ right:0;
1723
1651
  bottom:0;
1724
1652
  left:0;
1725
- display:flex;
1726
- align-items:center;
1727
- justify-content:center;
1728
- width:var(--outer-size);
1729
- height:var(--outer-size);
1730
- border-radius:50%;
1731
- transition:left .15s cubic-bezier(.4, 0, .2, 1) 0s,transform .15s cubic-bezier(.4, 0, .2, 1) 0s;
1732
- }
1733
- .v-switch__faux__pin:after,.v-switch__faux__pin:before{
1734
1653
  display:block;
1654
+ height:2px;
1735
1655
  content:"";
1656
+ background:currentColor;
1657
+ opacity:.25;
1736
1658
  }
1737
- .v-switch__faux__pin:before{
1738
- position:absolute;
1659
+ .v-tabs__scroller{
1739
1660
  width:100%;
1740
- height:100%;
1741
- background:currentColor;
1742
- border-radius:50%;
1743
- opacity:0;
1744
- transition:opacity .2s;
1661
+ height:calc(var(--tabs-height) + 30px);
1745
1662
  }
1746
- .v-switch__faux__pin:after{
1663
+ .v-tabs__scroller__container{
1664
+ padding-bottom:30px;
1665
+ }
1666
+ .v-tabs__content{
1747
1667
  position:relative;
1748
- width:var(--icon-size);
1749
- height:var(--icon-size);
1750
- background:var(--my-pin-color);
1751
- border-radius:50%;
1752
- box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);
1753
- transform:scale(var(--control-checkable-faux-scale));
1668
+ display:inline-flex;
1669
+ align-items:stretch;
1670
+ min-width:100%;
1671
+ vertical-align:bottom;
1754
1672
  }
1755
- .v-switch--selected .v-switch__faux__pin{
1756
- left:calc(100% - var(--outer-size));
1673
+ .v-pagination{
1674
+ --pagination-size:var(--pagination-item-size);
1675
+ --pagination-margin:var(--pagination-item-margin);
1676
+ --pagination-font-size:var(--pagination-item-font-size);
1677
+ --pagination-radius:var(--pagination-item-radius);
1678
+ display:flex;
1679
+ align-items:center;
1680
+ overflow:hidden;
1681
+ font-weight:700;
1682
+ line-height:1;
1757
1683
  }
1758
- .v-switch--disabled .v-switch__faux:before{
1759
- background-color:#000;
1760
- opacity:.12;
1684
+ .v-pagination:before{
1685
+ width:var(--pagination-size);
1686
+ margin:var(--pagination-margin);
1687
+ content:none;
1761
1688
  }
1762
- .v-switch--disabled .v-switch__faux__pin:after{
1763
- background-color:#f5f5f5;
1689
+ .v-pagination--left{
1690
+ justify-content:flex-start;
1764
1691
  }
1765
- .v-switch__faux:hover .v-switch__faux__pin:before{
1766
- opacity:.1;
1692
+ .v-pagination--center{
1693
+ justify-content:center;
1767
1694
  }
1768
- .v-switch:focus-within .v-switch__faux__pin:before{
1769
- opacity:.1;
1695
+ .v-pagination--right{
1696
+ justify-content:flex-end;
1770
1697
  }
1771
- .v-textarea__input{
1772
- cursor:text;
1698
+ .v-pagination a.v-pagination__item,.v-pagination__item{
1699
+ -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
1773
1700
  }
1774
- .v-textarea__input__element{
1775
- width:100%;
1776
- min-width:0;
1777
- padding:8px 0;
1778
- margin:0;
1779
- font-size:inherit;
1780
- line-height:inherit;
1781
- letter-spacing:inherit;
1782
- resize:none;
1783
- outline:0;
1784
- background:transparent;
1701
+ .v-pagination a.v-pagination__item::-moz-focus-inner,.v-pagination__item::-moz-focus-inner{
1785
1702
  border:0;
1786
- border-radius:0;
1787
1703
  }
1788
- .v-textarea__input__element:-webkit-autofill:-webkit-autofill,.v-textarea__input__element:-webkit-autofill:-webkit-autofill:active,.v-textarea__input__element:-webkit-autofill:-webkit-autofill:focus,.v-textarea__input__element:-webkit-autofill:-webkit-autofill:hover{
1789
- color:inherit !important;
1790
- transition:background-color 5000s;
1791
- -webkit-text-fill-color:#fff !important;
1704
+ .v-pagination a.v-pagination__item,.v-pagination__item{
1705
+ padding:0;
1706
+ appearance:none;
1707
+ touch-action:manipulation;
1708
+ cursor:pointer;
1709
+ user-select:none;
1710
+ outline:0;
1711
+ border-width:0;
1792
1712
  }
1793
- .v-textarea__input__element::-ms-clear{
1794
- display:none;
1713
+ .v-pagination a.v-pagination__item,.v-pagination a.v-pagination__item:focus,.v-pagination a.v-pagination__item:hover,.v-pagination__item,.v-pagination__item:focus,.v-pagination__item:hover{
1714
+ text-decoration:none;
1795
1715
  }
1796
- .v-textarea__input__element::placeholder{
1797
- font-style:italic;
1798
- color:var(--control-disabled-color);
1716
+ .v-pagination a.v-pagination__item,.v-pagination__item{
1717
+ display:flex;
1718
+ align-items:center;
1719
+ justify-content:center;
1720
+ min-width:var(--pagination-size);
1721
+ height:var(--pagination-size);
1722
+ margin:calc(var(--pagination-margin)*.5);
1723
+ font-size:var(--pagination-font-size);
1724
+ color:inherit;
1725
+ border-radius:var(--pagination-radius);
1726
+ transition:.1s;
1799
1727
  }
1800
- .v-busy-image{
1801
- position:relative;
1802
- display:inline-block;
1803
- max-width:100%;
1804
- vertical-align:bottom;
1728
+ .v-pagination a.v-pagination__item:focus,.v-pagination a.v-pagination__item:hover,.v-pagination__item:focus,.v-pagination__item:hover{
1729
+ background:rgba(0,0,0,.1);
1805
1730
  }
1806
- .v-busy-image--clickable{
1807
- cursor:pointer;
1731
+ .v-pagination a.v-pagination__item--active,.v-pagination a.v-pagination__item--active:active,.v-pagination a.v-pagination__item--active:focus,.v-pagination a.v-pagination__item--active:hover,.v-pagination__item--active,.v-pagination__item--active:active,.v-pagination__item--active:focus,.v-pagination__item--active:hover{
1732
+ color:var(--text-color);
1733
+ pointer-events:none;
1734
+ background-color:var(--main-color);
1735
+ }
1736
+ .v-pagination a.v-pagination__item--disabled,.v-pagination a.v-pagination__item--truncate,.v-pagination__item--disabled,.v-pagination__item--truncate{
1737
+ color:var(--palette-muted) !important;
1738
+ pointer-events:none !important;
1739
+ background:transparent !important;
1740
+ }
1741
+ .v-pagination a.v-pagination__item .v-icon,.v-pagination__item .v-icon{
1742
+ font-size:125%;
1743
+ }
1744
+ .v-pagination--dense .v-pagination__item{
1745
+ --pagination-size:var(--pagination-item-size-dense);
1746
+ --pagination-margin:var(--pagination-item-margin-dense);
1747
+ --pagination-font-size:var(--pagination-item-font-size-dense);
1808
1748
  }
1809
- .v-busy-image--cover{
1810
- background-repeat:no-repeat;
1811
- background-position:50%;
1812
- background-size:cover;
1749
+ .v-pagination--disabled .v-pagination__item{
1750
+ color:var(--palette-muted);
1751
+ pointer-events:none;
1813
1752
  }
1814
- .v-busy-image--loading:before{
1815
- position:absolute;
1816
- inset:0;
1817
- display:block;
1818
- content:"";
1819
- background:rgba(0,0,0,.1);
1820
- animation:v-tiny-image-blink 1.5s ease-in-out infinite normal;
1753
+ .v-pagination--disabled .v-pagination__item:focus,.v-pagination--disabled .v-pagination__item:hover{
1754
+ background:transparent;
1821
1755
  }
1822
- .v-busy-image__node{
1823
- position:relative;
1824
- display:inline-block;
1825
- max-width:100%;
1826
- vertical-align:bottom;
1756
+ .v-pagination--disabled .v-pagination__item--active{
1757
+ background:var(--palette-muted);
1827
1758
  }
1828
- .v-busy-image__slot{
1829
- position:absolute;
1830
- top:0;
1831
- left:0;
1832
- width:100%;
1833
- height:100%;
1834
- pointer-events:none;
1759
+ .v-card{
1760
+ -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
1835
1761
  }
1836
- @keyframes v-tiny-image-blink{
1837
- 0%{
1838
- opacity:1;
1839
- }
1840
- 50%{
1841
- opacity:0;
1842
- }
1843
- to{
1844
- opacity:1;
1845
- }
1762
+ .v-card::-moz-focus-inner{
1763
+ border:0;
1846
1764
  }
1847
- .v-tabs{
1765
+ .v-card{
1848
1766
  position:relative;
1849
1767
  width:100%;
1850
- height:var(--tabs-height);
1851
- overflow:hidden;
1768
+ padding:0;
1769
+ text-align:left;
1770
+ appearance:none;
1771
+ touch-action:manipulation;
1772
+ user-select:none;
1773
+ outline:0;
1774
+ border:0;
1852
1775
  }
1853
- .v-tabs:before{
1776
+ .v-card,.v-card:focus,.v-card:hover{
1777
+ text-decoration:none;
1778
+ }
1779
+ .v-card.clickable{
1780
+ cursor:pointer;
1781
+ }
1782
+ .v-card.clickable:before{
1854
1783
  position:absolute;
1855
- right:0;
1856
- bottom:0;
1857
- left:0;
1858
- display:block;
1859
- height:2px;
1784
+ inset:0;
1860
1785
  content:"";
1861
1786
  background:currentColor;
1862
- opacity:.25;
1787
+ border-radius:inherit;
1788
+ opacity:0;
1789
+ transition:.3s cubic-bezier(.25, .8, .5, 1);
1863
1790
  }
1864
- .v-tabs__scroller{
1865
- width:100%;
1866
- height:calc(var(--tabs-height) + 30px);
1791
+ .v-card.clickable:focus:before,.v-card.clickable:hover:before{
1792
+ opacity:.125;
1867
1793
  }
1868
- .v-tabs__scroller__container{
1869
- padding-bottom:30px;
1794
+ .v-card[aria-disabled=true],.v-card[disabled]{
1795
+ pointer-events:none;
1870
1796
  }
1871
- .v-tabs__content{
1872
- position:relative;
1873
- display:inline-flex;
1874
- align-items:stretch;
1875
- min-width:100%;
1876
- vertical-align:bottom;
1797
+ .v-card[aria-disabled=true]:before,.v-card[disabled]:before{
1798
+ content:none;
1877
1799
  }
1878
1800
  .v-data-table{
1879
1801
  --controls-vertial-margin:0.625em;
@@ -2005,79 +1927,83 @@
2005
1927
  top:0;
2006
1928
  z-index:1;
2007
1929
  }
2008
- .v-tab{
1930
+ .v-text-counter{
1931
+ white-space:nowrap;
1932
+ }
1933
+ .v-avatar{
2009
1934
  -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
2010
1935
  }
2011
- .v-tab::-moz-focus-inner{
1936
+ .v-avatar::-moz-focus-inner{
2012
1937
  border:0;
2013
1938
  }
2014
- .v-tab{
1939
+ .v-avatar{
2015
1940
  padding:0;
2016
1941
  appearance:none;
2017
1942
  touch-action:manipulation;
2018
1943
  cursor:pointer;
1944
+ user-select:none;
2019
1945
  outline:0;
2020
1946
  border-width:0;
2021
1947
  }
2022
- .v-tab,.v-tab:focus,.v-tab:hover{
1948
+ .v-avatar,.v-avatar:focus,.v-avatar:hover{
2023
1949
  text-decoration:none;
2024
1950
  }
2025
- .v-tab{
2026
- --tab-content-color:var(--palette-caption);
2027
- --tab-content-focus-color:var(--main-color);
2028
- --tab-content-opacity:0.7;
2029
- position:relative;
2030
- z-index:3;
2031
- display:flex;
1951
+ .v-avatar{
1952
+ --avatar-radius:50%;
1953
+ --avatar-font-weight:var(--typo-medium-weight);
1954
+ --avatar-base-font-size:var(--typo-base-size);
1955
+ --avatar-font-size:var(--avatar-base-font-size);
1956
+ display:inline-flex;
1957
+ flex-basis:var(--avatar-size);
2032
1958
  align-items:center;
2033
1959
  justify-content:center;
2034
- height:var(--tabs-height);
2035
- padding:0 1.25em;
2036
- font:inherit;
2037
- font-size:var(--tabs-font-size);
2038
- white-space:nowrap;
2039
- user-select:none;
2040
- transition:color .6s;
1960
+ width:var(--avatar-size);
1961
+ min-width:var(--avatar-size);
1962
+ height:var(--avatar-size);
1963
+ overflow:hidden;
1964
+ font-size:var(--avatar-font-size);
1965
+ font-weight:var(--avatar-font-weight);
1966
+ line-height:1;
1967
+ vertical-align:bottom;
1968
+ text-align:center;
1969
+ cursor:default;
1970
+ border-style:solid;
1971
+ border-width:1px;
1972
+ border-radius:var(--avatar-radius);
1973
+ --shadow-color:transparent !important;
1974
+ --focusShadow-color:transparent !important;
2041
1975
  }
2042
- .v-tab:before{
2043
- position:absolute;
2044
- right:0;
2045
- bottom:0;
2046
- left:0;
2047
- z-index:1;
2048
- height:2px;
2049
- content:"";
2050
- background-color:var(--tab-content-focus-color);
2051
- border-radius:inherit;
2052
- transform:scaleX(0);
2053
- transition:all .25s;
1976
+ .v-avatar--clickable{
1977
+ cursor:pointer;
2054
1978
  }
2055
- .v-tab__content{
2056
- position:relative;
2057
- z-index:2;
2058
- display:flex;
2059
- align-items:center;
2060
- line-height:1.2;
2061
- color:var(--tab-content-color);
2062
- text-align:center;
2063
- opacity:var(--tab-content-opacity);
2064
- transition:all .25s ease;
1979
+ .v-avatar--sm{
1980
+ --avatar-size:36px;
1981
+ --avatar-font-size:calc(var(--avatar-base-font-size)*0.75);
2065
1982
  }
2066
- .v-tab__icon{
2067
- margin-right:8px;
2068
- font-size:120%;
1983
+ .v-avatar--md{
1984
+ --avatar-size:48px;
2069
1985
  }
2070
- .v-tab:hover{
2071
- --tab-content-color:var(--tab-content-focus-color);
1986
+ .v-avatar--lg{
1987
+ --avatar-size:62px;
1988
+ --avatar-font-size:calc(var(--avatar-base-font-size)*1.25);
2072
1989
  }
2073
- .v-tab--active{
2074
- --tab-content-color:rgba(0,0,0,.87);
2075
- pointer-events:none;
2076
- background:var(--tabs-color);
2077
- --tab-content-opacity:1;
1990
+ .v-avatar--rounded{
1991
+ --avatar-radius:4px;
2078
1992
  }
2079
- .v-tab--active:before{
2080
- transform:scaleX(1);
1993
+ .v-avatar--tile{
1994
+ --avatar-radius:0;
1995
+ }
1996
+ .v-avatar img,.v-avatar__image{
1997
+ display:inline-flex;
1998
+ width:inherit !important;
1999
+ height:inherit !important;
2000
+ object-fit:cover;
2001
+ border-radius:inherit;
2002
+ }
2003
+ .v-toolbar-menu{
2004
+ height:100%;
2005
+ margin:0;
2006
+ box-shadow:none;
2081
2007
  }
2082
2008
  .v-checkable{
2083
2009
  --outer-size:var(--control-checkable-outer-size);
@@ -2123,47 +2049,209 @@
2123
2049
  }
2124
2050
  .v-checkable__faux__icon{
2125
2051
  position:relative;
2126
- display:block;
2127
- width:var(--icon-size);
2128
- height:var(--icon-size);
2129
- pointer-events:none;
2130
- transform:scale(var(--control-checkable-faux-scale));
2052
+ display:block;
2053
+ width:var(--icon-size);
2054
+ height:var(--icon-size);
2055
+ pointer-events:none;
2056
+ transform:scale(var(--control-checkable-faux-scale));
2057
+ }
2058
+ .v-checkable__faux:before{
2059
+ position:absolute;
2060
+ inset:0;
2061
+ display:block;
2062
+ pointer-events:none;
2063
+ content:"";
2064
+ background:currentColor;
2065
+ border-radius:50%;
2066
+ opacity:0;
2067
+ transition:opacity .2s;
2068
+ }
2069
+ .v-checkable__faux:hover:before{
2070
+ opacity:.1;
2071
+ }
2072
+ .v-checkable--custom-icon .v-checkable__faux{
2073
+ flex-basis:auto;
2074
+ width:auto;
2075
+ }
2076
+ .v-checkable--custom-icon .v-checkable__faux:before{
2077
+ content:none;
2078
+ }
2079
+ .v-checkable:focus-within .v-checkable__faux:before{
2080
+ opacity:.2;
2081
+ }
2082
+ .v-checkable__label{
2083
+ line-height:1.5;
2084
+ }
2085
+ .v-checkable--disabled .v-checkable__label{
2086
+ color:var(--color);
2087
+ }
2088
+ .v-tab{
2089
+ -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
2090
+ }
2091
+ .v-tab::-moz-focus-inner{
2092
+ border:0;
2093
+ }
2094
+ .v-tab{
2095
+ padding:0;
2096
+ appearance:none;
2097
+ touch-action:manipulation;
2098
+ cursor:pointer;
2099
+ outline:0;
2100
+ border-width:0;
2101
+ }
2102
+ .v-tab,.v-tab:focus,.v-tab:hover{
2103
+ text-decoration:none;
2104
+ }
2105
+ .v-tab{
2106
+ --tab-content-color:var(--palette-caption);
2107
+ --tab-content-focus-color:var(--main-color);
2108
+ --tab-content-opacity:0.7;
2109
+ position:relative;
2110
+ z-index:3;
2111
+ display:flex;
2112
+ align-items:center;
2113
+ justify-content:center;
2114
+ height:var(--tabs-height);
2115
+ padding:0 1.25em;
2116
+ font:inherit;
2117
+ font-size:var(--tabs-font-size);
2118
+ white-space:nowrap;
2119
+ user-select:none;
2120
+ transition:color .6s;
2131
2121
  }
2132
- .v-checkable__faux:before{
2122
+ .v-tab:before{
2133
2123
  position:absolute;
2134
- inset:0;
2135
- display:block;
2136
- pointer-events:none;
2124
+ right:0;
2125
+ bottom:0;
2126
+ left:0;
2127
+ z-index:1;
2128
+ height:2px;
2137
2129
  content:"";
2138
- background:currentColor;
2139
- border-radius:50%;
2140
- opacity:0;
2141
- transition:opacity .2s;
2142
- }
2143
- .v-checkable__faux:hover:before{
2144
- opacity:.1;
2130
+ background-color:var(--tab-content-focus-color);
2131
+ border-radius:inherit;
2132
+ transform:scaleX(0);
2133
+ transition:all .25s;
2145
2134
  }
2146
- .v-checkable--custom-icon .v-checkable__faux{
2147
- flex-basis:auto;
2148
- width:auto;
2135
+ .v-tab__content{
2136
+ position:relative;
2137
+ z-index:2;
2138
+ display:flex;
2139
+ align-items:center;
2140
+ line-height:1.2;
2141
+ color:var(--tab-content-color);
2142
+ text-align:center;
2143
+ opacity:var(--tab-content-opacity);
2144
+ transition:all .25s ease;
2149
2145
  }
2150
- .v-checkable--custom-icon .v-checkable__faux:before{
2151
- content:none;
2146
+ .v-tab__icon{
2147
+ margin-right:8px;
2148
+ font-size:120%;
2152
2149
  }
2153
- .v-checkable:focus-within .v-checkable__faux:before{
2154
- opacity:.2;
2150
+ .v-tab:hover{
2151
+ --tab-content-color:var(--tab-content-focus-color);
2155
2152
  }
2156
- .v-checkable__label{
2157
- line-height:1.5;
2153
+ .v-tab--active{
2154
+ --tab-content-color:rgba(0,0,0,.87);
2155
+ pointer-events:none;
2156
+ background:var(--tabs-color);
2157
+ --tab-content-opacity:1;
2158
2158
  }
2159
- .v-checkable--disabled .v-checkable__label{
2160
- color:var(--color);
2159
+ .v-tab--active:before{
2160
+ transform:scaleX(1);
2161
2161
  }
2162
2162
  @media screen and (width >= 320px){
2163
2163
  .v-data-table__controls__pagination{
2164
2164
  flex:0 0 50%;
2165
2165
  width:50%;
2166
2166
  }}
2167
+ }.v-menu{
2168
+ border-radius:2px;
2169
+ box-shadow:var(--menu-shadow);
2170
+ }.v-sheet-modal{
2171
+ --v-sheet-modal-width:90vw;
2172
+ --v-sheet-modal-max-width:none;
2173
+ --v-sheet-background:var(--palette-foundation);
2174
+ position:fixed;
2175
+ top:0;
2176
+ right:0;
2177
+ bottom:0;
2178
+ box-sizing:border-box;
2179
+ display:flex;
2180
+ flex-direction:column;
2181
+ width:var(--v-sheet-modal-width);
2182
+ max-width:var(--v-sheet-modal-max-width);
2183
+ padding:0;
2184
+ outline:0;
2185
+ box-shadow:var(--dialog-shadow);
2186
+ transition:transform var(--v-stack-transition-slowly);
2187
+ }
2188
+
2189
+ .v-sheet-modal__header{
2190
+ position:relative;
2191
+ z-index:1;
2192
+ flex:0 0;
2193
+ background-color:var(--v-sheet-background);
2194
+ }
2195
+
2196
+ .v-sheet-modal__scroller{
2197
+ flex:1 1;
2198
+ -webkit-overflow-scrolling:touch;
2199
+ height:100%;
2200
+ overflow-y:auto;
2201
+ background-color:var(--v-sheet-background);
2202
+ }
2203
+
2204
+ .v-sheet-modal--has-active-child{
2205
+ transform:translateX(calc(-100vw + var(--v-sheet-modal-width)));
2206
+ }
2207
+
2208
+ .v-sheet-modal-enter-active,.v-sheet-modal-leave-active{
2209
+ transition:transform var(--v-stack-transition-slowly);
2210
+ }
2211
+
2212
+ .v-sheet-modal-enter-from,.v-sheet-modal-leave-to{
2213
+ transform:translateX(var(--v-sheet-modal-width));
2214
+ }.v-dialog{
2215
+ position:relative;
2216
+ display:inline-block;
2217
+ min-width:280px;
2218
+ margin:24px;
2219
+ text-align:left;
2220
+ pointer-events:auto;
2221
+ outline:0;
2222
+ border-radius:2px;
2223
+ box-shadow:var(--dialog-shadow);
2224
+ }
2225
+
2226
+ .v-dialog__header{
2227
+ font-size:24px;
2228
+ line-height:1.4;
2229
+ }
2230
+
2231
+ .v-dialog__body,.v-dialog__header{
2232
+ box-sizing:border-box;
2233
+ padding:16px;
2234
+ }
2235
+
2236
+ .v-dialog__body{
2237
+ font-size:16px;
2238
+ line-height:1.5;
2239
+ }
2240
+
2241
+ .v-dialog--dense .v-dialog__body{
2242
+ padding-bottom:0;
2243
+ }
2244
+
2245
+ .v-dialog__actions{
2246
+ box-sizing:border-box;
2247
+ display:flex;
2248
+ align-items:center;
2249
+ justify-content:flex-end;
2250
+ padding:8px;
2251
+ }
2252
+
2253
+ .v-dialog--dense .v-dialog__actions{
2254
+ padding-top:0;
2167
2255
  }@layer vui-normalize, vui-color-scheme, vue-disabled-reason, vue-loading, vue-app-layout, vui;
2168
2256
  @layer vui-normalize{
2169
2257
  /*!
@@ -2296,99 +2384,6 @@
2296
2384
  button{
2297
2385
  background-color:transparent;
2298
2386
  }
2299
- }.v-dialog{
2300
- position:relative;
2301
- display:inline-block;
2302
- min-width:280px;
2303
- margin:24px;
2304
- text-align:left;
2305
- pointer-events:auto;
2306
- outline:0;
2307
- border-radius:2px;
2308
- box-shadow:var(--dialog-shadow);
2309
- }
2310
-
2311
- .v-dialog__header{
2312
- font-size:24px;
2313
- line-height:1.4;
2314
- }
2315
-
2316
- .v-dialog__body,.v-dialog__header{
2317
- box-sizing:border-box;
2318
- padding:16px;
2319
- }
2320
-
2321
- .v-dialog__body{
2322
- font-size:16px;
2323
- line-height:1.5;
2324
- }
2325
-
2326
- .v-dialog--dense .v-dialog__body{
2327
- padding-bottom:0;
2328
- }
2329
-
2330
- .v-dialog__actions{
2331
- box-sizing:border-box;
2332
- display:flex;
2333
- align-items:center;
2334
- justify-content:flex-end;
2335
- padding:8px;
2336
- }
2337
-
2338
- .v-dialog--dense .v-dialog__actions{
2339
- padding-top:0;
2340
- }.v-sheet-modal{
2341
- --v-sheet-modal-width:90vw;
2342
- --v-sheet-modal-max-width:none;
2343
- --v-sheet-background:var(--palette-foundation);
2344
- position:fixed;
2345
- top:0;
2346
- right:0;
2347
- bottom:0;
2348
- box-sizing:border-box;
2349
- display:flex;
2350
- flex-direction:column;
2351
- width:var(--v-sheet-modal-width);
2352
- max-width:var(--v-sheet-modal-max-width);
2353
- padding:0;
2354
- outline:0;
2355
- box-shadow:var(--dialog-shadow);
2356
- transition:transform var(--v-stack-transition-slowly);
2357
- }
2358
-
2359
- .v-sheet-modal__header{
2360
- position:relative;
2361
- z-index:1;
2362
- flex:0 0;
2363
- background-color:var(--v-sheet-background);
2364
- }
2365
-
2366
- .v-sheet-modal__scroller{
2367
- flex:1 1;
2368
- -webkit-overflow-scrolling:touch;
2369
- height:100%;
2370
- overflow-y:auto;
2371
- background-color:var(--v-sheet-background);
2372
- }
2373
-
2374
- .v-sheet-modal--has-active-child{
2375
- transform:translateX(calc(-100vw + var(--v-sheet-modal-width)));
2376
- }
2377
-
2378
- .v-sheet-modal-enter-active,.v-sheet-modal-leave-active{
2379
- transition:transform var(--v-stack-transition-slowly);
2380
- }
2381
-
2382
- .v-sheet-modal-enter-from,.v-sheet-modal-leave-to{
2383
- transform:translateX(var(--v-sheet-modal-width));
2384
- }
2385
- @keyframes v-skelton-loader-bone-loading{
2386
- to{
2387
- transform:translateX(100%);
2388
- }
2389
- }.v-menu{
2390
- border-radius:2px;
2391
- box-shadow:var(--menu-shadow);
2392
2387
  }.v-snackbar{
2393
2388
  font-size:14px;
2394
2389
  box-shadow:var(--snackbar-shadow);
@@ -2437,3 +2432,8 @@
2437
2432
  display:inline-block;
2438
2433
  padding:var(--tooltip-padding);
2439
2434
  }
2435
+ @keyframes v-skelton-loader-bone-loading{
2436
+ to{
2437
+ transform:translateX(100%);
2438
+ }
2439
+ }