@fastkit/vui 1.4.0-next.1 → 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
@@ -1,138 +1,77 @@
1
- @layer vui-normalize, vui-color-scheme, vue-disabled-reason, vue-loading, vue-app-layout, vui;
2
-
3
- @layer vui-normalize{
4
- /*!
5
- * Forked from
6
- * normalize.css v8.0.1 | MIT License | https://github.com/necolas/normalize.css
7
- */
8
- *,:after,:before{
9
- box-sizing:border-box;
10
- }
11
- html{
12
- line-height:1.15;
13
- -webkit-text-size-adjust:100%;
14
- }
15
- body{
16
- margin:0;
17
- }
18
- main{
1
+ @layer vui{
2
+ .v-form-selector__body{
19
3
  display:block;
20
4
  }
21
- h1{
22
- margin:.67em 0;
23
- font-size:2em;
24
- }
25
- hr{
26
- height:0;
27
- overflow:visible;
28
- }
29
- pre{
30
- font-family:monospace,monospace;
31
- font-size:1em;
32
- }
33
- a{
34
- background-color:transparent;
35
- }
36
- abbr[title]{
37
- text-decoration:underline;
38
- text-decoration:underline dotted;
39
- border-bottom:none;
40
- }
41
- b,strong{
42
- font-weight:bolder;
43
- }
44
- code,kbd,samp{
45
- font-family:monospace,monospace;
46
- font-size:1em;
47
- }
48
- small{
49
- font-size:80%;
50
- }
51
- sub,sup{
52
- position:relative;
53
- font-size:75%;
54
- line-height:0;
55
- vertical-align:baseline;
56
- }
57
- sub{
58
- bottom:-.25em;
59
- }
60
- sup{
61
- top:-.5em;
62
- }
63
- img{
64
- border-style:none;
65
- }
66
- button,input,optgroup,select,textarea{
67
- margin:0;
68
- font-family:inherit;
69
- font-size:100%;
70
- line-height:1.15;
71
- color:inherit;
72
- }
73
- button,input{
74
- overflow:visible;
75
- }
76
- button,select{
77
- text-transform:none;
78
- }
79
- [type=button],[type=reset],[type=submit],button{
80
- -webkit-appearance:button;
5
+ .v-form-selector__placeholder{
6
+ display:flex;
7
+ align-items:center;
8
+ margin-top:8px;
9
+ font-style:italic;
10
+ opacity:.5;
81
11
  }
82
- [type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{
83
- padding:0;
84
- border-style:none;
12
+ .v-form-selector__placeholder--error{
13
+ color:var(--main-color);
14
+ opacity:1;
85
15
  }
86
- [type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{
87
- outline:1px dotted ButtonText;
16
+ .v-form-selector--stacked .v-form-selector__body{
17
+ display:flex;
18
+ flex-direction:column;
19
+ align-items:flex-start;
88
20
  }
89
- fieldset{
90
- padding:.35em .75em .625em;
21
+ .v-text-field__input{
22
+ cursor:text;
91
23
  }
92
- legend{
93
- display:table;
94
- max-width:100%;
24
+ .v-text-field__input__element{
25
+ width:100%;
26
+ min-width:0;
95
27
  padding:0;
96
- color:inherit;
97
- white-space:normal;
98
- }
99
- progress{
100
- vertical-align:baseline;
101
- }
102
- textarea{
103
- overflow:auto;
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;
104
39
  }
105
- [type=checkbox],[type=radio]{
106
- padding:0;
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;
107
44
  }
108
- [type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{
109
- height:auto;
45
+ .v-text-field__input__element::-ms-clear{
46
+ display:none;
110
47
  }
111
- [type=search]{
112
- -webkit-appearance:textfield;
113
- outline-offset:-2px;
48
+ .v-text-field__input__element::placeholder{
49
+ font-style:italic;
50
+ color:var(--control-disabled-color);
114
51
  }
115
- [type=search]::-webkit-search-decoration{
116
- -webkit-appearance:none;
52
+ .v-button-group{
53
+ display:inline-flex;
54
+ align-items:stretch;
117
55
  }
118
- ::-webkit-file-upload-button{
119
- -webkit-appearance:button;
120
- font:inherit;
56
+ .v-button-group__item{
57
+ position:relative;
58
+ margin:0;
121
59
  }
122
- details{
123
- display:block;
60
+ .v-button-group__item--has-left{
61
+ border-top-left-radius:0;
62
+ border-bottom-left-radius:0;
124
63
  }
125
- summary{
126
- display:list-item;
64
+ .v-button-group__item--has-right{
65
+ border-top-right-radius:0;
66
+ border-bottom-right-radius:0;
127
67
  }
128
- [hidden],template{
129
- display:none;
68
+ .v-button-group__item:focus{
69
+ z-index:1;
130
70
  }
131
- button{
132
- background-color:transparent;
71
+ .v-grid-container{
72
+ display:flex;
73
+ flex-wrap:wrap;
133
74
  }
134
- }
135
- @layer vui{
136
75
  :root{
137
76
  --root-em:16px;
138
77
  --root-spacing:8px;
@@ -594,75 +533,105 @@
594
533
  .wysiwyg p{
595
534
  margin:0;
596
535
  }
597
- .v-form-selector__body{
598
- display:block;
599
- }
600
- .v-form-selector__placeholder{
601
- 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;
602
543
  align-items:center;
603
- margin-top:8px;
604
- font-style:italic;
605
- opacity:.5;
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);
549
+ overflow:hidden;
550
+ font:inherit;
551
+ font-weight:500;
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;
606
565
  }
607
- .v-form-selector__placeholder--error{
608
- color:var(--main-color);
609
- opacity:1;
566
+ .v-button--align-left{
567
+ justify-content:flex-start;
610
568
  }
611
- .v-form-selector--stacked .v-form-selector__body{
612
- display:flex;
613
- flex-direction:column;
614
- align-items:flex-start;
569
+ .v-button--align-right{
570
+ justify-content:flex-end;
615
571
  }
616
- .v-skelton-loader-bone{
617
- position:relative;
618
- overflow:hidden;
619
- cursor:progress;
620
- background:rgba(0,0,0,.12);
621
- border-radius:inherit;
572
+ .v-button--plain{
573
+ color:inherit !important;
622
574
  }
623
- .v-skelton-loader-bone:after{
624
- position:absolute;
625
- top:0;
626
- right:0;
627
- left:0;
628
- z-index:1;
629
- height:100%;
630
- content:"";
631
- background:linear-gradient(90deg, hsla(0,0%,100%,0), hsla(0,0%,100%,.3), hsla(0,0%,100%,0));
632
- transform:translateX(-100%);
633
- animation:v-skelton-loader-bone-loading 1.5s infinite;
575
+ .v-button--plain.v-button--guard-in-progress,.v-button--plain[aria-disabled=true],.v-button--plain[disabled]{
576
+ opacity:.5;
634
577
  }
635
- .v-grid-container{
636
- display:flex;
637
- flex-wrap:wrap;
578
+ .v-button--sm{
579
+ font-size:calc(var(--root-em)*.75);
638
580
  }
639
- .v-drawer-layout{
640
- display:block;
641
- width:100%;
642
- height:100%;
581
+ .v-button--md{
582
+ font-size:calc(var(--root-em)*.875);
643
583
  }
644
- .v-drawer-layout__inner{
645
- display:flex;
646
- flex-direction:column;
647
- align-items:stretch;
648
- width:100%;
649
- height:100%;
584
+ .v-button--lg{
585
+ font-size:calc(var(--root-em)*1.375);
650
586
  }
651
- .v-drawer-layout__header{
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;
594
+ }
595
+ .v-button--icon{
596
+ min-width:1.9285714286em;
597
+ margin:calc(var(--root-em)*.125);
598
+ --height:1.9285714286em;
599
+ --padding:0em;
600
+ }
601
+ .v-button::-moz-focus-inner{
602
+ border:0;
603
+ }
604
+ .v-button.v-button--guard-in-progress,.v-button[aria-disabled=true],.v-button[disabled]{
605
+ cursor:default;
606
+ }
607
+ .v-button--spacer-left{
608
+ margin-left:auto;
609
+ }
610
+ .v-button--spacer-right{
611
+ margin-right:auto;
612
+ }
613
+ .v-button__content{
652
614
  display:flex;
653
- flex:0 0 var(--val-topToolbar-height);
654
615
  align-items:center;
655
616
  justify-content:center;
656
- height:var(--val-topToolbar-height);
617
+ justify-self:stretch;
618
+ pointer-events:none;
657
619
  }
658
- .v-drawer-layout__body{
659
- flex:1 1 100%;
660
- overflow:auto;
661
- -webkit-overflow-scrolling:touch;
620
+ .v-button--loading .v-button__content{
621
+ opacity:0;
662
622
  }
663
- .v-drawer-layout__footer{
664
- flex:0 0 auto;
665
- margin-top:auto;
623
+ .v-button__icon--start{
624
+ margin-right:var(--icon-margin);
625
+ }
626
+ .v-button__icon--end{
627
+ margin-left:var(--icon-margin);
628
+ }
629
+ .v-button__loading{
630
+ position:absolute;
631
+ top:50%;
632
+ left:50%;
633
+ z-index:1;
634
+ transform:translate(-50%, -50%);
666
635
  }
667
636
  .v-paper{
668
637
  --paper-radius:var(--control-field-radius);
@@ -696,112 +665,110 @@
696
665
  border-bottom-right-radius:inherit;
697
666
  border-bottom-left-radius:inherit;
698
667
  }
699
- .v-button-group{
700
- display:inline-flex;
701
- align-items:stretch;
702
- }
703
- .v-button-group__item{
704
- position:relative;
705
- margin:0;
668
+ .v-navigation__caption{
669
+ display:block;
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;
706
675
  }
707
- .v-button-group__item--has-left{
708
- border-top-left-radius:0;
709
- border-bottom-left-radius:0;
676
+ .v-grid-item{
677
+ display:block;
710
678
  }
711
- .v-button-group__item--has-right{
712
- border-top-right-radius:0;
713
- border-bottom-right-radius:0;
679
+ .v-busy-image{
680
+ position:relative;
681
+ display:inline-block;
682
+ max-width:100%;
683
+ vertical-align:bottom;
714
684
  }
715
- .v-button-group__item:focus{
716
- z-index:1;
685
+ .v-busy-image--clickable{
686
+ cursor:pointer;
717
687
  }
718
- .v-icon{
719
- display:inline-flex;
720
- align-items:center;
721
- justify-content:center;
722
- width:1.25em;
723
- aspect-ratio:1/1;
724
- user-select:none;
688
+ .v-busy-image--cover{
689
+ background-repeat:no-repeat;
690
+ background-position:50%;
691
+ background-size:cover;
725
692
  }
726
- .v-icon--clickable{
727
- cursor:pointer;
693
+ .v-busy-image--loading:before{
694
+ position:absolute;
695
+ inset:0;
696
+ display:block;
697
+ content:"";
698
+ background:rgba(0,0,0,.1);
699
+ animation:v-tiny-image-blink 1.5s ease-in-out infinite normal;
728
700
  }
729
- .v-icon__body{
730
- display:inline-flex;
731
- align-items:center;
732
- justify-content:center;
733
- transition:transform .15s linear;
701
+ .v-busy-image__node{
702
+ position:relative;
703
+ display:inline-block;
704
+ max-width:100%;
705
+ vertical-align:bottom;
734
706
  }
735
- .v-avatar{
736
- -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
707
+ .v-busy-image__slot{
708
+ position:absolute;
709
+ top:0;
710
+ left:0;
711
+ width:100%;
712
+ height:100%;
713
+ pointer-events:none;
737
714
  }
738
- .v-avatar::-moz-focus-inner{
739
- border:0;
715
+ @keyframes v-tiny-image-blink{
716
+ 0%{
717
+ opacity:1;
718
+ }
719
+ 50%{
720
+ opacity:0;
721
+ }
722
+ to{
723
+ opacity:1;
724
+ }
740
725
  }
741
- .v-avatar{
742
- padding:0;
743
- appearance:none;
744
- touch-action:manipulation;
745
- cursor:pointer;
746
- user-select:none;
747
- outline:0;
748
- border-width:0;
726
+ .v-drawer-layout{
727
+ display:block;
728
+ width:100%;
729
+ height:100%;
749
730
  }
750
- .v-avatar,.v-avatar:focus,.v-avatar:hover{
751
- text-decoration:none;
731
+ .v-drawer-layout__inner{
732
+ display:flex;
733
+ flex-direction:column;
734
+ align-items:stretch;
735
+ width:100%;
736
+ height:100%;
752
737
  }
753
- .v-avatar{
754
- --avatar-radius:50%;
755
- --avatar-font-weight:var(--typo-medium-weight);
756
- --avatar-base-font-size:var(--typo-base-size);
757
- --avatar-font-size:var(--avatar-base-font-size);
758
- display:inline-flex;
759
- flex-basis:var(--avatar-size);
738
+ .v-drawer-layout__header{
739
+ display:flex;
740
+ flex:0 0 var(--val-topToolbar-height);
760
741
  align-items:center;
761
742
  justify-content:center;
762
- width:var(--avatar-size);
763
- min-width:var(--avatar-size);
764
- height:var(--avatar-size);
765
- overflow:hidden;
766
- font-size:var(--avatar-font-size);
767
- font-weight:var(--avatar-font-weight);
768
- line-height:1;
769
- vertical-align:bottom;
770
- text-align:center;
771
- cursor:default;
772
- border-style:solid;
773
- border-width:1px;
774
- border-radius:var(--avatar-radius);
775
- --shadow-color:transparent !important;
776
- --focusShadow-color:transparent !important;
777
- }
778
- .v-avatar--clickable{
779
- cursor:pointer;
780
- }
781
- .v-avatar--sm{
782
- --avatar-size:36px;
783
- --avatar-font-size:calc(var(--avatar-base-font-size)*0.75);
743
+ height:var(--val-topToolbar-height);
784
744
  }
785
- .v-avatar--md{
786
- --avatar-size:48px;
745
+ .v-drawer-layout__body{
746
+ flex:1 1 100%;
747
+ overflow:auto;
748
+ -webkit-overflow-scrolling:touch;
787
749
  }
788
- .v-avatar--lg{
789
- --avatar-size:62px;
790
- --avatar-font-size:calc(var(--avatar-base-font-size)*1.25);
750
+ .v-drawer-layout__footer{
751
+ flex:0 0 auto;
752
+ margin-top:auto;
791
753
  }
792
- .v-avatar--rounded{
793
- --avatar-radius:4px;
754
+ .v-disabled-reason{
755
+ -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
794
756
  }
795
- .v-avatar--tile{
796
- --avatar-radius:0;
757
+ .v-disabled-reason::-moz-focus-inner{
758
+ border:0;
797
759
  }
798
- .v-avatar img,.v-avatar__image{
799
- display:inline-flex;
800
- width:inherit !important;
801
- height:inherit !important;
802
- object-fit:cover;
760
+ .v-disabled-reason{
761
+ position:absolute;
762
+ inset:0;
763
+ z-index:10;
764
+ display:block;
765
+ pointer-events:none;
766
+ cursor:default;
803
767
  border-radius:inherit;
804
768
  }
769
+ .v-disabled-reason[tabindex]:not([tabindex^="-"]){
770
+ pointer-events:auto;
771
+ }
805
772
  .v-navigation-item--opened{
806
773
  --tile-background:var(--tile-active-background);
807
774
  --tile-text-color:var(--tile-text-active-color);
@@ -821,36 +788,97 @@
821
788
  .v-navigation-item--depth-3{
822
789
  --depth-padding:calc(var(--list-tile-padding)*4);
823
790
  }
824
- .v-text-field__input{
825
- cursor:text;
791
+ .v-form-control{
792
+ display:flex;
793
+ flex-direction:column;
794
+ max-width:100%;
795
+ margin:var(--control-horizontal-margin) 0;
796
+ --my-label-color:var(--control-label-color);
797
+ --my-message-color:var(--control-message-color);
826
798
  }
827
- .v-text-field__input__element{
828
- width:100%;
829
- min-width:0;
830
- padding:0;
831
- margin:0;
832
- overflow:hidden;
833
- text-overflow:ellipsis;
834
- font-size:inherit;
835
- line-height:inherit;
836
- letter-spacing:inherit;
837
- white-space:nowrap;
838
- outline:0;
839
- background:transparent;
840
- border:0;
841
- border-radius:0;
799
+ .v-form-control--invalid:not(.v-form-control--readonly){
800
+ --my-label-color:var(--main-color);
801
+ --my-message-color:var(--main-color);
842
802
  }
843
- .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{
844
- color:inherit !important;
845
- transition:background-color 5000s;
846
- -webkit-text-fill-color:#fff !important;
803
+ .v-form-control--disabled{
804
+ --my-label-color:var(--control-disabled-color);
805
+ --my-message-color:var(--control-disabled-color);
847
806
  }
848
- .v-text-field__input__element::-ms-clear{
849
- display:none;
807
+ .v-form-control__label{
808
+ display:flex;
809
+ align-items:center;
810
+ align-self:flex-start;
811
+ font-size:var(--control-label-font-size);
812
+ font-weight:var(--control-label-font-weight);
813
+ line-height:var(--control-label-height);
814
+ color:var(--my-label-color);
815
+ letter-spacing:.00938em;
850
816
  }
851
- .v-text-field__input__element::placeholder{
852
- font-style:italic;
853
- color:var(--control-disabled-color);
817
+ .v-form-control__label__hinttip{
818
+ display:inline-flex;
819
+ align-items:center;
820
+ margin-top:-.2em;
821
+ margin-left:.6em;
822
+ font-size:80%;
823
+ line-height:1;
824
+ color:inherit;
825
+ letter-spacing:normal;
826
+ text-decoration:none;
827
+ cursor:pointer;
828
+ }
829
+ .v-form-control__label__hinttip__icon{
830
+ position:relative;
831
+ display:flex;
832
+ align-items:center;
833
+ justify-content:center;
834
+ font-size:120%;
835
+ text-decoration:none !important;
836
+ }
837
+ .v-form-control__label__hinttip:focus .v-form-control__label__hinttip__icon:before,.v-form-control__label__hinttip:hover .v-form-control__label__hinttip__icon:before{
838
+ opacity:.1;
839
+ }
840
+ .v-form-control__label__hinttip__hint{
841
+ font-size:calc(var(--root-em)*.75);
842
+ }
843
+ .v-form-control__info{
844
+ display:flex;
845
+ padding-top:3px;
846
+ }
847
+ .v-form-control__appends,.v-form-control__message{
848
+ margin:0 var(--control-message-horizontal-margin);
849
+ font-size:var(--control-message-font-size);
850
+ line-height:1.66;
851
+ color:var(--my-message-color);
852
+ }
853
+ .v-form-control__message{
854
+ flex:1 0;
855
+ }
856
+ .v-form-control__appends{
857
+ flex:0 1;
858
+ margin-left:auto;
859
+ }
860
+ .v-hero{
861
+ --hero-background-color:var(--main-color);
862
+ --hero-text-color:var(--text-color);
863
+ display:flex;
864
+ align-items:center;
865
+ padding:20px 30px;
866
+ margin:0;
867
+ color:var(--hero-text-color);
868
+ background-color:var(--hero-background-color);
869
+ }
870
+ .v-hero__title{
871
+ flex:1 1 100%;
872
+ margin:0;
873
+ font-size:1.75rem;
874
+ font-weight:300;
875
+ line-height:1;
876
+ color:inherit;
877
+ }
878
+ .v-hero__adornment{
879
+ flex:0 0 auto;
880
+ padding-left:10px;
881
+ margin-left:auto;
854
882
  }
855
883
  .v-chip{
856
884
  -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
@@ -928,241 +956,299 @@
928
956
  .v-chip .v-avatar{
929
957
  --avatar-size:14px;
930
958
  }
931
- .v-button{
932
- --padding:1em;
933
- --height:2.5714285714em;
934
- --icon-margin:0.6em;
959
+ .v-skelton-loader-bone{
935
960
  position:relative;
936
- display:inline-flex;
937
- flex:0 0 auto;
938
- align-items:center;
939
- justify-content:center;
940
- min-width:calc(var(--root-em)*4);
941
- height:var(--height);
942
- padding:0 var(--padding);
943
- margin:calc(var(--root-em)*.375) calc(var(--root-em)*.5);
944
961
  overflow:hidden;
945
- font:inherit;
946
- font-weight:500;
947
- line-height:1;
948
- vertical-align:bottom;
949
- text-transform:uppercase;
950
- letter-spacing:.0892857143em;
951
- text-decoration:none;
952
- appearance:none;
953
- cursor:pointer;
954
- user-select:none;
955
- outline:0;
956
- border-style:solid;
957
- border-width:1px;
958
- border-radius:var(--control-field-radius);
959
- transition:.3s cubic-bezier(.25, .8, .5, 1),color 1ms;
960
- }
961
- .v-button--align-left{
962
- justify-content:flex-start;
963
- }
964
- .v-button--align-right{
965
- justify-content:flex-end;
966
- }
967
- .v-button--plain{
968
- color:inherit !important;
969
- }
970
- .v-button--plain.v-button--guard-in-progress,.v-button--plain[aria-disabled=true],.v-button--plain[disabled]{
971
- opacity:.5;
972
- }
973
- .v-button--sm{
974
- font-size:calc(var(--root-em)*.75);
975
- }
976
- .v-button--md{
977
- font-size:calc(var(--root-em)*.875);
962
+ cursor:progress;
963
+ background:rgba(0,0,0,.12);
964
+ border-radius:inherit;
978
965
  }
979
- .v-button--lg{
980
- font-size:calc(var(--root-em)*1.375);
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;
981
977
  }
982
- .v-button--rounded{
983
- --padding:0;
984
- min-width:0;
985
- aspect-ratio:1/1;
986
- margin:calc(var(--root-em)*.125);
987
- border-radius:50%;
988
- --height:auto;
978
+ .v-breadcrumbs{
979
+ display:block;
980
+ margin:1.5em auto;
981
+ font-size:var(--breadcrumbs-font-size);
989
982
  }
990
- .v-button--icon{
991
- min-width:1.9285714286em;
992
- margin:calc(var(--root-em)*.125);
993
- --height:1.9285714286em;
994
- --padding:0em;
983
+ .v-breadcrumbs__list{
984
+ display:inline-flex;
985
+ flex-wrap:wrap;
986
+ align-items:center;
987
+ vertical-align:bottom;
995
988
  }
996
- .v-button::-moz-focus-inner{
997
- border:0;
989
+ .v-breadcrumbs__divider,.v-breadcrumbs__item,.v-breadcrumbs__list{
990
+ padding:0;
991
+ margin:0;
992
+ list-style:none;
998
993
  }
999
- .v-button.v-button--guard-in-progress,.v-button[aria-disabled=true],.v-button[disabled]{
1000
- cursor:default;
994
+ .v-breadcrumbs__link{
995
+ display:inline-flex;
996
+ align-items:center;
997
+ vertical-align:middle;
998
+ white-space:nowrap;
999
+ text-decoration:none;
1001
1000
  }
1002
- .v-button--spacer-left{
1003
- margin-left:auto;
1001
+ .v-breadcrumbs__item--disabled .v-breadcrumbs__link{
1002
+ color:inherit;
1003
+ pointer-events:none;
1004
1004
  }
1005
- .v-button--spacer-right{
1006
- margin-right:auto;
1005
+ .v-breadcrumbs__icon{
1006
+ margin-right:.2em;
1007
+ font-size:140%;
1007
1008
  }
1008
- .v-button__content{
1009
+ .v-breadcrumbs__divider{
1010
+ position:relative;
1011
+ top:1px;
1009
1012
  display:flex;
1010
1013
  align-items:center;
1011
1014
  justify-content:center;
1012
- justify-self:stretch;
1013
- pointer-events:none;
1015
+ margin:0 1.25em;
1014
1016
  }
1015
- .v-button--loading .v-button__content{
1016
- opacity:0;
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);
1017
1025
  }
1018
- .v-button__icon--start{
1019
- margin-right:var(--icon-margin);
1026
+ .v-radio{
1027
+ --my-color:var(--color);
1020
1028
  }
1021
- .v-button__icon--end{
1022
- margin-left:var(--icon-margin);
1029
+ .v-radio__faux{
1030
+ position:relative;
1031
+ display:block;
1032
+ width:100%;
1033
+ height:100%;
1034
+ transition:border-color .2s,background-color .2s;
1023
1035
  }
1024
- .v-button__loading{
1036
+ .v-radio__faux:after,.v-radio__faux:before{
1025
1037
  position:absolute;
1038
+ display:block;
1039
+ content:"";
1040
+ border-radius:100%;
1041
+ }
1042
+ .v-radio__faux:before{
1043
+ inset:0;
1044
+ border:2px solid;
1045
+ }
1046
+ .v-radio__faux:after{
1026
1047
  top:50%;
1027
1048
  left:50%;
1028
- z-index:1;
1029
- transform:translate(-50%, -50%);
1049
+ width:50%;
1050
+ height:50%;
1051
+ background:currentColor;
1052
+ transform:translate(-50%, -50%) scale(0);
1053
+ transition:transform .2s;
1030
1054
  }
1031
- .v-grid-item{
1032
- display:block;
1055
+ .v-radio--selected .v-radio__faux:after{
1056
+ transform:translate(-50%, -50%) scale(1);
1033
1057
  }
1034
- .v-busy-image{
1035
- position:relative;
1036
- display:inline-block;
1037
- max-width:100%;
1038
- vertical-align:bottom;
1058
+ .v-checkbox{
1059
+ --my-border-color:var(--color);
1060
+ --my-faux-bg-color:transparent;
1039
1061
  }
1040
- .v-busy-image--clickable{
1041
- cursor:pointer;
1062
+ .v-checkbox--indeterminate,.v-checkbox--selected{
1063
+ --my-border-color:transparent;
1064
+ --my-faux-bg-color:var(--color);
1042
1065
  }
1043
- .v-busy-image--cover{
1044
- background-repeat:no-repeat;
1045
- background-position:50%;
1046
- background-size:cover;
1047
- }
1048
- .v-busy-image--loading:before{
1049
- position:absolute;
1050
- inset:0;
1066
+ .v-checkbox__faux{
1051
1067
  display:block;
1052
- content:"";
1053
- background:rgba(0,0,0,.1);
1054
- animation:v-tiny-image-blink 1.5s ease-in-out infinite normal;
1068
+ width:100%;
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;
1055
1075
  }
1056
- .v-busy-image__node{
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);
1078
+ }
1079
+ .v-control-field{
1057
1080
  position:relative;
1058
- display:inline-block;
1059
- max-width:100%;
1060
- vertical-align:bottom;
1081
+ display:inline-flex;
1082
+ align-items:center;
1083
+ width:100%;
1084
+ min-width:0;
1085
+ height:var(--control-field-height);
1086
+ min-height:var(--control-field-height);
1087
+ padding:0 8px;
1088
+ font-size:var(--control-field-font-size);
1089
+ line-height:var(--control-field-line-height);
1090
+ letter-spacing:var(--control-field-letter-spacing);
1091
+ --my-bottom-color:var(--control-field-bottom-color);
1092
+ --my-bottom-hover-color:var(--control-field-bottom-hover-color);
1093
+ --my-focused-color:var(--main-color);
1094
+ --my-fill-color:var(--control-field-fill-color);
1095
+ --my-fill-hover-color:var(--control-field-fill-hover-color);
1096
+ --my-outline-color:var(--control-field-outline-color);
1097
+ --my-outline-hover-color:var(--control-field-outline-hover-color);
1061
1098
  }
1062
- .v-busy-image__slot{
1099
+ .v-control-field--invalid:not(.v-control-field--disabled):not(.v-control-field--readonly){
1100
+ --my-bottom-color:var(--main-color);
1101
+ --my-bottom-hover-color:var(--main-color);
1102
+ --my-outline-color:var(--main-color);
1103
+ --my-outline-hover-color:var(--main-color);
1104
+ }
1105
+ .v-control-field--readonly{
1106
+ cursor:default;
1107
+ }
1108
+ .v-control-field--disabled{
1109
+ color:var(--control-disabled-color);
1110
+ pointer-events:none;
1111
+ user-select:none;
1112
+ }
1113
+ .v-control-field:after,.v-control-field:before{
1063
1114
  position:absolute;
1064
- top:0;
1115
+ right:0;
1116
+ bottom:0;
1065
1117
  left:0;
1066
- width:100%;
1067
- height:100%;
1068
1118
  pointer-events:none;
1119
+ content:"";
1069
1120
  }
1070
- @keyframes v-tiny-image-blink{
1071
- 0%{
1072
- opacity:1;
1073
- }
1074
- 50%{
1075
- opacity:0;
1076
- }
1077
- to{
1078
- opacity:1;
1079
- }
1121
+ .v-control-field:before{
1122
+ height:1px;
1123
+ border-bottom:1px solid var(--my-bottom-color);
1124
+ transition:border-color .2s cubic-bezier(.4, 0, .2, 1) 0s;
1080
1125
  }
1081
- .v-pagination{
1082
- --pagination-size:var(--pagination-item-size);
1083
- --pagination-margin:var(--pagination-item-margin);
1084
- --pagination-font-size:var(--pagination-item-font-size);
1085
- --pagination-radius:var(--pagination-item-radius);
1126
+ .v-control-field:after{
1127
+ height:2px;
1128
+ background:var(--my-focused-color);
1129
+ transform:scaleX(0);
1130
+ transition:transform .2s cubic-bezier(0, 0, .2, 1) 0s;
1131
+ }
1132
+ .v-control-field--focused,.v-control-field:focus-within{
1133
+ --my-outline-color:var(--my-focused-color);
1134
+ --my-outline-hover-color:var(--my-focused-color);
1135
+ outline:none;
1136
+ }
1137
+ .v-control-field--focused:after,.v-control-field:focus-within:after{
1138
+ transform:scaleX(1);
1139
+ }
1140
+ .v-control-field--auto-height{
1141
+ height:auto;
1142
+ }
1143
+ .v-control-field__body{
1086
1144
  display:flex;
1087
- align-items:center;
1088
- overflow:hidden;
1089
- font-weight:700;
1090
- line-height:1;
1145
+ flex:1 1 auto;
1146
+ align-items:stretch;
1147
+ align-self:stretch;
1148
+ margin:0;
1091
1149
  }
1092
- .v-pagination:before{
1093
- width:var(--pagination-size);
1094
- margin:var(--pagination-margin);
1095
- content:none;
1150
+ .v-control-field--flat{
1151
+ padding-right:0;
1152
+ padding-left:0;
1096
1153
  }
1097
- .v-pagination--left{
1098
- justify-content:flex-start;
1154
+ .v-control-field--filled{
1155
+ background-color:var(--my-fill-color);
1156
+ border-top-left-radius:var(--control-field-radius);
1157
+ border-top-right-radius:var(--control-field-radius);
1158
+ transition:background-color .2s cubic-bezier(0, 0, .2, 1) 0s;
1099
1159
  }
1100
- .v-pagination--center{
1101
- justify-content:center;
1160
+ .v-control-field--filled:hover:not(:focus-within){
1161
+ background-color:var(--my-fill-hover-color);
1102
1162
  }
1103
- .v-pagination--right{
1104
- justify-content:flex-end;
1163
+ .v-control-field--filled:hover:before,.v-control-field--flat:hover:before{
1164
+ border-color:var(--my-bottom-hover-color);
1105
1165
  }
1106
- .v-pagination a.v-pagination__item,.v-pagination__item{
1107
- -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
1166
+ .v-control-field--flat:hover:before{
1167
+ height:2px;
1168
+ border-bottom-width:2px;
1108
1169
  }
1109
- .v-pagination a.v-pagination__item::-moz-focus-inner,.v-pagination__item::-moz-focus-inner{
1110
- border:0;
1170
+ .v-control-field--filled.v-control-field--disabled:before,.v-control-field--flat.v-control-field--disabled:before{
1171
+ border-bottom-style:dotted;
1111
1172
  }
1112
- .v-pagination a.v-pagination__item,.v-pagination__item{
1113
- padding:0;
1114
- appearance:none;
1115
- touch-action:manipulation;
1116
- cursor:pointer;
1117
- user-select:none;
1118
- outline:0;
1119
- border-width:0;
1173
+ .v-control-field--outlined{
1174
+ border-radius:var(--control-field-radius);
1175
+ transition:box-shadow .2s cubic-bezier(0, 0, .2, 1) 0s;
1120
1176
  }
1121
- .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{
1122
- text-decoration:none;
1177
+ .v-control-field--outlined:before{
1178
+ top:0;
1179
+ height:auto;
1180
+ background:transparent;
1181
+ border:1px solid var(--my-outline-color);
1182
+ border-radius:inherit;
1123
1183
  }
1124
- .v-pagination a.v-pagination__item,.v-pagination__item{
1125
- display:flex;
1126
- align-items:center;
1127
- justify-content:center;
1128
- min-width:var(--pagination-size);
1129
- height:var(--pagination-size);
1130
- margin:calc(var(--pagination-margin)*.5);
1131
- font-size:var(--pagination-font-size);
1132
- color:inherit;
1133
- border-radius:var(--pagination-radius);
1134
- transition:.1s;
1184
+ .v-control-field--outlined:hover:before{
1185
+ border-color:var(--my-outline-hover-color);
1135
1186
  }
1136
- .v-pagination a.v-pagination__item:focus,.v-pagination a.v-pagination__item:hover,.v-pagination__item:focus,.v-pagination__item:hover{
1137
- background:rgba(0,0,0,.1);
1187
+ .v-control-field--outlined:after{
1188
+ content:none;
1138
1189
  }
1139
- .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{
1140
- color:var(--text-color);
1141
- pointer-events:none;
1142
- background-color:var(--main-color);
1190
+ .v-control-field--outlined:focus-within{
1191
+ box-shadow:0 0 1px var(--shadow-color), 0 0 2px 2px var(--focusShadow-color);
1143
1192
  }
1144
- .v-pagination a.v-pagination__item--disabled,.v-pagination a.v-pagination__item--truncate,.v-pagination__item--disabled,.v-pagination__item--truncate{
1145
- color:var(--palette-muted) !important;
1146
- pointer-events:none !important;
1147
- background:transparent !important;
1193
+ .v-control-field__adornment--start{
1194
+ padding-right:.25em;
1148
1195
  }
1149
- .v-pagination a.v-pagination__item .v-icon,.v-pagination__item .v-icon{
1150
- font-size:125%;
1196
+ .v-control-field__adornment--end{
1197
+ padding-left:.25em;
1151
1198
  }
1152
- .v-pagination--dense .v-pagination__item{
1153
- --pagination-size:var(--pagination-item-size-dense);
1154
- --pagination-margin:var(--pagination-item-margin-dense);
1155
- --pagination-font-size:var(--pagination-item-font-size-dense);
1199
+ .v-control-field__adornment .v-icon{
1200
+ font-size:1.2em;
1156
1201
  }
1157
- .v-pagination--disabled .v-pagination__item{
1158
- color:var(--palette-muted);
1159
- pointer-events:none;
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;
1212
+ width:100%;
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;
1160
1226
  }
1161
- .v-pagination--disabled .v-pagination__item:focus,.v-pagination--disabled .v-pagination__item:hover{
1162
- background:transparent;
1227
+ .v-list-tile--clickable{
1228
+ cursor:pointer;
1229
+ --tile-text-color:var(--nav-color);
1230
+ --tile-text-active-color:var(--navActive-color, var(--nav-color));
1163
1231
  }
1164
- .v-pagination--disabled .v-pagination__item--active{
1165
- background:var(--palette-muted);
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);
1235
+ }
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);
1240
+ }
1241
+ .v-list-tile__body{
1242
+ font-size:.8125rem;
1243
+ font-weight:500;
1244
+ line-height:1.5;
1245
+ }
1246
+ .v-list-tile__icon{
1247
+ min-width:2em;
1248
+ }
1249
+ .v-list-tile__icon--end{
1250
+ margin-left:auto;
1251
+ text-align:right;
1166
1252
  }
1167
1253
  .v-option-group{
1168
1254
  display:block;
@@ -1177,261 +1263,291 @@
1177
1263
  color:var(--palette-muted);
1178
1264
  opacity:.4;
1179
1265
  }
1180
- .v-checkbox{
1181
- --my-border-color:var(--color);
1182
- --my-faux-bg-color:transparent;
1266
+ .v-card-actions{
1267
+ display:flex;
1268
+ align-items:center;
1269
+ padding:var(--card-actions-padding);
1183
1270
  }
1184
- .v-checkbox--indeterminate,.v-checkbox--selected{
1185
- --my-border-color:transparent;
1186
- --my-faux-bg-color:var(--color);
1271
+ .v-card-actions .v-btn{
1272
+ margin-top:0;
1273
+ margin-bottom:0;
1187
1274
  }
1188
- .v-checkbox__faux{
1189
- display:block;
1275
+ .v-icon{
1276
+ display:inline-flex;
1277
+ align-items:center;
1278
+ justify-content:center;
1279
+ width:1.25em;
1280
+ aspect-ratio:1/1;
1281
+ user-select:none;
1282
+ }
1283
+ .v-icon--clickable{
1284
+ cursor:pointer;
1285
+ }
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{
1293
+ cursor:text;
1294
+ }
1295
+ .v-textarea__input__element{
1190
1296
  width:100%;
1191
- height:100%;
1192
- background:var(--my-faux-bg-color);
1193
- border:2px solid var(--my-border-color);
1194
- border-radius:var(--control-field-radius);
1195
- 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);
1196
- transition:border-color .2s,background-color .2s;
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;
1197
1308
  }
1198
- .v-checkbox--indeterminate .v-checkbox__faux{
1199
- 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);
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;
1200
1313
  }
1201
- .v-card{
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);
1323
+ }
1324
+ .v-option{
1202
1325
  -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
1203
1326
  }
1204
- .v-card::-moz-focus-inner{
1327
+ .v-option::-moz-focus-inner{
1205
1328
  border:0;
1206
1329
  }
1207
- .v-card{
1208
- position:relative;
1209
- width:100%;
1330
+ .v-option{
1210
1331
  padding:0;
1211
- text-align:left;
1212
1332
  appearance:none;
1213
1333
  touch-action:manipulation;
1334
+ cursor:pointer;
1214
1335
  user-select:none;
1215
1336
  outline:0;
1216
- border:0;
1337
+ border-width:0;
1217
1338
  }
1218
- .v-card,.v-card:focus,.v-card:hover{
1339
+ .v-option,.v-option:focus,.v-option:hover{
1219
1340
  text-decoration:none;
1220
1341
  }
1221
- .v-card.clickable{
1222
- cursor:pointer;
1342
+ .v-option{
1343
+ position:relative;
1344
+ display:flex;
1345
+ width:100%;
1346
+ padding:.75em 1em;
1223
1347
  }
1224
- .v-card.clickable:before{
1348
+ .v-option input{
1349
+ position:absolute;
1350
+ width:1px;
1351
+ height:1px;
1352
+ overflow:hidden;
1353
+ white-space:nowrap;
1354
+ clip:rect(0 0 0 0);
1355
+ clip-path:inset(100%);
1356
+ }
1357
+ .v-option:after,.v-option:before{
1225
1358
  position:absolute;
1226
1359
  inset:0;
1360
+ display:block;
1361
+ pointer-events:none;
1227
1362
  content:"";
1228
- background:currentColor;
1229
- border-radius:inherit;
1230
1363
  opacity:0;
1231
- transition:.3s cubic-bezier(.25, .8, .5, 1);
1232
- }
1233
- .v-card.clickable:focus:before,.v-card.clickable:hover:before{
1234
- opacity:.125;
1364
+ transition:opacity .2s;
1235
1365
  }
1236
- .v-card[aria-disabled=true],.v-card[disabled]{
1237
- pointer-events:none;
1366
+ .v-option:before{
1367
+ background:currentColor;
1238
1368
  }
1239
- .v-card[aria-disabled=true]:before,.v-card[disabled]:before{
1240
- content:none;
1369
+ .v-option:after{
1370
+ background:var(--palette-primary);
1241
1371
  }
1242
- .v-radio{
1243
- --my-color:var(--color);
1372
+ .v-option--key-focused:before,.v-option:focus-within:before,.v-option:hover:before{
1373
+ opacity:.12;
1244
1374
  }
1245
- .v-radio__faux{
1375
+ .v-option__label{
1246
1376
  position:relative;
1247
1377
  display:block;
1248
- width:100%;
1249
- height:100%;
1250
- transition:border-color .2s,background-color .2s;
1251
- }
1252
- .v-radio__faux:after,.v-radio__faux:before{
1253
- position:absolute;
1254
- display:block;
1255
- content:"";
1256
- border-radius:100%;
1257
1378
  }
1258
- .v-radio__faux:before{
1259
- inset:0;
1260
- border:2px solid;
1379
+ .v-option--selected:after{
1380
+ opacity:.12;
1261
1381
  }
1262
- .v-radio__faux:after{
1263
- top:50%;
1264
- left:50%;
1265
- width:50%;
1266
- height:50%;
1267
- background:currentColor;
1268
- transform:translate(-50%, -50%) scale(0);
1269
- transition:transform .2s;
1382
+ .v-option--selected .v-option__label{
1383
+ font-weight:500;
1384
+ color:var(--palette-primary);
1270
1385
  }
1271
- .v-radio--selected .v-radio__faux:after{
1272
- transform:translate(-50%, -50%) scale(1);
1386
+ .v-option--has-not-value .v-option__label{
1387
+ font-style:italic;
1273
1388
  }
1274
- .v-data-table{
1275
- --controls-vertial-margin:0.625em;
1389
+ .v-option[aria-disabled=true],.v-option[disabled],.v-option[tabindex="-1"]{
1390
+ color:var(--palette-muted);
1391
+ pointer-events:none;
1392
+ opacity:.4;
1276
1393
  }
1277
- .v-card-content .v-data-table{
1278
- margin-right:calc(var(--card-content-padding)*-1);
1279
- margin-left:calc(var(--card-content-padding)*-1);
1394
+ .v-option[aria-disabled=true]:before,.v-option[disabled]:before,.v-option[tabindex="-1"]:before{
1395
+ opacity:0 !important;
1280
1396
  }
1281
- .v-data-table__controls{
1282
- flex-wrap:wrap;
1283
- justify-content:flex-end;
1397
+ .v-select__input{
1398
+ cursor:pointer;
1284
1399
  }
1285
- .v-data-table__controls,.v-data-table__controls__info{
1286
- display:flex;
1287
- align-items:center;
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%);
1288
1408
  }
1289
- .v-data-table__controls__info__length{
1290
- margin-right:20px;
1409
+ .v-select__body{
1410
+ padding:.5em 0;
1291
1411
  }
1292
- .v-data-table__controls__select-limit{
1293
- display:flex;
1294
- align-items:center;
1412
+ .v-select__selections{
1413
+ display:table;
1414
+ width:100%;
1415
+ table-layout:fixed;
1295
1416
  }
1296
- .v-data-table__controls__select-limit__prefix{
1297
- margin-right:.5em;
1298
- font-size:.75em;
1299
- color:var(--palette-muted);
1417
+ .v-select__selections__inner{
1418
+ display:table-cell;
1419
+ overflow:hidden;
1420
+ text-overflow:ellipsis;
1421
+ vertical-align:middle;
1300
1422
  white-space:nowrap;
1301
1423
  }
1302
- .v-data-table__controls__select-limit .v-select{
1303
- width:5em;
1304
- margin-left:.5em;
1424
+ .v-select--multiple .v-select__selections{
1425
+ display:block;
1305
1426
  }
1306
- .v-data-table__controls__pagination{
1307
- flex:1 1 100%;
1308
- margin-left:auto;
1427
+ .v-select--multiple .v-select__selections__inner{
1428
+ display:block;
1429
+ overflow:auto;
1430
+ white-space:unset;
1309
1431
  }
1310
- .v-data-table__header{
1311
- margin-bottom:var(--controls-vertial-margin);
1432
+ .v-select--multiple .v-control-field__body{
1433
+ padding:.2em 0;
1312
1434
  }
1313
- .v-data-table__footer{
1314
- margin-top:var(--controls-vertial-margin);
1435
+ .v-select__placeholder{
1436
+ font-style:italic;
1437
+ color:var(--control-disabled-color);
1315
1438
  }
1316
- .v-data-table__body{
1317
- position:relative;
1439
+ .v-switch{
1440
+ --my-pin-color:var(--palette-background);
1318
1441
  }
1319
- .v-data-table__body__inner{
1320
- overflow-x:auto;
1442
+ .v-switch--selected{
1443
+ --my-pin-color:var(--color);
1321
1444
  }
1322
- .v-data-table__table-wrapper{
1445
+ .v-switch__faux{
1446
+ position:relative;
1323
1447
  display:flex;
1448
+ align-items:center;
1449
+ justify-content:center;
1450
+ width:100%;
1451
+ width:var(--control-switch-width);
1452
+ height:100%;
1453
+ cursor:pointer;
1324
1454
  }
1325
- .v-data-table__table-wrapper:after,.v-data-table__table-wrapper:before{
1455
+ .v-switch__faux:before{
1326
1456
  display:block;
1327
- height:1px;
1457
+ width:var(--control-switch-track-width);
1458
+ height:var(--control-switch-track-height);
1328
1459
  content:"";
1460
+ background:var(--color);
1461
+ border-radius:calc(var(--control-switch-track-height)/2);
1462
+ opacity:.5;
1329
1463
  }
1330
- .v-data-table__loading{
1464
+ .v-switch__faux__pin{
1331
1465
  position:absolute;
1332
- inset:0;
1333
- z-index:1;
1466
+ top:0;
1467
+ bottom:0;
1468
+ left:0;
1334
1469
  display:flex;
1335
1470
  align-items:center;
1336
1471
  justify-content:center;
1337
- background:var(--palette-background);
1338
- opacity:.5;
1339
- }
1340
- .v-data-table__table{
1341
- width:100%;
1342
- margin:0;
1343
- background:var(--palette-background);
1344
- border-radius:var(--control-field-radius);
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;
1345
1476
  }
1346
- .v-data-table__table__cell{
1347
- position:relative;
1348
- vertical-align:middle;
1349
- text-align:left;
1350
- white-space:nowrap;
1351
- border-bottom:thin solid rgba(0,0,0,.12);
1352
- transition:background .2s;
1477
+ .v-switch__faux__pin:after,.v-switch__faux__pin:before{
1478
+ display:block;
1479
+ content:"";
1353
1480
  }
1354
- .v-data-table__table__cell:first-child{
1355
- padding-left:calc(var(--table-cell-horizontal-padding)*2);
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;
1356
1489
  }
1357
- .v-data-table__table__cell:last-child{
1358
- padding-right:calc(var(--table-cell-horizontal-padding)*2);
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));
1359
1498
  }
1360
- .v-data-table__table__cell--left{
1361
- text-align:left;
1499
+ .v-switch--selected .v-switch__faux__pin{
1500
+ left:calc(100% - var(--outer-size));
1362
1501
  }
1363
- .v-data-table__table__cell--center{
1364
- text-align:center;
1502
+ .v-switch--disabled .v-switch__faux:before{
1503
+ background-color:#000;
1504
+ opacity:.12;
1365
1505
  }
1366
- .v-data-table__table__cell--center .v-data-table__table__sort-icon--empty{
1367
- display:flex;
1506
+ .v-switch--disabled .v-switch__faux__pin:after{
1507
+ background-color:#f5f5f5;
1368
1508
  }
1369
- .v-data-table__table__cell--right{
1370
- text-align:right;
1509
+ .v-switch__faux:hover .v-switch__faux__pin:before{
1510
+ opacity:.1;
1371
1511
  }
1372
- .v-data-table__table__cell[tabindex="0"]{
1373
- cursor:pointer;
1512
+ .v-switch:focus-within .v-switch__faux__pin:before{
1513
+ opacity:.1;
1374
1514
  }
1375
- .v-data-table__table__cell__tile{
1515
+ .v-file-input__inner{
1376
1516
  display:flex;
1377
- align-items:center;
1378
- }
1379
- .v-data-table__table__sort-icon{
1380
- width:25px;
1381
- font-size:1.25em;
1382
- opacity:0;
1383
- transition:transform .2s,opacity .2s;
1384
- }
1385
- .v-data-table__table__sort-icon--empty{
1386
- display:none;
1387
- }
1388
- .v-data-table__table__header .v-data-table__table__cell{
1389
- user-select:none;
1390
- background:hsla(0,0%,100%,.85);
1391
- backdrop-filter:blur(3px);
1392
- }
1393
- .v-data-table__table__cell[tabindex="0"]:focus .v-data-table__table__sort-icon,.v-data-table__table__cell[tabindex="0"]:hover .v-data-table__table__sort-icon,.v-data-table__table__header .v-data-table__table__cell--active .v-data-table__table__sort-icon{
1394
- opacity:1;
1395
- }
1396
- .v-data-table__table__body tr:last-child .v-data-table__table__cell{
1397
- border-bottom:none;
1517
+ align-items:stretch;
1398
1518
  }
1399
- .v-data-table--fixed-header .v-data-table__table__header .v-data-table__table__cell{
1400
- position:sticky;
1401
- top:0;
1402
- z-index:1;
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;
1403
1526
  }
1404
- .v-hero{
1405
- --hero-background-color:var(--main-color);
1406
- --hero-text-color:var(--text-color);
1527
+ .v-file-input__selections{
1407
1528
  display:flex;
1529
+ flex-wrap:wrap;
1408
1530
  align-items:center;
1409
- padding:20px 30px;
1410
- margin:0;
1411
- color:var(--hero-text-color);
1412
- background-color:var(--hero-background-color);
1531
+ align-self:stretch;
1532
+ padding:4px 6px;
1413
1533
  }
1414
- .v-hero__title{
1415
- flex:1 1 100%;
1416
- margin:0;
1417
- font-size:1.75rem;
1418
- font-weight:300;
1419
- line-height:1;
1420
- color:inherit;
1534
+ .v-file-input__placeholder{
1535
+ color:var(--control-disabled-color);
1421
1536
  }
1422
- .v-hero__adornment{
1423
- flex:0 0 auto;
1424
- padding-left:10px;
1425
- margin-left:auto;
1537
+ .v-file-input__input{
1538
+ flex:1 1 100%;
1539
+ cursor:text;
1540
+ border-top-left-radius:0;
1541
+ border-bottom-left-radius:0;
1426
1542
  }
1427
- .v-toolbar-title{
1428
- display:flex;
1429
- flex-grow:1;
1430
- margin:0;
1431
- font-size:1.25rem;
1432
- font-weight:400;
1433
- line-height:1;
1543
+ .v-file-input__input__element{
1544
+ position:absolute;
1545
+ width:1px;
1546
+ height:1px;
1547
+ overflow:hidden;
1434
1548
  white-space:nowrap;
1549
+ clip:rect(0 0 0 0);
1550
+ clip-path:inset(100%);
1435
1551
  }
1436
1552
  .v-content-switcher{
1437
1553
  position:relative;
@@ -1477,6 +1593,52 @@
1477
1593
  .v-content-switcher-next-leave-to{
1478
1594
  transform:translateX(-100%);
1479
1595
  }
1596
+ .v-toolbar-title{
1597
+ display:flex;
1598
+ flex-grow:1;
1599
+ margin:0;
1600
+ font-size:1.25rem;
1601
+ font-weight:400;
1602
+ line-height:1;
1603
+ white-space:nowrap;
1604
+ }
1605
+ .v-toolbar{
1606
+ --height:var(--toolbar-height);
1607
+ display:flex;
1608
+ align-items:center;
1609
+ width:100%;
1610
+ height:var(--height);
1611
+ padding:0 calc(var(--root-em)*1.5);
1612
+ margin:0;
1613
+ border-radius:inherit;
1614
+ }
1615
+ .v-toolbar--plain{
1616
+ --main-color:var(--palette-background);
1617
+ }
1618
+ .v-app-layout__header>.v-toolbar{
1619
+ height:100%;
1620
+ }
1621
+ .v-toolbar--dense{
1622
+ --height:var(--toolbar-dense-height);
1623
+ }
1624
+ .v-toolbar-edge{
1625
+ display:flex;
1626
+ flex:0 0;
1627
+ align-items:center;
1628
+ align-self:stretch;
1629
+ }
1630
+ .v-toolbar-edge--empty,.v-toolbar-edge:empty{
1631
+ display:none;
1632
+ }
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
+ }
1480
1642
  .v-tabs{
1481
1643
  position:relative;
1482
1644
  width:100%;
@@ -1508,30 +1670,38 @@
1508
1670
  min-width:100%;
1509
1671
  vertical-align:bottom;
1510
1672
  }
1511
- .v-toolbar-menu{
1512
- height:100%;
1513
- margin:0;
1514
- box-shadow:none;
1515
- }
1516
- .v-card-actions{
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);
1517
1678
  display:flex;
1518
1679
  align-items:center;
1519
- padding:var(--card-actions-padding);
1680
+ overflow:hidden;
1681
+ font-weight:700;
1682
+ line-height:1;
1520
1683
  }
1521
- .v-card-actions .v-btn{
1522
- margin-top:0;
1523
- margin-bottom:0;
1684
+ .v-pagination:before{
1685
+ width:var(--pagination-size);
1686
+ margin:var(--pagination-margin);
1687
+ content:none;
1524
1688
  }
1525
- .v-text-counter{
1526
- white-space:nowrap;
1689
+ .v-pagination--left{
1690
+ justify-content:flex-start;
1527
1691
  }
1528
- .v-option{
1692
+ .v-pagination--center{
1693
+ justify-content:center;
1694
+ }
1695
+ .v-pagination--right{
1696
+ justify-content:flex-end;
1697
+ }
1698
+ .v-pagination a.v-pagination__item,.v-pagination__item{
1529
1699
  -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
1530
1700
  }
1531
- .v-option::-moz-focus-inner{
1701
+ .v-pagination a.v-pagination__item::-moz-focus-inner,.v-pagination__item::-moz-focus-inner{
1532
1702
  border:0;
1533
1703
  }
1534
- .v-option{
1704
+ .v-pagination a.v-pagination__item,.v-pagination__item{
1535
1705
  padding:0;
1536
1706
  appearance:none;
1537
1707
  touch-action:manipulation;
@@ -1540,678 +1710,300 @@
1540
1710
  outline:0;
1541
1711
  border-width:0;
1542
1712
  }
1543
- .v-option,.v-option:focus,.v-option:hover{
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{
1544
1714
  text-decoration:none;
1545
1715
  }
1546
- .v-option{
1547
- position:relative;
1716
+ .v-pagination a.v-pagination__item,.v-pagination__item{
1548
1717
  display:flex;
1549
- width:100%;
1550
- padding:.75em 1em;
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;
1551
1727
  }
1552
- .v-option input{
1553
- position:absolute;
1554
- width:1px;
1555
- height:1px;
1556
- overflow:hidden;
1557
- white-space:nowrap;
1558
- clip:rect(0 0 0 0);
1559
- clip-path:inset(100%);
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);
1560
1730
  }
1561
- .v-option:after,.v-option:before{
1562
- position:absolute;
1563
- inset:0;
1564
- display:block;
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);
1565
1733
  pointer-events:none;
1566
- content:"";
1567
- opacity:0;
1568
- transition:opacity .2s;
1569
- }
1570
- .v-option:before{
1571
- background:currentColor;
1572
- }
1573
- .v-option:after{
1574
- background:var(--palette-primary);
1575
- }
1576
- .v-option--key-focused:before,.v-option:focus-within:before,.v-option:hover:before{
1577
- opacity:.12;
1578
- }
1579
- .v-option__label{
1580
- position:relative;
1581
- display:block;
1734
+ background-color:var(--main-color);
1582
1735
  }
1583
- .v-option--selected:after{
1584
- opacity:.12;
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;
1585
1740
  }
1586
- .v-option--selected .v-option__label{
1587
- font-weight:500;
1588
- color:var(--palette-primary);
1741
+ .v-pagination a.v-pagination__item .v-icon,.v-pagination__item .v-icon{
1742
+ font-size:125%;
1589
1743
  }
1590
- .v-option--has-not-value .v-option__label{
1591
- font-style:italic;
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);
1592
1748
  }
1593
- .v-option[aria-disabled=true],.v-option[disabled],.v-option[tabindex="-1"]{
1749
+ .v-pagination--disabled .v-pagination__item{
1594
1750
  color:var(--palette-muted);
1595
1751
  pointer-events:none;
1596
- opacity:.4;
1597
1752
  }
1598
- .v-option[aria-disabled=true]:before,.v-option[disabled]:before,.v-option[tabindex="-1"]:before{
1599
- opacity:0 !important;
1753
+ .v-pagination--disabled .v-pagination__item:focus,.v-pagination--disabled .v-pagination__item:hover{
1754
+ background:transparent;
1600
1755
  }
1601
- .v-switch{
1602
- --my-pin-color:var(--palette-background);
1756
+ .v-pagination--disabled .v-pagination__item--active{
1757
+ background:var(--palette-muted);
1603
1758
  }
1604
- .v-switch--selected{
1605
- --my-pin-color:var(--color);
1759
+ .v-card{
1760
+ -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
1606
1761
  }
1607
- .v-switch__faux{
1762
+ .v-card::-moz-focus-inner{
1763
+ border:0;
1764
+ }
1765
+ .v-card{
1608
1766
  position:relative;
1609
- display:flex;
1610
- align-items:center;
1611
- justify-content:center;
1612
1767
  width:100%;
1613
- width:var(--control-switch-width);
1614
- height:100%;
1615
- cursor:pointer;
1616
- }
1617
- .v-switch__faux:before{
1618
- display:block;
1619
- width:var(--control-switch-track-width);
1620
- height:var(--control-switch-track-height);
1621
- content:"";
1622
- background:var(--color);
1623
- border-radius:calc(var(--control-switch-track-height)/2);
1624
- opacity:.5;
1768
+ padding:0;
1769
+ text-align:left;
1770
+ appearance:none;
1771
+ touch-action:manipulation;
1772
+ user-select:none;
1773
+ outline:0;
1774
+ border:0;
1625
1775
  }
1626
- .v-switch__faux__pin{
1627
- position:absolute;
1628
- top:0;
1629
- bottom:0;
1630
- left:0;
1631
- display:flex;
1632
- align-items:center;
1633
- justify-content:center;
1634
- width:var(--outer-size);
1635
- height:var(--outer-size);
1636
- border-radius:50%;
1637
- transition:left .15s cubic-bezier(.4, 0, .2, 1) 0s,transform .15s cubic-bezier(.4, 0, .2, 1) 0s;
1776
+ .v-card,.v-card:focus,.v-card:hover{
1777
+ text-decoration:none;
1638
1778
  }
1639
- .v-switch__faux__pin:after,.v-switch__faux__pin:before{
1640
- display:block;
1641
- content:"";
1779
+ .v-card.clickable{
1780
+ cursor:pointer;
1642
1781
  }
1643
- .v-switch__faux__pin:before{
1782
+ .v-card.clickable:before{
1644
1783
  position:absolute;
1645
- width:100%;
1646
- height:100%;
1784
+ inset:0;
1785
+ content:"";
1647
1786
  background:currentColor;
1648
- border-radius:50%;
1787
+ border-radius:inherit;
1649
1788
  opacity:0;
1650
- transition:opacity .2s;
1651
- }
1652
- .v-switch__faux__pin:after{
1653
- position:relative;
1654
- width:var(--icon-size);
1655
- height:var(--icon-size);
1656
- background:var(--my-pin-color);
1657
- border-radius:50%;
1658
- 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);
1659
- transform:scale(var(--control-checkable-faux-scale));
1660
- }
1661
- .v-switch--selected .v-switch__faux__pin{
1662
- left:calc(100% - var(--outer-size));
1789
+ transition:.3s cubic-bezier(.25, .8, .5, 1);
1663
1790
  }
1664
- .v-switch--disabled .v-switch__faux:before{
1665
- background-color:#000;
1666
- opacity:.12;
1791
+ .v-card.clickable:focus:before,.v-card.clickable:hover:before{
1792
+ opacity:.125;
1667
1793
  }
1668
- .v-switch--disabled .v-switch__faux__pin:after{
1669
- background-color:#f5f5f5;
1794
+ .v-card[aria-disabled=true],.v-card[disabled]{
1795
+ pointer-events:none;
1670
1796
  }
1671
- .v-switch__faux:hover .v-switch__faux__pin:before{
1672
- opacity:.1;
1797
+ .v-card[aria-disabled=true]:before,.v-card[disabled]:before{
1798
+ content:none;
1673
1799
  }
1674
- .v-switch:focus-within .v-switch__faux__pin:before{
1675
- opacity:.1;
1800
+ .v-data-table{
1801
+ --controls-vertial-margin:0.625em;
1676
1802
  }
1677
- .v-navigation__caption{
1678
- display:block;
1679
- padding:calc(var(--root-em)*.625) calc(var(--root-em)*1.5625);
1680
- margin:1em 0 0;
1681
- font-size:.75rem;
1682
- color:var(--caption-color);
1683
- text-transform:uppercase;
1803
+ .v-card-content .v-data-table{
1804
+ margin-right:calc(var(--card-content-padding)*-1);
1805
+ margin-left:calc(var(--card-content-padding)*-1);
1684
1806
  }
1685
- .v-card-content{
1686
- padding:var(--card-content-padding);
1807
+ .v-data-table__controls{
1808
+ flex-wrap:wrap;
1809
+ justify-content:flex-end;
1687
1810
  }
1688
- .v-toolbar{
1689
- --height:var(--toolbar-height);
1811
+ .v-data-table__controls,.v-data-table__controls__info{
1690
1812
  display:flex;
1691
1813
  align-items:center;
1692
- width:100%;
1693
- height:var(--height);
1694
- padding:0 calc(var(--root-em)*1.5);
1695
- margin:0;
1696
- border-radius:inherit;
1697
- }
1698
- .v-toolbar--plain{
1699
- --main-color:var(--palette-background);
1700
- }
1701
- .v-app-layout__header>.v-toolbar{
1702
- height:100%;
1703
1814
  }
1704
- .v-toolbar--dense{
1705
- --height:var(--toolbar-dense-height);
1815
+ .v-data-table__controls__info__length{
1816
+ margin-right:20px;
1706
1817
  }
1707
- .v-list-tile{
1708
- --tile-background:var(--main-color, transparent);
1709
- --tile-active-background:var(--deep-color, transparent);
1710
- --tile-text-color:var(--text-color);
1711
- --tile-text-active-color:var(--text-color);
1712
- --tile-pin-color:transparent;
1713
- --paper-link-color:var(--tile-text-color);
1714
- --depth-padding:var(--list-tile-padding);
1818
+ .v-data-table__controls__select-limit{
1715
1819
  display:flex;
1716
1820
  align-items:center;
1717
- width:100%;
1718
- padding:var(--list-tile-padding);
1719
- padding-left:var(--depth-padding);
1720
- color:var(--tile-text-color) !important;
1721
- text-align:left;
1722
- text-decoration:none;
1723
- appearance:none;
1724
- user-select:none;
1725
- outline:0;
1726
- background:var(--tile-background);
1727
- border:0;
1728
- border-left:3px solid var(--tile-pin-color);
1729
- border-radius:0;
1730
- transition:color .15s cubic-bezier(.4, 0, .2, 1) 0s,background-color .15s cubic-bezier(.4, 0, .2, 1) 0s;
1731
- }
1732
- .v-list-tile--clickable{
1733
- cursor:pointer;
1734
- --tile-text-color:var(--nav-color);
1735
- --tile-text-active-color:var(--navActive-color, var(--nav-color));
1736
1821
  }
1737
- .v-list-tile--clickable:focus,.v-list-tile--clickable:hover{
1738
- --tile-background:var(--tile-active-background);
1739
- --tile-text-color:var(--tile-text-active-color);
1740
- }
1741
- .v-list-tile--active{
1742
- --tile-pin-color:var(--pin-color);
1743
- --tile-text-color:var(--tile-text-active-color);
1744
- --tile-background:var(--tile-active-background);
1745
- }
1746
- .v-list-tile__body{
1747
- font-size:.8125rem;
1748
- font-weight:500;
1749
- line-height:1.5;
1822
+ .v-data-table__controls__select-limit__prefix{
1823
+ margin-right:.5em;
1824
+ font-size:.75em;
1825
+ color:var(--palette-muted);
1826
+ white-space:nowrap;
1750
1827
  }
1751
- .v-list-tile__icon{
1752
- min-width:2em;
1828
+ .v-data-table__controls__select-limit .v-select{
1829
+ width:5em;
1830
+ margin-left:.5em;
1753
1831
  }
1754
- .v-list-tile__icon--end{
1832
+ .v-data-table__controls__pagination{
1833
+ flex:1 1 100%;
1755
1834
  margin-left:auto;
1756
- text-align:right;
1757
1835
  }
1758
- .v-toolbar-edge{
1759
- display:flex;
1760
- flex:0 0;
1761
- align-items:center;
1762
- align-self:stretch;
1836
+ .v-data-table__header{
1837
+ margin-bottom:var(--controls-vertial-margin);
1763
1838
  }
1764
- .v-toolbar-edge--empty,.v-toolbar-edge:empty{
1765
- display:none;
1839
+ .v-data-table__footer{
1840
+ margin-top:var(--controls-vertial-margin);
1766
1841
  }
1767
- .v-toolbar-edge--start{
1768
- margin-right:calc(var(--root-em)*.75);
1769
- margin-left:calc(var(--root-em)*-1*.75);
1842
+ .v-data-table__body{
1843
+ position:relative;
1770
1844
  }
1771
- .v-toolbar-edge--end{
1772
- padding-left:calc(var(--root-em)*.75);
1773
- margin-right:calc(var(--root-em)*-1*.75);
1774
- margin-left:auto;
1845
+ .v-data-table__body__inner{
1846
+ overflow-x:auto;
1775
1847
  }
1776
- .v-disabled-reason{
1777
- -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
1848
+ .v-data-table__table-wrapper{
1849
+ display:flex;
1778
1850
  }
1779
- .v-disabled-reason::-moz-focus-inner{
1780
- border:0;
1851
+ .v-data-table__table-wrapper:after,.v-data-table__table-wrapper:before{
1852
+ display:block;
1853
+ height:1px;
1854
+ content:"";
1781
1855
  }
1782
- .v-disabled-reason{
1856
+ .v-data-table__loading{
1783
1857
  position:absolute;
1784
1858
  inset:0;
1785
- z-index:10;
1786
- display:block;
1787
- pointer-events:none;
1788
- cursor:default;
1789
- border-radius:inherit;
1790
- }
1791
- .v-disabled-reason[tabindex]:not([tabindex^="-"]){
1792
- pointer-events:auto;
1793
- }
1794
- .v-form-control{
1795
- display:flex;
1796
- flex-direction:column;
1797
- max-width:100%;
1798
- margin:var(--control-horizontal-margin) 0;
1799
- --my-label-color:var(--control-label-color);
1800
- --my-message-color:var(--control-message-color);
1801
- }
1802
- .v-form-control--invalid:not(.v-form-control--readonly){
1803
- --my-label-color:var(--main-color);
1804
- --my-message-color:var(--main-color);
1805
- }
1806
- .v-form-control--disabled{
1807
- --my-label-color:var(--control-disabled-color);
1808
- --my-message-color:var(--control-disabled-color);
1809
- }
1810
- .v-form-control__label{
1811
- display:flex;
1812
- align-items:center;
1813
- align-self:flex-start;
1814
- font-size:var(--control-label-font-size);
1815
- font-weight:var(--control-label-font-weight);
1816
- line-height:var(--control-label-height);
1817
- color:var(--my-label-color);
1818
- letter-spacing:.00938em;
1819
- }
1820
- .v-form-control__label__hinttip{
1821
- display:inline-flex;
1822
- align-items:center;
1823
- margin-top:-.2em;
1824
- margin-left:.6em;
1825
- font-size:80%;
1826
- line-height:1;
1827
- color:inherit;
1828
- letter-spacing:normal;
1829
- text-decoration:none;
1830
- cursor:pointer;
1831
- }
1832
- .v-form-control__label__hinttip__icon{
1833
- position:relative;
1834
- display:flex;
1835
- align-items:center;
1836
- justify-content:center;
1837
- font-size:120%;
1838
- text-decoration:none !important;
1839
- }
1840
- .v-form-control__label__hinttip:focus .v-form-control__label__hinttip__icon:before,.v-form-control__label__hinttip:hover .v-form-control__label__hinttip__icon:before{
1841
- opacity:.1;
1842
- }
1843
- .v-form-control__label__hinttip__hint{
1844
- font-size:calc(var(--root-em)*.75);
1845
- }
1846
- .v-form-control__info{
1847
- display:flex;
1848
- padding-top:3px;
1849
- }
1850
- .v-form-control__appends,.v-form-control__message{
1851
- margin:0 var(--control-message-horizontal-margin);
1852
- font-size:var(--control-message-font-size);
1853
- line-height:1.66;
1854
- color:var(--my-message-color);
1855
- }
1856
- .v-form-control__message{
1857
- flex:1 0;
1858
- }
1859
- .v-form-control__appends{
1860
- flex:0 1;
1861
- margin-left:auto;
1862
- }
1863
- .v-breadcrumbs{
1864
- display:block;
1865
- margin:1.5em auto;
1866
- font-size:var(--breadcrumbs-font-size);
1867
- }
1868
- .v-breadcrumbs__list{
1869
- display:inline-flex;
1870
- flex-wrap:wrap;
1871
- align-items:center;
1872
- vertical-align:bottom;
1873
- }
1874
- .v-breadcrumbs__divider,.v-breadcrumbs__item,.v-breadcrumbs__list{
1875
- padding:0;
1876
- margin:0;
1877
- list-style:none;
1878
- }
1879
- .v-breadcrumbs__link{
1880
- display:inline-flex;
1881
- align-items:center;
1882
- vertical-align:middle;
1883
- white-space:nowrap;
1884
- text-decoration:none;
1885
- }
1886
- .v-breadcrumbs__item--disabled .v-breadcrumbs__link{
1887
- color:inherit;
1888
- pointer-events:none;
1889
- }
1890
- .v-breadcrumbs__icon{
1891
- margin-right:.2em;
1892
- font-size:140%;
1893
- }
1894
- .v-breadcrumbs__divider{
1895
- position:relative;
1896
- top:1px;
1859
+ z-index:1;
1897
1860
  display:flex;
1898
1861
  align-items:center;
1899
1862
  justify-content:center;
1900
- margin:0 1.25em;
1901
- }
1902
- .v-breadcrumbs__divider__icon{
1903
- display:block;
1904
- width:.5em;
1905
- height:.5em;
1906
- margin-left:-.25em;
1907
- border-top:1px solid;
1908
- border-right:1px solid;
1909
- transform:rotate(45deg);
1910
- }
1911
- .v-file-input__inner{
1912
- display:flex;
1913
- align-items:stretch;
1914
- }
1915
- .v-file-input__button{
1916
- flex:0 0 auto;
1917
- height:auto;
1918
- margin:0;
1919
- margin-bottom:1px !important;
1920
- border-top-right-radius:0;
1921
- border-bottom-right-radius:0;
1922
- }
1923
- .v-file-input__selections{
1924
- display:flex;
1925
- flex-wrap:wrap;
1926
- align-items:center;
1927
- align-self:stretch;
1928
- padding:4px 6px;
1929
- }
1930
- .v-file-input__placeholder{
1931
- color:var(--control-disabled-color);
1932
- }
1933
- .v-file-input__input{
1934
- flex:1 1 100%;
1935
- cursor:text;
1936
- border-top-left-radius:0;
1937
- border-bottom-left-radius:0;
1938
- }
1939
- .v-file-input__input__element{
1940
- position:absolute;
1941
- width:1px;
1942
- height:1px;
1943
- overflow:hidden;
1944
- white-space:nowrap;
1945
- clip:rect(0 0 0 0);
1946
- clip-path:inset(100%);
1863
+ background:var(--palette-background);
1864
+ opacity:.5;
1947
1865
  }
1948
- .v-control-field{
1949
- position:relative;
1950
- display:inline-flex;
1951
- align-items:center;
1866
+ .v-data-table__table{
1952
1867
  width:100%;
1953
- min-width:0;
1954
- height:var(--control-field-height);
1955
- min-height:var(--control-field-height);
1956
- padding:0 8px;
1957
- font-size:var(--control-field-font-size);
1958
- line-height:var(--control-field-line-height);
1959
- letter-spacing:var(--control-field-letter-spacing);
1960
- --my-bottom-color:var(--control-field-bottom-color);
1961
- --my-bottom-hover-color:var(--control-field-bottom-hover-color);
1962
- --my-focused-color:var(--main-color);
1963
- --my-fill-color:var(--control-field-fill-color);
1964
- --my-fill-hover-color:var(--control-field-fill-hover-color);
1965
- --my-outline-color:var(--control-field-outline-color);
1966
- --my-outline-hover-color:var(--control-field-outline-hover-color);
1967
- }
1968
- .v-control-field--invalid:not(.v-control-field--disabled):not(.v-control-field--readonly){
1969
- --my-bottom-color:var(--main-color);
1970
- --my-bottom-hover-color:var(--main-color);
1971
- --my-outline-color:var(--main-color);
1972
- --my-outline-hover-color:var(--main-color);
1973
- }
1974
- .v-control-field--readonly{
1975
- cursor:default;
1976
- }
1977
- .v-control-field--disabled{
1978
- color:var(--control-disabled-color);
1979
- pointer-events:none;
1980
- user-select:none;
1981
- }
1982
- .v-control-field:after,.v-control-field:before{
1983
- position:absolute;
1984
- right:0;
1985
- bottom:0;
1986
- left:0;
1987
- pointer-events:none;
1988
- content:"";
1989
- }
1990
- .v-control-field:before{
1991
- height:1px;
1992
- border-bottom:1px solid var(--my-bottom-color);
1993
- transition:border-color .2s cubic-bezier(.4, 0, .2, 1) 0s;
1994
- }
1995
- .v-control-field:after{
1996
- height:2px;
1997
- background:var(--my-focused-color);
1998
- transform:scaleX(0);
1999
- transition:transform .2s cubic-bezier(0, 0, .2, 1) 0s;
2000
- }
2001
- .v-control-field--focused,.v-control-field:focus-within{
2002
- --my-outline-color:var(--my-focused-color);
2003
- --my-outline-hover-color:var(--my-focused-color);
2004
- outline:none;
2005
- }
2006
- .v-control-field--focused:after,.v-control-field:focus-within:after{
2007
- transform:scaleX(1);
2008
- }
2009
- .v-control-field--auto-height{
2010
- height:auto;
2011
- }
2012
- .v-control-field__body{
2013
- display:flex;
2014
- flex:1 1 auto;
2015
- align-items:stretch;
2016
- align-self:stretch;
2017
1868
  margin:0;
2018
- }
2019
- .v-control-field--flat{
2020
- padding-right:0;
2021
- padding-left:0;
2022
- }
2023
- .v-control-field--filled{
2024
- background-color:var(--my-fill-color);
2025
- border-top-left-radius:var(--control-field-radius);
2026
- border-top-right-radius:var(--control-field-radius);
2027
- transition:background-color .2s cubic-bezier(0, 0, .2, 1) 0s;
2028
- }
2029
- .v-control-field--filled:hover:not(:focus-within){
2030
- background-color:var(--my-fill-hover-color);
2031
- }
2032
- .v-control-field--filled:hover:before,.v-control-field--flat:hover:before{
2033
- border-color:var(--my-bottom-hover-color);
2034
- }
2035
- .v-control-field--flat:hover:before{
2036
- height:2px;
2037
- border-bottom-width:2px;
2038
- }
2039
- .v-control-field--filled.v-control-field--disabled:before,.v-control-field--flat.v-control-field--disabled:before{
2040
- border-bottom-style:dotted;
2041
- }
2042
- .v-control-field--outlined{
1869
+ background:var(--palette-background);
2043
1870
  border-radius:var(--control-field-radius);
2044
- transition:box-shadow .2s cubic-bezier(0, 0, .2, 1) 0s;
2045
- }
2046
- .v-control-field--outlined:before{
2047
- top:0;
2048
- height:auto;
2049
- background:transparent;
2050
- border:1px solid var(--my-outline-color);
2051
- border-radius:inherit;
2052
- }
2053
- .v-control-field--outlined:hover:before{
2054
- border-color:var(--my-outline-hover-color);
2055
- }
2056
- .v-control-field--outlined:after{
2057
- content:none;
2058
- }
2059
- .v-control-field--outlined:focus-within{
2060
- box-shadow:0 0 1px var(--shadow-color), 0 0 2px 2px var(--focusShadow-color);
2061
1871
  }
2062
- .v-control-field__adornment--start{
2063
- padding-right:.25em;
2064
- }
2065
- .v-control-field__adornment--end{
2066
- padding-left:.25em;
2067
- }
2068
- .v-control-field__adornment .v-icon{
2069
- font-size:1.2em;
2070
- }
2071
- .v-textarea__input{
2072
- cursor:text;
1872
+ .v-data-table__table__cell{
1873
+ position:relative;
1874
+ vertical-align:middle;
1875
+ text-align:left;
1876
+ white-space:nowrap;
1877
+ border-bottom:thin solid rgba(0,0,0,.12);
1878
+ transition:background .2s;
2073
1879
  }
2074
- .v-textarea__input__element{
2075
- width:100%;
2076
- min-width:0;
2077
- padding:8px 0;
2078
- margin:0;
2079
- font-size:inherit;
2080
- line-height:inherit;
2081
- letter-spacing:inherit;
2082
- resize:none;
2083
- outline:0;
2084
- background:transparent;
2085
- border:0;
2086
- border-radius:0;
1880
+ .v-data-table__table__cell:first-child{
1881
+ padding-left:calc(var(--table-cell-horizontal-padding)*2);
2087
1882
  }
2088
- .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{
2089
- color:inherit !important;
2090
- transition:background-color 5000s;
2091
- -webkit-text-fill-color:#fff !important;
1883
+ .v-data-table__table__cell:last-child{
1884
+ padding-right:calc(var(--table-cell-horizontal-padding)*2);
2092
1885
  }
2093
- .v-textarea__input__element::-ms-clear{
2094
- display:none;
1886
+ .v-data-table__table__cell--left{
1887
+ text-align:left;
2095
1888
  }
2096
- .v-textarea__input__element::placeholder{
2097
- font-style:italic;
2098
- color:var(--control-disabled-color);
1889
+ .v-data-table__table__cell--center{
1890
+ text-align:center;
2099
1891
  }
2100
- .v-select__input{
1892
+ .v-data-table__table__cell--center .v-data-table__table__sort-icon--empty{
1893
+ display:flex;
1894
+ }
1895
+ .v-data-table__table__cell--right{
1896
+ text-align:right;
1897
+ }
1898
+ .v-data-table__table__cell[tabindex="0"]{
2101
1899
  cursor:pointer;
2102
1900
  }
2103
- .v-select__input__element{
2104
- position:absolute;
2105
- width:1px;
2106
- height:1px;
2107
- overflow:hidden;
2108
- white-space:nowrap;
2109
- clip:rect(0 0 0 0);
2110
- clip-path:inset(100%);
1901
+ .v-data-table__table__cell__tile{
1902
+ display:flex;
1903
+ align-items:center;
2111
1904
  }
2112
- .v-select__body{
2113
- padding:.5em 0;
1905
+ .v-data-table__table__sort-icon{
1906
+ width:25px;
1907
+ font-size:1.25em;
1908
+ opacity:0;
1909
+ transition:transform .2s,opacity .2s;
2114
1910
  }
2115
- .v-select__selections{
2116
- display:table;
2117
- width:100%;
2118
- table-layout:fixed;
1911
+ .v-data-table__table__sort-icon--empty{
1912
+ display:none;
2119
1913
  }
2120
- .v-select__selections__inner{
2121
- display:table-cell;
2122
- overflow:hidden;
2123
- text-overflow:ellipsis;
2124
- vertical-align:middle;
2125
- white-space:nowrap;
1914
+ .v-data-table__table__header .v-data-table__table__cell{
1915
+ user-select:none;
1916
+ background:hsla(0,0%,100%,.85);
1917
+ backdrop-filter:blur(3px);
2126
1918
  }
2127
- .v-select--multiple .v-select__selections{
2128
- display:block;
1919
+ .v-data-table__table__cell[tabindex="0"]:focus .v-data-table__table__sort-icon,.v-data-table__table__cell[tabindex="0"]:hover .v-data-table__table__sort-icon,.v-data-table__table__header .v-data-table__table__cell--active .v-data-table__table__sort-icon{
1920
+ opacity:1;
2129
1921
  }
2130
- .v-select--multiple .v-select__selections__inner{
2131
- display:block;
2132
- overflow:auto;
2133
- white-space:unset;
1922
+ .v-data-table__table__body tr:last-child .v-data-table__table__cell{
1923
+ border-bottom:none;
2134
1924
  }
2135
- .v-select--multiple .v-control-field__body{
2136
- padding:.2em 0;
1925
+ .v-data-table--fixed-header .v-data-table__table__header .v-data-table__table__cell{
1926
+ position:sticky;
1927
+ top:0;
1928
+ z-index:1;
2137
1929
  }
2138
- .v-select__placeholder{
2139
- font-style:italic;
2140
- color:var(--control-disabled-color);
1930
+ .v-text-counter{
1931
+ white-space:nowrap;
2141
1932
  }
2142
- .v-tab{
1933
+ .v-avatar{
2143
1934
  -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
2144
1935
  }
2145
- .v-tab::-moz-focus-inner{
1936
+ .v-avatar::-moz-focus-inner{
2146
1937
  border:0;
2147
1938
  }
2148
- .v-tab{
1939
+ .v-avatar{
2149
1940
  padding:0;
2150
1941
  appearance:none;
2151
1942
  touch-action:manipulation;
2152
1943
  cursor:pointer;
1944
+ user-select:none;
2153
1945
  outline:0;
2154
1946
  border-width:0;
2155
1947
  }
2156
- .v-tab,.v-tab:focus,.v-tab:hover{
1948
+ .v-avatar,.v-avatar:focus,.v-avatar:hover{
2157
1949
  text-decoration:none;
2158
1950
  }
2159
- .v-tab{
2160
- --tab-content-color:var(--palette-caption);
2161
- --tab-content-focus-color:var(--main-color);
2162
- --tab-content-opacity:0.7;
2163
- position:relative;
2164
- z-index:3;
2165
- 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);
2166
1958
  align-items:center;
2167
1959
  justify-content:center;
2168
- height:var(--tabs-height);
2169
- padding:0 1.25em;
2170
- font:inherit;
2171
- font-size:var(--tabs-font-size);
2172
- white-space:nowrap;
2173
- user-select:none;
2174
- 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;
2175
1975
  }
2176
- .v-tab:before{
2177
- position:absolute;
2178
- right:0;
2179
- bottom:0;
2180
- left:0;
2181
- z-index:1;
2182
- height:2px;
2183
- content:"";
2184
- background-color:var(--tab-content-focus-color);
2185
- border-radius:inherit;
2186
- transform:scaleX(0);
2187
- transition:all .25s;
1976
+ .v-avatar--clickable{
1977
+ cursor:pointer;
2188
1978
  }
2189
- .v-tab__content{
2190
- position:relative;
2191
- z-index:2;
2192
- display:flex;
2193
- align-items:center;
2194
- line-height:1.2;
2195
- color:var(--tab-content-color);
2196
- text-align:center;
2197
- opacity:var(--tab-content-opacity);
2198
- transition:all .25s ease;
1979
+ .v-avatar--sm{
1980
+ --avatar-size:36px;
1981
+ --avatar-font-size:calc(var(--avatar-base-font-size)*0.75);
2199
1982
  }
2200
- .v-tab__icon{
2201
- margin-right:8px;
2202
- font-size:120%;
1983
+ .v-avatar--md{
1984
+ --avatar-size:48px;
2203
1985
  }
2204
- .v-tab:hover{
2205
- --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);
2206
1989
  }
2207
- .v-tab--active{
2208
- --tab-content-color:rgba(0,0,0,.87);
2209
- pointer-events:none;
2210
- background:var(--tabs-color);
2211
- --tab-content-opacity:1;
1990
+ .v-avatar--rounded{
1991
+ --avatar-radius:4px;
2212
1992
  }
2213
- .v-tab--active:before{
2214
- 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;
2215
2007
  }
2216
2008
  .v-checkable{
2217
2009
  --outer-size:var(--control-checkable-outer-size);
@@ -2293,11 +2085,132 @@
2293
2085
  .v-checkable--disabled .v-checkable__label{
2294
2086
  color:var(--color);
2295
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;
2121
+ }
2122
+ .v-tab:before{
2123
+ position:absolute;
2124
+ right:0;
2125
+ bottom:0;
2126
+ left:0;
2127
+ z-index:1;
2128
+ height:2px;
2129
+ content:"";
2130
+ background-color:var(--tab-content-focus-color);
2131
+ border-radius:inherit;
2132
+ transform:scaleX(0);
2133
+ transition:all .25s;
2134
+ }
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;
2145
+ }
2146
+ .v-tab__icon{
2147
+ margin-right:8px;
2148
+ font-size:120%;
2149
+ }
2150
+ .v-tab:hover{
2151
+ --tab-content-color:var(--tab-content-focus-color);
2152
+ }
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
+ }
2159
+ .v-tab--active:before{
2160
+ transform:scaleX(1);
2161
+ }
2296
2162
  @media screen and (width >= 320px){
2297
2163
  .v-data-table__controls__pagination{
2298
2164
  flex:0 0 50%;
2299
2165
  width:50%;
2300
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));
2301
2214
  }.v-dialog{
2302
2215
  position:relative;
2303
2216
  display:inline-block;
@@ -2339,24 +2252,138 @@
2339
2252
 
2340
2253
  .v-dialog--dense .v-dialog__actions{
2341
2254
  padding-top:0;
2342
- }.v-tooltip{
2343
- --menu-shadow:var(--tooltip-shadow);
2344
- --v-stack-slide-amount:10px;
2345
- font-size:var(--tooltip-font-size);
2346
- border-radius:var(--tooltip-radius);
2347
- }
2348
-
2349
- .v-tooltip .v-menu__body{
2350
- color:var(--tooltip-color) !important;
2351
- background:var(--tooltip-background) !important;
2352
- }
2353
-
2354
- .v-tooltip__inner{
2355
- display:inline-block;
2356
- padding:var(--tooltip-padding);
2357
- }.v-menu{
2358
- border-radius:2px;
2359
- box-shadow:var(--menu-shadow);
2255
+ }@layer vui-normalize, vui-color-scheme, vue-disabled-reason, vue-loading, vue-app-layout, vui;
2256
+ @layer vui-normalize{
2257
+ /*!
2258
+ * Forked from
2259
+ * normalize.css v8.0.1 | MIT License | https://github.com/necolas/normalize.css
2260
+ */
2261
+ *,:after,:before{
2262
+ box-sizing:border-box;
2263
+ }
2264
+ html{
2265
+ line-height:1.15;
2266
+ -webkit-text-size-adjust:100%;
2267
+ }
2268
+ body{
2269
+ margin:0;
2270
+ }
2271
+ main{
2272
+ display:block;
2273
+ }
2274
+ h1{
2275
+ margin:.67em 0;
2276
+ font-size:2em;
2277
+ }
2278
+ hr{
2279
+ height:0;
2280
+ overflow:visible;
2281
+ }
2282
+ pre{
2283
+ font-family:monospace,monospace;
2284
+ font-size:1em;
2285
+ }
2286
+ a{
2287
+ background-color:transparent;
2288
+ }
2289
+ abbr[title]{
2290
+ text-decoration:underline;
2291
+ text-decoration:underline dotted;
2292
+ border-bottom:none;
2293
+ }
2294
+ b,strong{
2295
+ font-weight:bolder;
2296
+ }
2297
+ code,kbd,samp{
2298
+ font-family:monospace,monospace;
2299
+ font-size:1em;
2300
+ }
2301
+ small{
2302
+ font-size:80%;
2303
+ }
2304
+ sub,sup{
2305
+ position:relative;
2306
+ font-size:75%;
2307
+ line-height:0;
2308
+ vertical-align:baseline;
2309
+ }
2310
+ sub{
2311
+ bottom:-.25em;
2312
+ }
2313
+ sup{
2314
+ top:-.5em;
2315
+ }
2316
+ img{
2317
+ border-style:none;
2318
+ }
2319
+ button,input,optgroup,select,textarea{
2320
+ margin:0;
2321
+ font-family:inherit;
2322
+ font-size:100%;
2323
+ line-height:1.15;
2324
+ color:inherit;
2325
+ }
2326
+ button,input{
2327
+ overflow:visible;
2328
+ }
2329
+ button,select{
2330
+ text-transform:none;
2331
+ }
2332
+ [type=button],[type=reset],[type=submit],button{
2333
+ -webkit-appearance:button;
2334
+ }
2335
+ [type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{
2336
+ padding:0;
2337
+ border-style:none;
2338
+ }
2339
+ [type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{
2340
+ outline:1px dotted ButtonText;
2341
+ }
2342
+ fieldset{
2343
+ padding:.35em .75em .625em;
2344
+ }
2345
+ legend{
2346
+ display:table;
2347
+ max-width:100%;
2348
+ padding:0;
2349
+ color:inherit;
2350
+ white-space:normal;
2351
+ }
2352
+ progress{
2353
+ vertical-align:baseline;
2354
+ }
2355
+ textarea{
2356
+ overflow:auto;
2357
+ }
2358
+ [type=checkbox],[type=radio]{
2359
+ padding:0;
2360
+ }
2361
+ [type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{
2362
+ height:auto;
2363
+ }
2364
+ [type=search]{
2365
+ -webkit-appearance:textfield;
2366
+ outline-offset:-2px;
2367
+ }
2368
+ [type=search]::-webkit-search-decoration{
2369
+ -webkit-appearance:none;
2370
+ }
2371
+ ::-webkit-file-upload-button{
2372
+ -webkit-appearance:button;
2373
+ font:inherit;
2374
+ }
2375
+ details{
2376
+ display:block;
2377
+ }
2378
+ summary{
2379
+ display:list-item;
2380
+ }
2381
+ [hidden],template{
2382
+ display:none;
2383
+ }
2384
+ button{
2385
+ background-color:transparent;
2386
+ }
2360
2387
  }.v-snackbar{
2361
2388
  font-size:14px;
2362
2389
  box-shadow:var(--snackbar-shadow);
@@ -2389,53 +2416,24 @@
2389
2416
 
2390
2417
  .v-snackbar__close{
2391
2418
  margin:0;
2392
- }
2393
- @keyframes v-skelton-loader-bone-loading{
2394
- to{
2395
- transform:translateX(100%);
2396
- }
2397
- }.v-sheet-modal{
2398
- --v-sheet-modal-width:90vw;
2399
- --v-sheet-modal-max-width:none;
2400
- --v-sheet-background:var(--palette-foundation);
2401
- position:fixed;
2402
- top:0;
2403
- right:0;
2404
- bottom:0;
2405
- box-sizing:border-box;
2406
- display:flex;
2407
- flex-direction:column;
2408
- width:var(--v-sheet-modal-width);
2409
- max-width:var(--v-sheet-modal-max-width);
2410
- padding:0;
2411
- outline:0;
2412
- box-shadow:var(--dialog-shadow);
2413
- transition:transform var(--v-stack-transition-slowly);
2414
- }
2415
-
2416
- .v-sheet-modal__header{
2417
- position:relative;
2418
- z-index:1;
2419
- flex:0 0;
2420
- background-color:var(--v-sheet-background);
2421
- }
2422
-
2423
- .v-sheet-modal__scroller{
2424
- flex:1 1;
2425
- -webkit-overflow-scrolling:touch;
2426
- height:100%;
2427
- overflow-y:auto;
2428
- background-color:var(--v-sheet-background);
2419
+ }.v-tooltip{
2420
+ --menu-shadow:var(--tooltip-shadow);
2421
+ --v-stack-slide-amount:10px;
2422
+ font-size:var(--tooltip-font-size);
2423
+ border-radius:var(--tooltip-radius);
2429
2424
  }
2430
2425
 
2431
- .v-sheet-modal--has-active-child{
2432
- transform:translateX(calc(-100vw + var(--v-sheet-modal-width)));
2426
+ .v-tooltip .v-menu__body{
2427
+ color:var(--tooltip-color) !important;
2428
+ background:var(--tooltip-background) !important;
2433
2429
  }
2434
2430
 
2435
- .v-sheet-modal-enter-active,.v-sheet-modal-leave-active{
2436
- transition:transform var(--v-stack-transition-slowly);
2431
+ .v-tooltip__inner{
2432
+ display:inline-block;
2433
+ padding:var(--tooltip-padding);
2437
2434
  }
2438
-
2439
- .v-sheet-modal-enter-from,.v-sheet-modal-leave-to{
2440
- transform:translateX(var(--v-sheet-modal-width));
2435
+ @keyframes v-skelton-loader-bone-loading{
2436
+ to{
2437
+ transform:translateX(100%);
2438
+ }
2441
2439
  }