@fastkit/vui 1.4.1 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builtins.css +18 -0
- package/dist/vui.css +1086 -1086
- package/dist/vui.d.mts +25 -25
- package/package.json +18 -18
package/dist/vui.css
CHANGED
|
@@ -18,60 +18,6 @@
|
|
|
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
|
-
}
|
|
75
21
|
:root{
|
|
76
22
|
--root-em:16px;
|
|
77
23
|
--root-spacing:8px;
|
|
@@ -533,6 +479,142 @@
|
|
|
533
479
|
.wysiwyg p{
|
|
534
480
|
margin:0;
|
|
535
481
|
}
|
|
482
|
+
.v-button-group{
|
|
483
|
+
display:inline-flex;
|
|
484
|
+
align-items:stretch;
|
|
485
|
+
}
|
|
486
|
+
.v-button-group__item{
|
|
487
|
+
position:relative;
|
|
488
|
+
margin:0;
|
|
489
|
+
}
|
|
490
|
+
.v-button-group__item--has-left{
|
|
491
|
+
border-top-left-radius:0;
|
|
492
|
+
border-bottom-left-radius:0;
|
|
493
|
+
}
|
|
494
|
+
.v-button-group__item--has-right{
|
|
495
|
+
border-top-right-radius:0;
|
|
496
|
+
border-bottom-right-radius:0;
|
|
497
|
+
}
|
|
498
|
+
.v-button-group__item:focus{
|
|
499
|
+
z-index:1;
|
|
500
|
+
}
|
|
501
|
+
.v-card-content{
|
|
502
|
+
padding:var(--card-content-padding);
|
|
503
|
+
}
|
|
504
|
+
.v-busy-image{
|
|
505
|
+
position:relative;
|
|
506
|
+
display:inline-block;
|
|
507
|
+
max-width:100%;
|
|
508
|
+
vertical-align:bottom;
|
|
509
|
+
}
|
|
510
|
+
.v-busy-image--clickable{
|
|
511
|
+
cursor:pointer;
|
|
512
|
+
}
|
|
513
|
+
.v-busy-image--cover{
|
|
514
|
+
background-repeat:no-repeat;
|
|
515
|
+
background-position:50%;
|
|
516
|
+
background-size:cover;
|
|
517
|
+
}
|
|
518
|
+
.v-busy-image--loading:before{
|
|
519
|
+
position:absolute;
|
|
520
|
+
inset:0;
|
|
521
|
+
display:block;
|
|
522
|
+
content:"";
|
|
523
|
+
background:rgba(0,0,0,.1);
|
|
524
|
+
animation:v-tiny-image-blink 1.5s ease-in-out infinite normal;
|
|
525
|
+
}
|
|
526
|
+
.v-busy-image__node{
|
|
527
|
+
position:relative;
|
|
528
|
+
display:inline-block;
|
|
529
|
+
max-width:100%;
|
|
530
|
+
vertical-align:bottom;
|
|
531
|
+
}
|
|
532
|
+
.v-busy-image__slot{
|
|
533
|
+
position:absolute;
|
|
534
|
+
top:0;
|
|
535
|
+
left:0;
|
|
536
|
+
width:100%;
|
|
537
|
+
height:100%;
|
|
538
|
+
pointer-events:none;
|
|
539
|
+
}
|
|
540
|
+
@keyframes v-tiny-image-blink{
|
|
541
|
+
0%{
|
|
542
|
+
opacity:1;
|
|
543
|
+
}
|
|
544
|
+
50%{
|
|
545
|
+
opacity:0;
|
|
546
|
+
}
|
|
547
|
+
to{
|
|
548
|
+
opacity:1;
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
.v-hero{
|
|
552
|
+
--hero-background-color:var(--main-color);
|
|
553
|
+
--hero-text-color:var(--text-color);
|
|
554
|
+
display:flex;
|
|
555
|
+
align-items:center;
|
|
556
|
+
padding:20px 30px;
|
|
557
|
+
margin:0;
|
|
558
|
+
color:var(--hero-text-color);
|
|
559
|
+
background-color:var(--hero-background-color);
|
|
560
|
+
}
|
|
561
|
+
.v-hero__title{
|
|
562
|
+
flex:1 1 100%;
|
|
563
|
+
margin:0;
|
|
564
|
+
font-size:1.75rem;
|
|
565
|
+
font-weight:300;
|
|
566
|
+
line-height:1;
|
|
567
|
+
color:inherit;
|
|
568
|
+
}
|
|
569
|
+
.v-hero__adornment{
|
|
570
|
+
flex:0 0 auto;
|
|
571
|
+
padding-left:10px;
|
|
572
|
+
margin-left:auto;
|
|
573
|
+
}
|
|
574
|
+
.v-content-switcher{
|
|
575
|
+
position:relative;
|
|
576
|
+
display:block;
|
|
577
|
+
width:100%;
|
|
578
|
+
overflow:hidden;
|
|
579
|
+
transition:var(--transition-tab);
|
|
580
|
+
}
|
|
581
|
+
.v-content-switcher__content{
|
|
582
|
+
width:100%;
|
|
583
|
+
}
|
|
584
|
+
.v-content-switcher-prev-enter-active,.v-content-switcher-prev-leave-active{
|
|
585
|
+
transition:var(--transition-tab);
|
|
586
|
+
}
|
|
587
|
+
.v-content-switcher-prev-enter-from{
|
|
588
|
+
transform:translateX(-100%);
|
|
589
|
+
}
|
|
590
|
+
.v-content-switcher-prev-enter-to,.v-content-switcher-prev-leave{
|
|
591
|
+
transform:translateX(0);
|
|
592
|
+
}
|
|
593
|
+
.v-content-switcher-prev-leave-active{
|
|
594
|
+
position:absolute;
|
|
595
|
+
top:0;
|
|
596
|
+
left:0;
|
|
597
|
+
}
|
|
598
|
+
.v-content-switcher-prev-leave-to{
|
|
599
|
+
transform:translateX(100%);
|
|
600
|
+
}
|
|
601
|
+
.v-content-switcher-next-enter-active,.v-content-switcher-next-leave-active{
|
|
602
|
+
transition:var(--transition-tab);
|
|
603
|
+
}
|
|
604
|
+
.v-content-switcher-next-enter-from{
|
|
605
|
+
transform:translateX(100%);
|
|
606
|
+
}
|
|
607
|
+
.v-content-switcher-next-enter-to,.v-content-switcher-next-leave{
|
|
608
|
+
transform:translateX(0);
|
|
609
|
+
}
|
|
610
|
+
.v-content-switcher-next-leave-active{
|
|
611
|
+
position:absolute;
|
|
612
|
+
top:0;
|
|
613
|
+
left:0;
|
|
614
|
+
}
|
|
615
|
+
.v-content-switcher-next-leave-to{
|
|
616
|
+
transform:translateX(-100%);
|
|
617
|
+
}
|
|
536
618
|
.v-button{
|
|
537
619
|
--padding:1em;
|
|
538
620
|
--height:2.5714285714em;
|
|
@@ -633,160 +715,81 @@
|
|
|
633
715
|
z-index:1;
|
|
634
716
|
transform:translate(-50%, -50%);
|
|
635
717
|
}
|
|
636
|
-
.v-
|
|
637
|
-
|
|
638
|
-
display:block;
|
|
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);
|
|
718
|
+
.v-text-counter{
|
|
719
|
+
white-space:nowrap;
|
|
652
720
|
}
|
|
653
|
-
.v-
|
|
654
|
-
|
|
655
|
-
border-radius:inherit;
|
|
721
|
+
.v-text-field__input{
|
|
722
|
+
cursor:text;
|
|
656
723
|
}
|
|
657
|
-
.v-
|
|
658
|
-
|
|
724
|
+
.v-text-field__input__element{
|
|
725
|
+
width:100%;
|
|
726
|
+
min-width:0;
|
|
727
|
+
padding:0;
|
|
728
|
+
margin:0;
|
|
729
|
+
overflow:hidden;
|
|
730
|
+
text-overflow:ellipsis;
|
|
731
|
+
font-size:inherit;
|
|
732
|
+
line-height:inherit;
|
|
733
|
+
letter-spacing:inherit;
|
|
734
|
+
white-space:nowrap;
|
|
735
|
+
outline:0;
|
|
736
|
+
background:transparent;
|
|
737
|
+
border:0;
|
|
738
|
+
border-radius:0;
|
|
659
739
|
}
|
|
660
|
-
.v-
|
|
661
|
-
|
|
662
|
-
|
|
740
|
+
.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{
|
|
741
|
+
color:inherit !important;
|
|
742
|
+
transition:background-color 5000s;
|
|
743
|
+
-webkit-text-fill-color:#fff !important;
|
|
663
744
|
}
|
|
664
|
-
.v-
|
|
665
|
-
|
|
666
|
-
border-bottom-left-radius:inherit;
|
|
745
|
+
.v-text-field__input__element::-ms-clear{
|
|
746
|
+
display:none;
|
|
667
747
|
}
|
|
668
|
-
.v-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
margin:1em 0 0;
|
|
672
|
-
font-size:.75rem;
|
|
673
|
-
color:var(--caption-color);
|
|
674
|
-
text-transform:uppercase;
|
|
748
|
+
.v-text-field__input__element::placeholder{
|
|
749
|
+
font-style:italic;
|
|
750
|
+
color:var(--control-disabled-color);
|
|
675
751
|
}
|
|
676
|
-
.v-
|
|
677
|
-
|
|
752
|
+
.v-select__input{
|
|
753
|
+
cursor:pointer;
|
|
678
754
|
}
|
|
679
|
-
.v-
|
|
680
|
-
position:relative;
|
|
681
|
-
display:inline-block;
|
|
682
|
-
max-width:100%;
|
|
683
|
-
vertical-align:bottom;
|
|
684
|
-
}
|
|
685
|
-
.v-busy-image--clickable{
|
|
686
|
-
cursor:pointer;
|
|
687
|
-
}
|
|
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{
|
|
755
|
+
.v-select__input__element{
|
|
694
756
|
position:absolute;
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
757
|
+
width:1px;
|
|
758
|
+
height:1px;
|
|
759
|
+
overflow:hidden;
|
|
760
|
+
white-space:nowrap;
|
|
761
|
+
clip:rect(0 0 0 0);
|
|
762
|
+
clip-path:inset(100%);
|
|
700
763
|
}
|
|
701
|
-
.v-
|
|
702
|
-
|
|
703
|
-
display:inline-block;
|
|
704
|
-
max-width:100%;
|
|
705
|
-
vertical-align:bottom;
|
|
764
|
+
.v-select__body{
|
|
765
|
+
padding:.5em 0;
|
|
706
766
|
}
|
|
707
|
-
.v-
|
|
708
|
-
|
|
709
|
-
top:0;
|
|
710
|
-
left:0;
|
|
767
|
+
.v-select__selections{
|
|
768
|
+
display:table;
|
|
711
769
|
width:100%;
|
|
712
|
-
|
|
713
|
-
pointer-events:none;
|
|
770
|
+
table-layout:fixed;
|
|
714
771
|
}
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
}
|
|
722
|
-
to{
|
|
723
|
-
opacity:1;
|
|
724
|
-
}
|
|
772
|
+
.v-select__selections__inner{
|
|
773
|
+
display:table-cell;
|
|
774
|
+
overflow:hidden;
|
|
775
|
+
text-overflow:ellipsis;
|
|
776
|
+
vertical-align:middle;
|
|
777
|
+
white-space:nowrap;
|
|
725
778
|
}
|
|
726
|
-
.v-
|
|
779
|
+
.v-select--multiple .v-select__selections{
|
|
727
780
|
display:block;
|
|
728
|
-
width:100%;
|
|
729
|
-
height:100%;
|
|
730
|
-
}
|
|
731
|
-
.v-drawer-layout__inner{
|
|
732
|
-
display:flex;
|
|
733
|
-
flex-direction:column;
|
|
734
|
-
align-items:stretch;
|
|
735
|
-
width:100%;
|
|
736
|
-
height:100%;
|
|
737
|
-
}
|
|
738
|
-
.v-drawer-layout__header{
|
|
739
|
-
display:flex;
|
|
740
|
-
flex:0 0 var(--val-topToolbar-height);
|
|
741
|
-
align-items:center;
|
|
742
|
-
justify-content:center;
|
|
743
|
-
height:var(--val-topToolbar-height);
|
|
744
|
-
}
|
|
745
|
-
.v-drawer-layout__body{
|
|
746
|
-
flex:1 1 100%;
|
|
747
|
-
overflow:auto;
|
|
748
|
-
-webkit-overflow-scrolling:touch;
|
|
749
|
-
}
|
|
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
781
|
}
|
|
760
|
-
.v-
|
|
761
|
-
position:absolute;
|
|
762
|
-
inset:0;
|
|
763
|
-
z-index:10;
|
|
782
|
+
.v-select--multiple .v-select__selections__inner{
|
|
764
783
|
display:block;
|
|
765
|
-
|
|
766
|
-
|
|
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
|
+
overflow:auto;
|
|
785
|
+
white-space:unset;
|
|
784
786
|
}
|
|
785
|
-
.v-
|
|
786
|
-
|
|
787
|
+
.v-select--multiple .v-control-field__body{
|
|
788
|
+
padding:.2em 0;
|
|
787
789
|
}
|
|
788
|
-
.v-
|
|
789
|
-
|
|
790
|
+
.v-select__placeholder{
|
|
791
|
+
font-style:italic;
|
|
792
|
+
color:var(--control-disabled-color);
|
|
790
793
|
}
|
|
791
794
|
.v-form-control{
|
|
792
795
|
display:flex;
|
|
@@ -857,224 +860,148 @@
|
|
|
857
860
|
flex:0 1;
|
|
858
861
|
margin-left:auto;
|
|
859
862
|
}
|
|
860
|
-
.v-
|
|
861
|
-
--
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
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;
|
|
863
|
+
.v-paper{
|
|
864
|
+
--paper-radius:var(--control-field-radius);
|
|
865
|
+
display:block;
|
|
866
|
+
color:var(--paper-text-color);
|
|
867
|
+
background-color:var(--paper-background--color);
|
|
868
|
+
border-radius:var(--paper-radius);
|
|
877
869
|
}
|
|
878
|
-
.v-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
870
|
+
.v-paper--plain{
|
|
871
|
+
--paper-background--color:var(--palette-background);
|
|
872
|
+
--paper-text-color:inherit;
|
|
873
|
+
--paper-link-color:var(--link-color);
|
|
882
874
|
}
|
|
883
|
-
.v-
|
|
884
|
-
-
|
|
875
|
+
.v-paper--has-color{
|
|
876
|
+
--paper-background--color:var(--main-color);
|
|
877
|
+
--paper-text-color:var(--text-color);
|
|
878
|
+
--paper-link-color:var(--nav-color);
|
|
885
879
|
}
|
|
886
|
-
.v-
|
|
887
|
-
|
|
880
|
+
.v-paper__inner{
|
|
881
|
+
position:relative;
|
|
882
|
+
border-radius:inherit;
|
|
888
883
|
}
|
|
889
|
-
.v-
|
|
890
|
-
|
|
891
|
-
appearance:none;
|
|
892
|
-
touch-action:manipulation;
|
|
893
|
-
cursor:pointer;
|
|
894
|
-
user-select:none;
|
|
895
|
-
outline:0;
|
|
896
|
-
border-width:0;
|
|
884
|
+
.v-paper--square{
|
|
885
|
+
--paper-radius:0px;
|
|
897
886
|
}
|
|
898
|
-
.v-
|
|
899
|
-
|
|
887
|
+
.v-paper__header{
|
|
888
|
+
border-top-left-radius:inherit;
|
|
889
|
+
border-top-right-radius:inherit;
|
|
900
890
|
}
|
|
901
|
-
.v-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
align-items:center;
|
|
905
|
-
justify-content:center;
|
|
906
|
-
height:var(--chip-height);
|
|
907
|
-
padding:0 var(--chip-padding);
|
|
908
|
-
overflow:hidden;
|
|
909
|
-
font-size:var(--chip-font-size);
|
|
910
|
-
font-weight:var(--chip-font-weight);
|
|
911
|
-
line-height:1;
|
|
912
|
-
vertical-align:bottom;
|
|
913
|
-
text-align:center;
|
|
914
|
-
white-space:nowrap;
|
|
915
|
-
cursor:default;
|
|
916
|
-
border-style:solid;
|
|
917
|
-
border-width:1px;
|
|
918
|
-
border-radius:var(--chip-radius);
|
|
919
|
-
--shadow-color:transparent !important;
|
|
920
|
-
--focusShadow-color:transparent !important;
|
|
891
|
+
.v-paper__footer{
|
|
892
|
+
border-bottom-right-radius:inherit;
|
|
893
|
+
border-bottom-left-radius:inherit;
|
|
921
894
|
}
|
|
922
|
-
.v-
|
|
923
|
-
|
|
895
|
+
.v-navigation-item--opened{
|
|
896
|
+
--tile-background:var(--tile-active-background);
|
|
897
|
+
--tile-text-color:var(--tile-text-active-color);
|
|
924
898
|
}
|
|
925
|
-
.v-
|
|
926
|
-
|
|
927
|
-
--chip-font-size:var(--chip-font-size-xs);
|
|
899
|
+
.v-navigation-item__expand{
|
|
900
|
+
transition:height .2s;
|
|
928
901
|
}
|
|
929
|
-
.v-
|
|
930
|
-
--
|
|
931
|
-
--chip-font-size:var(--chip-font-size-sm);
|
|
902
|
+
.v-navigation-item__expand .v-navigation-item{
|
|
903
|
+
--tile-background:var(--tile-active-background);
|
|
932
904
|
}
|
|
933
|
-
.v-
|
|
934
|
-
--
|
|
935
|
-
--chip-font-size:var(--chip-font-size-md);
|
|
905
|
+
.v-navigation-item--depth-1{
|
|
906
|
+
--depth-padding:calc(var(--list-tile-padding)*2);
|
|
936
907
|
}
|
|
937
|
-
.v-
|
|
938
|
-
--
|
|
939
|
-
--chip-font-size:var(--chip-font-size-lg);
|
|
908
|
+
.v-navigation-item--depth-2{
|
|
909
|
+
--depth-padding:calc(var(--list-tile-padding)*3);
|
|
940
910
|
}
|
|
941
|
-
.v-
|
|
942
|
-
--
|
|
943
|
-
--chip-font-size:var(--chip-font-size-xl);
|
|
911
|
+
.v-navigation-item--depth-3{
|
|
912
|
+
--depth-padding:calc(var(--list-tile-padding)*4);
|
|
944
913
|
}
|
|
945
|
-
.v-
|
|
946
|
-
|
|
914
|
+
.v-navigation__caption{
|
|
915
|
+
display:block;
|
|
916
|
+
padding:calc(var(--root-em)*.625) calc(var(--root-em)*1.5625);
|
|
917
|
+
margin:1em 0 0;
|
|
918
|
+
font-size:.75rem;
|
|
919
|
+
color:var(--caption-color);
|
|
920
|
+
text-transform:uppercase;
|
|
947
921
|
}
|
|
948
|
-
.v-
|
|
949
|
-
|
|
950
|
-
|
|
922
|
+
.v-drawer-layout{
|
|
923
|
+
display:block;
|
|
924
|
+
width:100%;
|
|
925
|
+
height:100%;
|
|
951
926
|
}
|
|
952
|
-
.v-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
--avatar-size:14px;
|
|
958
|
-
}
|
|
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;
|
|
965
|
-
}
|
|
966
|
-
.v-skelton-loader-bone:after{
|
|
967
|
-
position:absolute;
|
|
968
|
-
top:0;
|
|
969
|
-
right:0;
|
|
970
|
-
left:0;
|
|
971
|
-
z-index:1;
|
|
927
|
+
.v-drawer-layout__inner{
|
|
928
|
+
display:flex;
|
|
929
|
+
flex-direction:column;
|
|
930
|
+
align-items:stretch;
|
|
931
|
+
width:100%;
|
|
972
932
|
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;
|
|
977
|
-
}
|
|
978
|
-
.v-breadcrumbs{
|
|
979
|
-
display:block;
|
|
980
|
-
margin:1.5em auto;
|
|
981
|
-
font-size:var(--breadcrumbs-font-size);
|
|
982
|
-
}
|
|
983
|
-
.v-breadcrumbs__list{
|
|
984
|
-
display:inline-flex;
|
|
985
|
-
flex-wrap:wrap;
|
|
986
|
-
align-items:center;
|
|
987
|
-
vertical-align:bottom;
|
|
988
|
-
}
|
|
989
|
-
.v-breadcrumbs__divider,.v-breadcrumbs__item,.v-breadcrumbs__list{
|
|
990
|
-
padding:0;
|
|
991
|
-
margin:0;
|
|
992
|
-
list-style:none;
|
|
993
933
|
}
|
|
994
|
-
.v-
|
|
995
|
-
display:
|
|
934
|
+
.v-drawer-layout__header{
|
|
935
|
+
display:flex;
|
|
936
|
+
flex:0 0 var(--val-topToolbar-height);
|
|
996
937
|
align-items:center;
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
text-decoration:none;
|
|
938
|
+
justify-content:center;
|
|
939
|
+
height:var(--val-topToolbar-height);
|
|
1000
940
|
}
|
|
1001
|
-
.v-
|
|
1002
|
-
|
|
1003
|
-
|
|
941
|
+
.v-drawer-layout__body{
|
|
942
|
+
flex:1 1 100%;
|
|
943
|
+
overflow:auto;
|
|
944
|
+
-webkit-overflow-scrolling:touch;
|
|
1004
945
|
}
|
|
1005
|
-
.v-
|
|
1006
|
-
|
|
1007
|
-
|
|
946
|
+
.v-drawer-layout__footer{
|
|
947
|
+
flex:0 0 auto;
|
|
948
|
+
margin-top:auto;
|
|
1008
949
|
}
|
|
1009
|
-
.v-
|
|
1010
|
-
|
|
1011
|
-
top:1px;
|
|
950
|
+
.v-toolbar{
|
|
951
|
+
--height:var(--toolbar-height);
|
|
1012
952
|
display:flex;
|
|
1013
953
|
align-items:center;
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
width:.5em;
|
|
1020
|
-
height:.5em;
|
|
1021
|
-
margin-left:-.25em;
|
|
1022
|
-
border-top:1px solid;
|
|
1023
|
-
border-right:1px solid;
|
|
1024
|
-
transform:rotate(45deg);
|
|
954
|
+
width:100%;
|
|
955
|
+
height:var(--height);
|
|
956
|
+
padding:0 calc(var(--root-em)*1.5);
|
|
957
|
+
margin:0;
|
|
958
|
+
border-radius:inherit;
|
|
1025
959
|
}
|
|
1026
|
-
.v-
|
|
1027
|
-
--
|
|
960
|
+
.v-toolbar--plain{
|
|
961
|
+
--main-color:var(--palette-background);
|
|
1028
962
|
}
|
|
1029
|
-
.v-
|
|
1030
|
-
position:relative;
|
|
1031
|
-
display:block;
|
|
1032
|
-
width:100%;
|
|
963
|
+
.v-app-layout__header>.v-toolbar{
|
|
1033
964
|
height:100%;
|
|
1034
|
-
transition:border-color .2s,background-color .2s;
|
|
1035
965
|
}
|
|
1036
|
-
.v-
|
|
1037
|
-
|
|
1038
|
-
display:block;
|
|
1039
|
-
content:"";
|
|
1040
|
-
border-radius:100%;
|
|
1041
|
-
}
|
|
1042
|
-
.v-radio__faux:before{
|
|
1043
|
-
inset:0;
|
|
1044
|
-
border:2px solid;
|
|
966
|
+
.v-toolbar--dense{
|
|
967
|
+
--height:var(--toolbar-dense-height);
|
|
1045
968
|
}
|
|
1046
|
-
.v-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
width:50%;
|
|
1050
|
-
height:50%;
|
|
1051
|
-
background:currentColor;
|
|
1052
|
-
transform:translate(-50%, -50%) scale(0);
|
|
1053
|
-
transition:transform .2s;
|
|
969
|
+
.v-file-input__inner{
|
|
970
|
+
display:flex;
|
|
971
|
+
align-items:stretch;
|
|
1054
972
|
}
|
|
1055
|
-
.v-
|
|
1056
|
-
|
|
973
|
+
.v-file-input__button{
|
|
974
|
+
flex:0 0 auto;
|
|
975
|
+
height:auto;
|
|
976
|
+
margin:0;
|
|
977
|
+
margin-bottom:1px !important;
|
|
978
|
+
border-top-right-radius:0;
|
|
979
|
+
border-bottom-right-radius:0;
|
|
1057
980
|
}
|
|
1058
|
-
.v-
|
|
1059
|
-
|
|
1060
|
-
|
|
981
|
+
.v-file-input__selections{
|
|
982
|
+
display:flex;
|
|
983
|
+
flex-wrap:wrap;
|
|
984
|
+
align-items:center;
|
|
985
|
+
align-self:stretch;
|
|
986
|
+
padding:4px 6px;
|
|
1061
987
|
}
|
|
1062
|
-
.v-
|
|
1063
|
-
--
|
|
1064
|
-
--my-faux-bg-color:var(--color);
|
|
988
|
+
.v-file-input__placeholder{
|
|
989
|
+
color:var(--control-disabled-color);
|
|
1065
990
|
}
|
|
1066
|
-
.v-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
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;
|
|
991
|
+
.v-file-input__input{
|
|
992
|
+
flex:1 1 100%;
|
|
993
|
+
cursor:text;
|
|
994
|
+
border-top-left-radius:0;
|
|
995
|
+
border-bottom-left-radius:0;
|
|
1075
996
|
}
|
|
1076
|
-
.v-
|
|
1077
|
-
|
|
997
|
+
.v-file-input__input__element{
|
|
998
|
+
position:absolute;
|
|
999
|
+
width:1px;
|
|
1000
|
+
height:1px;
|
|
1001
|
+
overflow:hidden;
|
|
1002
|
+
white-space:nowrap;
|
|
1003
|
+
clip:rect(0 0 0 0);
|
|
1004
|
+
clip-path:inset(100%);
|
|
1078
1005
|
}
|
|
1079
1006
|
.v-control-field{
|
|
1080
1007
|
position:relative;
|
|
@@ -1199,80 +1126,146 @@
|
|
|
1199
1126
|
.v-control-field__adornment .v-icon{
|
|
1200
1127
|
font-size:1.2em;
|
|
1201
1128
|
}
|
|
1202
|
-
.v-
|
|
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);
|
|
1129
|
+
.v-card-actions{
|
|
1210
1130
|
display:flex;
|
|
1211
1131
|
align-items:center;
|
|
1212
|
-
|
|
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;
|
|
1226
|
-
}
|
|
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));
|
|
1132
|
+
padding:var(--card-actions-padding);
|
|
1231
1133
|
}
|
|
1232
|
-
.v-
|
|
1233
|
-
|
|
1234
|
-
|
|
1134
|
+
.v-card-actions .v-btn{
|
|
1135
|
+
margin-top:0;
|
|
1136
|
+
margin-bottom:0;
|
|
1235
1137
|
}
|
|
1236
|
-
.v-
|
|
1237
|
-
--
|
|
1238
|
-
--tile-text-color:var(--tile-text-active-color);
|
|
1239
|
-
--tile-background:var(--tile-active-background);
|
|
1138
|
+
.v-data-table{
|
|
1139
|
+
--controls-vertial-margin:0.625em;
|
|
1240
1140
|
}
|
|
1241
|
-
.v-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
line-height:1.5;
|
|
1141
|
+
.v-card-content .v-data-table{
|
|
1142
|
+
margin-right:calc(var(--card-content-padding)*-1);
|
|
1143
|
+
margin-left:calc(var(--card-content-padding)*-1);
|
|
1245
1144
|
}
|
|
1246
|
-
.v-
|
|
1247
|
-
|
|
1145
|
+
.v-data-table__controls{
|
|
1146
|
+
flex-wrap:wrap;
|
|
1147
|
+
justify-content:flex-end;
|
|
1248
1148
|
}
|
|
1249
|
-
.v-
|
|
1250
|
-
|
|
1251
|
-
|
|
1149
|
+
.v-data-table__controls,.v-data-table__controls__info{
|
|
1150
|
+
display:flex;
|
|
1151
|
+
align-items:center;
|
|
1252
1152
|
}
|
|
1253
|
-
.v-
|
|
1254
|
-
|
|
1153
|
+
.v-data-table__controls__info__length{
|
|
1154
|
+
margin-right:20px;
|
|
1255
1155
|
}
|
|
1256
|
-
.v-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
color:var(--palette-caption);
|
|
1260
|
-
opacity:.6;
|
|
1156
|
+
.v-data-table__controls__select-limit{
|
|
1157
|
+
display:flex;
|
|
1158
|
+
align-items:center;
|
|
1261
1159
|
}
|
|
1262
|
-
.v-
|
|
1160
|
+
.v-data-table__controls__select-limit__prefix{
|
|
1161
|
+
margin-right:.5em;
|
|
1162
|
+
font-size:.75em;
|
|
1263
1163
|
color:var(--palette-muted);
|
|
1264
|
-
|
|
1164
|
+
white-space:nowrap;
|
|
1265
1165
|
}
|
|
1266
|
-
.v-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
padding:var(--card-actions-padding);
|
|
1166
|
+
.v-data-table__controls__select-limit .v-select{
|
|
1167
|
+
width:5em;
|
|
1168
|
+
margin-left:.5em;
|
|
1270
1169
|
}
|
|
1271
|
-
.v-
|
|
1272
|
-
|
|
1273
|
-
margin-
|
|
1170
|
+
.v-data-table__controls__pagination{
|
|
1171
|
+
flex:1 1 100%;
|
|
1172
|
+
margin-left:auto;
|
|
1274
1173
|
}
|
|
1275
|
-
.v-
|
|
1174
|
+
.v-data-table__header{
|
|
1175
|
+
margin-bottom:var(--controls-vertial-margin);
|
|
1176
|
+
}
|
|
1177
|
+
.v-data-table__footer{
|
|
1178
|
+
margin-top:var(--controls-vertial-margin);
|
|
1179
|
+
}
|
|
1180
|
+
.v-data-table__body{
|
|
1181
|
+
position:relative;
|
|
1182
|
+
}
|
|
1183
|
+
.v-data-table__body__inner{
|
|
1184
|
+
overflow-x:auto;
|
|
1185
|
+
}
|
|
1186
|
+
.v-data-table__table-wrapper{
|
|
1187
|
+
display:flex;
|
|
1188
|
+
}
|
|
1189
|
+
.v-data-table__table-wrapper:after,.v-data-table__table-wrapper:before{
|
|
1190
|
+
display:block;
|
|
1191
|
+
height:1px;
|
|
1192
|
+
content:"";
|
|
1193
|
+
}
|
|
1194
|
+
.v-data-table__loading{
|
|
1195
|
+
position:absolute;
|
|
1196
|
+
inset:0;
|
|
1197
|
+
z-index:1;
|
|
1198
|
+
display:flex;
|
|
1199
|
+
align-items:center;
|
|
1200
|
+
justify-content:center;
|
|
1201
|
+
background:var(--palette-background);
|
|
1202
|
+
opacity:.5;
|
|
1203
|
+
}
|
|
1204
|
+
.v-data-table__table{
|
|
1205
|
+
width:100%;
|
|
1206
|
+
margin:0;
|
|
1207
|
+
background:var(--palette-background);
|
|
1208
|
+
border-radius:var(--control-field-radius);
|
|
1209
|
+
}
|
|
1210
|
+
.v-data-table__table__cell{
|
|
1211
|
+
position:relative;
|
|
1212
|
+
vertical-align:middle;
|
|
1213
|
+
text-align:left;
|
|
1214
|
+
white-space:nowrap;
|
|
1215
|
+
border-bottom:thin solid rgba(0,0,0,.12);
|
|
1216
|
+
transition:background .2s;
|
|
1217
|
+
}
|
|
1218
|
+
.v-data-table__table__cell:first-child{
|
|
1219
|
+
padding-left:calc(var(--table-cell-horizontal-padding)*2);
|
|
1220
|
+
}
|
|
1221
|
+
.v-data-table__table__cell:last-child{
|
|
1222
|
+
padding-right:calc(var(--table-cell-horizontal-padding)*2);
|
|
1223
|
+
}
|
|
1224
|
+
.v-data-table__table__cell--left{
|
|
1225
|
+
text-align:left;
|
|
1226
|
+
}
|
|
1227
|
+
.v-data-table__table__cell--center{
|
|
1228
|
+
text-align:center;
|
|
1229
|
+
}
|
|
1230
|
+
.v-data-table__table__cell--center .v-data-table__table__sort-icon--empty{
|
|
1231
|
+
display:flex;
|
|
1232
|
+
}
|
|
1233
|
+
.v-data-table__table__cell--right{
|
|
1234
|
+
text-align:right;
|
|
1235
|
+
}
|
|
1236
|
+
.v-data-table__table__cell[tabindex="0"]{
|
|
1237
|
+
cursor:pointer;
|
|
1238
|
+
}
|
|
1239
|
+
.v-data-table__table__cell__tile{
|
|
1240
|
+
display:flex;
|
|
1241
|
+
align-items:center;
|
|
1242
|
+
}
|
|
1243
|
+
.v-data-table__table__sort-icon{
|
|
1244
|
+
width:25px;
|
|
1245
|
+
font-size:1.25em;
|
|
1246
|
+
opacity:0;
|
|
1247
|
+
transition:transform .2s,opacity .2s;
|
|
1248
|
+
}
|
|
1249
|
+
.v-data-table__table__sort-icon--empty{
|
|
1250
|
+
display:none;
|
|
1251
|
+
}
|
|
1252
|
+
.v-data-table__table__header .v-data-table__table__cell{
|
|
1253
|
+
user-select:none;
|
|
1254
|
+
background:hsla(0,0%,100%,.85);
|
|
1255
|
+
backdrop-filter:blur(3px);
|
|
1256
|
+
}
|
|
1257
|
+
.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{
|
|
1258
|
+
opacity:1;
|
|
1259
|
+
}
|
|
1260
|
+
.v-data-table__table__body tr:last-child .v-data-table__table__cell{
|
|
1261
|
+
border-bottom:none;
|
|
1262
|
+
}
|
|
1263
|
+
.v-data-table--fixed-header .v-data-table__table__header .v-data-table__table__cell{
|
|
1264
|
+
position:sticky;
|
|
1265
|
+
top:0;
|
|
1266
|
+
z-index:1;
|
|
1267
|
+
}
|
|
1268
|
+
.v-icon{
|
|
1276
1269
|
display:inline-flex;
|
|
1277
1270
|
align-items:center;
|
|
1278
1271
|
justify-content:center;
|
|
@@ -1318,357 +1311,467 @@
|
|
|
1318
1311
|
font-style:italic;
|
|
1319
1312
|
color:var(--control-disabled-color);
|
|
1320
1313
|
}
|
|
1321
|
-
.v-
|
|
1322
|
-
|
|
1314
|
+
.v-skelton-loader-bone{
|
|
1315
|
+
position:relative;
|
|
1316
|
+
overflow:hidden;
|
|
1317
|
+
cursor:progress;
|
|
1318
|
+
background:rgba(0,0,0,.12);
|
|
1319
|
+
border-radius:inherit;
|
|
1323
1320
|
}
|
|
1324
|
-
.v-
|
|
1325
|
-
|
|
1321
|
+
.v-skelton-loader-bone:after{
|
|
1322
|
+
position:absolute;
|
|
1323
|
+
top:0;
|
|
1324
|
+
right:0;
|
|
1325
|
+
left:0;
|
|
1326
|
+
z-index:1;
|
|
1327
|
+
height:100%;
|
|
1328
|
+
content:"";
|
|
1329
|
+
background:linear-gradient(90deg, hsla(0,0%,100%,0), hsla(0,0%,100%,.3), hsla(0,0%,100%,0));
|
|
1330
|
+
transform:translateX(-100%);
|
|
1331
|
+
animation:v-skelton-loader-bone-loading 1.5s infinite;
|
|
1326
1332
|
}
|
|
1327
|
-
.v-
|
|
1328
|
-
|
|
1333
|
+
.v-breadcrumbs{
|
|
1334
|
+
display:block;
|
|
1335
|
+
margin:1.5em auto;
|
|
1336
|
+
font-size:var(--breadcrumbs-font-size);
|
|
1329
1337
|
}
|
|
1330
|
-
.v-
|
|
1338
|
+
.v-breadcrumbs__list{
|
|
1339
|
+
display:inline-flex;
|
|
1340
|
+
flex-wrap:wrap;
|
|
1341
|
+
align-items:center;
|
|
1342
|
+
vertical-align:bottom;
|
|
1343
|
+
}
|
|
1344
|
+
.v-breadcrumbs__divider,.v-breadcrumbs__item,.v-breadcrumbs__list{
|
|
1331
1345
|
padding:0;
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
cursor:pointer;
|
|
1335
|
-
user-select:none;
|
|
1336
|
-
outline:0;
|
|
1337
|
-
border-width:0;
|
|
1346
|
+
margin:0;
|
|
1347
|
+
list-style:none;
|
|
1338
1348
|
}
|
|
1339
|
-
.v-
|
|
1349
|
+
.v-breadcrumbs__link{
|
|
1350
|
+
display:inline-flex;
|
|
1351
|
+
align-items:center;
|
|
1352
|
+
vertical-align:middle;
|
|
1353
|
+
white-space:nowrap;
|
|
1340
1354
|
text-decoration:none;
|
|
1341
1355
|
}
|
|
1342
|
-
.v-
|
|
1356
|
+
.v-breadcrumbs__item--disabled .v-breadcrumbs__link{
|
|
1357
|
+
color:inherit;
|
|
1358
|
+
pointer-events:none;
|
|
1359
|
+
}
|
|
1360
|
+
.v-breadcrumbs__icon{
|
|
1361
|
+
margin-right:.2em;
|
|
1362
|
+
font-size:140%;
|
|
1363
|
+
}
|
|
1364
|
+
.v-breadcrumbs__divider{
|
|
1343
1365
|
position:relative;
|
|
1366
|
+
top:1px;
|
|
1344
1367
|
display:flex;
|
|
1345
|
-
|
|
1346
|
-
|
|
1368
|
+
align-items:center;
|
|
1369
|
+
justify-content:center;
|
|
1370
|
+
margin:0 1.25em;
|
|
1347
1371
|
}
|
|
1348
|
-
.v-
|
|
1349
|
-
|
|
1350
|
-
width
|
|
1351
|
-
height
|
|
1372
|
+
.v-breadcrumbs__divider__icon{
|
|
1373
|
+
display:block;
|
|
1374
|
+
width:.5em;
|
|
1375
|
+
height:.5em;
|
|
1376
|
+
margin-left:-.25em;
|
|
1377
|
+
border-top:1px solid;
|
|
1378
|
+
border-right:1px solid;
|
|
1379
|
+
transform:rotate(45deg);
|
|
1380
|
+
}
|
|
1381
|
+
.v-tabs{
|
|
1382
|
+
position:relative;
|
|
1383
|
+
width:100%;
|
|
1384
|
+
height:var(--tabs-height);
|
|
1352
1385
|
overflow:hidden;
|
|
1353
|
-
white-space:nowrap;
|
|
1354
|
-
clip:rect(0 0 0 0);
|
|
1355
|
-
clip-path:inset(100%);
|
|
1356
1386
|
}
|
|
1357
|
-
.v-
|
|
1387
|
+
.v-tabs:before{
|
|
1358
1388
|
position:absolute;
|
|
1359
|
-
|
|
1389
|
+
right:0;
|
|
1390
|
+
bottom:0;
|
|
1391
|
+
left:0;
|
|
1360
1392
|
display:block;
|
|
1361
|
-
|
|
1393
|
+
height:2px;
|
|
1362
1394
|
content:"";
|
|
1363
|
-
opacity:0;
|
|
1364
|
-
transition:opacity .2s;
|
|
1365
|
-
}
|
|
1366
|
-
.v-option:before{
|
|
1367
1395
|
background:currentColor;
|
|
1396
|
+
opacity:.25;
|
|
1368
1397
|
}
|
|
1369
|
-
.v-
|
|
1370
|
-
|
|
1398
|
+
.v-tabs__scroller{
|
|
1399
|
+
width:100%;
|
|
1400
|
+
height:calc(var(--tabs-height) + 30px);
|
|
1371
1401
|
}
|
|
1372
|
-
.v-
|
|
1373
|
-
|
|
1402
|
+
.v-tabs__scroller__container{
|
|
1403
|
+
padding-bottom:30px;
|
|
1374
1404
|
}
|
|
1375
|
-
.v-
|
|
1405
|
+
.v-tabs__content{
|
|
1376
1406
|
position:relative;
|
|
1377
|
-
display:
|
|
1407
|
+
display:inline-flex;
|
|
1408
|
+
align-items:stretch;
|
|
1409
|
+
min-width:100%;
|
|
1410
|
+
vertical-align:bottom;
|
|
1378
1411
|
}
|
|
1379
|
-
.v-
|
|
1380
|
-
|
|
1412
|
+
.v-list-tile{
|
|
1413
|
+
--tile-background:var(--main-color, transparent);
|
|
1414
|
+
--tile-active-background:var(--deep-color, transparent);
|
|
1415
|
+
--tile-text-color:var(--text-color);
|
|
1416
|
+
--tile-text-active-color:var(--text-color);
|
|
1417
|
+
--tile-pin-color:transparent;
|
|
1418
|
+
--paper-link-color:var(--tile-text-color);
|
|
1419
|
+
--depth-padding:var(--list-tile-padding);
|
|
1420
|
+
display:flex;
|
|
1421
|
+
align-items:center;
|
|
1422
|
+
width:100%;
|
|
1423
|
+
padding:var(--list-tile-padding);
|
|
1424
|
+
padding-left:var(--depth-padding);
|
|
1425
|
+
color:var(--tile-text-color) !important;
|
|
1426
|
+
text-align:left;
|
|
1427
|
+
text-decoration:none;
|
|
1428
|
+
appearance:none;
|
|
1429
|
+
user-select:none;
|
|
1430
|
+
outline:0;
|
|
1431
|
+
background:var(--tile-background);
|
|
1432
|
+
border:0;
|
|
1433
|
+
border-left:3px solid var(--tile-pin-color);
|
|
1434
|
+
border-radius:0;
|
|
1435
|
+
transition:color .15s cubic-bezier(.4, 0, .2, 1) 0s,background-color .15s cubic-bezier(.4, 0, .2, 1) 0s;
|
|
1381
1436
|
}
|
|
1382
|
-
.v-
|
|
1383
|
-
|
|
1384
|
-
color:var(--
|
|
1437
|
+
.v-list-tile--clickable{
|
|
1438
|
+
cursor:pointer;
|
|
1439
|
+
--tile-text-color:var(--nav-color);
|
|
1440
|
+
--tile-text-active-color:var(--navActive-color, var(--nav-color));
|
|
1385
1441
|
}
|
|
1386
|
-
.v-
|
|
1387
|
-
|
|
1442
|
+
.v-list-tile--clickable:focus,.v-list-tile--clickable:hover{
|
|
1443
|
+
--tile-background:var(--tile-active-background);
|
|
1444
|
+
--tile-text-color:var(--tile-text-active-color);
|
|
1388
1445
|
}
|
|
1389
|
-
.v-
|
|
1390
|
-
color:var(--
|
|
1391
|
-
|
|
1392
|
-
|
|
1446
|
+
.v-list-tile--active{
|
|
1447
|
+
--tile-pin-color:var(--pin-color);
|
|
1448
|
+
--tile-text-color:var(--tile-text-active-color);
|
|
1449
|
+
--tile-background:var(--tile-active-background);
|
|
1393
1450
|
}
|
|
1394
|
-
.v-
|
|
1395
|
-
|
|
1451
|
+
.v-list-tile__body{
|
|
1452
|
+
font-size:.8125rem;
|
|
1453
|
+
font-weight:500;
|
|
1454
|
+
line-height:1.5;
|
|
1396
1455
|
}
|
|
1397
|
-
.v-
|
|
1456
|
+
.v-list-tile__icon{
|
|
1457
|
+
min-width:2em;
|
|
1458
|
+
}
|
|
1459
|
+
.v-list-tile__icon--end{
|
|
1460
|
+
margin-left:auto;
|
|
1461
|
+
text-align:right;
|
|
1462
|
+
}
|
|
1463
|
+
.v-avatar{
|
|
1464
|
+
-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
|
|
1465
|
+
}
|
|
1466
|
+
.v-avatar::-moz-focus-inner{
|
|
1467
|
+
border:0;
|
|
1468
|
+
}
|
|
1469
|
+
.v-avatar{
|
|
1470
|
+
padding:0;
|
|
1471
|
+
appearance:none;
|
|
1472
|
+
touch-action:manipulation;
|
|
1398
1473
|
cursor:pointer;
|
|
1474
|
+
user-select:none;
|
|
1475
|
+
outline:0;
|
|
1476
|
+
border-width:0;
|
|
1399
1477
|
}
|
|
1400
|
-
.v-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1478
|
+
.v-avatar,.v-avatar:focus,.v-avatar:hover{
|
|
1479
|
+
text-decoration:none;
|
|
1480
|
+
}
|
|
1481
|
+
.v-avatar{
|
|
1482
|
+
--avatar-radius:50%;
|
|
1483
|
+
--avatar-font-weight:var(--typo-medium-weight);
|
|
1484
|
+
--avatar-base-font-size:var(--typo-base-size);
|
|
1485
|
+
--avatar-font-size:var(--avatar-base-font-size);
|
|
1486
|
+
display:inline-flex;
|
|
1487
|
+
flex-basis:var(--avatar-size);
|
|
1488
|
+
align-items:center;
|
|
1489
|
+
justify-content:center;
|
|
1490
|
+
width:var(--avatar-size);
|
|
1491
|
+
min-width:var(--avatar-size);
|
|
1492
|
+
height:var(--avatar-size);
|
|
1404
1493
|
overflow:hidden;
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1494
|
+
font-size:var(--avatar-font-size);
|
|
1495
|
+
font-weight:var(--avatar-font-weight);
|
|
1496
|
+
line-height:1;
|
|
1497
|
+
vertical-align:bottom;
|
|
1498
|
+
text-align:center;
|
|
1499
|
+
cursor:default;
|
|
1500
|
+
border-style:solid;
|
|
1501
|
+
border-width:1px;
|
|
1502
|
+
border-radius:var(--avatar-radius);
|
|
1503
|
+
--shadow-color:transparent !important;
|
|
1504
|
+
--focusShadow-color:transparent !important;
|
|
1408
1505
|
}
|
|
1409
|
-
.v-
|
|
1410
|
-
|
|
1506
|
+
.v-avatar--clickable{
|
|
1507
|
+
cursor:pointer;
|
|
1411
1508
|
}
|
|
1412
|
-
.v-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
table-layout:fixed;
|
|
1509
|
+
.v-avatar--sm{
|
|
1510
|
+
--avatar-size:36px;
|
|
1511
|
+
--avatar-font-size:calc(var(--avatar-base-font-size)*0.75);
|
|
1416
1512
|
}
|
|
1417
|
-
.v-
|
|
1418
|
-
|
|
1419
|
-
overflow:hidden;
|
|
1420
|
-
text-overflow:ellipsis;
|
|
1421
|
-
vertical-align:middle;
|
|
1422
|
-
white-space:nowrap;
|
|
1513
|
+
.v-avatar--md{
|
|
1514
|
+
--avatar-size:48px;
|
|
1423
1515
|
}
|
|
1424
|
-
.v-
|
|
1425
|
-
|
|
1516
|
+
.v-avatar--lg{
|
|
1517
|
+
--avatar-size:62px;
|
|
1518
|
+
--avatar-font-size:calc(var(--avatar-base-font-size)*1.25);
|
|
1426
1519
|
}
|
|
1427
|
-
.v-
|
|
1428
|
-
|
|
1429
|
-
overflow:auto;
|
|
1430
|
-
white-space:unset;
|
|
1520
|
+
.v-avatar--rounded{
|
|
1521
|
+
--avatar-radius:4px;
|
|
1431
1522
|
}
|
|
1432
|
-
.v-
|
|
1433
|
-
|
|
1523
|
+
.v-avatar--tile{
|
|
1524
|
+
--avatar-radius:0;
|
|
1434
1525
|
}
|
|
1435
|
-
.v-
|
|
1436
|
-
|
|
1437
|
-
|
|
1526
|
+
.v-avatar img,.v-avatar__image{
|
|
1527
|
+
display:inline-flex;
|
|
1528
|
+
width:inherit !important;
|
|
1529
|
+
height:inherit !important;
|
|
1530
|
+
object-fit:cover;
|
|
1531
|
+
border-radius:inherit;
|
|
1438
1532
|
}
|
|
1439
|
-
.v-
|
|
1440
|
-
|
|
1533
|
+
.v-chip{
|
|
1534
|
+
-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
|
|
1441
1535
|
}
|
|
1442
|
-
.v-
|
|
1443
|
-
|
|
1536
|
+
.v-chip::-moz-focus-inner{
|
|
1537
|
+
border:0;
|
|
1444
1538
|
}
|
|
1445
|
-
.v-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
justify-content:center;
|
|
1450
|
-
width:100%;
|
|
1451
|
-
width:var(--control-switch-width);
|
|
1452
|
-
height:100%;
|
|
1539
|
+
.v-chip{
|
|
1540
|
+
padding:0;
|
|
1541
|
+
appearance:none;
|
|
1542
|
+
touch-action:manipulation;
|
|
1453
1543
|
cursor:pointer;
|
|
1544
|
+
user-select:none;
|
|
1545
|
+
outline:0;
|
|
1546
|
+
border-width:0;
|
|
1454
1547
|
}
|
|
1455
|
-
.v-
|
|
1456
|
-
|
|
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;
|
|
1548
|
+
.v-chip,.v-chip:focus,.v-chip:hover{
|
|
1549
|
+
text-decoration:none;
|
|
1463
1550
|
}
|
|
1464
|
-
.v-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
bottom:0;
|
|
1468
|
-
left:0;
|
|
1469
|
-
display:flex;
|
|
1551
|
+
.v-chip{
|
|
1552
|
+
--chip-radius:calc(var(--chip-height)/2);
|
|
1553
|
+
display:inline-flex;
|
|
1470
1554
|
align-items:center;
|
|
1471
1555
|
justify-content:center;
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1556
|
+
height:var(--chip-height);
|
|
1557
|
+
padding:0 var(--chip-padding);
|
|
1558
|
+
overflow:hidden;
|
|
1559
|
+
font-size:var(--chip-font-size);
|
|
1560
|
+
font-weight:var(--chip-font-weight);
|
|
1561
|
+
line-height:1;
|
|
1562
|
+
vertical-align:bottom;
|
|
1563
|
+
text-align:center;
|
|
1564
|
+
white-space:nowrap;
|
|
1565
|
+
cursor:default;
|
|
1566
|
+
border-style:solid;
|
|
1567
|
+
border-width:1px;
|
|
1568
|
+
border-radius:var(--chip-radius);
|
|
1569
|
+
--shadow-color:transparent !important;
|
|
1570
|
+
--focusShadow-color:transparent !important;
|
|
1480
1571
|
}
|
|
1481
|
-
.v-
|
|
1482
|
-
|
|
1483
|
-
width:100%;
|
|
1484
|
-
height:100%;
|
|
1485
|
-
background:currentColor;
|
|
1486
|
-
border-radius:50%;
|
|
1487
|
-
opacity:0;
|
|
1488
|
-
transition:opacity .2s;
|
|
1572
|
+
.v-chip--clickable{
|
|
1573
|
+
cursor:pointer;
|
|
1489
1574
|
}
|
|
1490
|
-
.v-
|
|
1491
|
-
|
|
1492
|
-
|
|
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));
|
|
1575
|
+
.v-chip--xs{
|
|
1576
|
+
--chip-height:var(--chip-height-xs);
|
|
1577
|
+
--chip-font-size:var(--chip-font-size-xs);
|
|
1498
1578
|
}
|
|
1499
|
-
.v-
|
|
1500
|
-
|
|
1579
|
+
.v-chip--sm{
|
|
1580
|
+
--chip-height:var(--chip-height-sm);
|
|
1581
|
+
--chip-font-size:var(--chip-font-size-sm);
|
|
1501
1582
|
}
|
|
1502
|
-
.v-
|
|
1503
|
-
|
|
1504
|
-
|
|
1583
|
+
.v-chip--md{
|
|
1584
|
+
--chip-height:var(--chip-height-md);
|
|
1585
|
+
--chip-font-size:var(--chip-font-size-md);
|
|
1505
1586
|
}
|
|
1506
|
-
.v-
|
|
1507
|
-
|
|
1587
|
+
.v-chip--lg{
|
|
1588
|
+
--chip-height:var(--chip-height-lg);
|
|
1589
|
+
--chip-font-size:var(--chip-font-size-lg);
|
|
1508
1590
|
}
|
|
1509
|
-
.v-
|
|
1510
|
-
|
|
1591
|
+
.v-chip--xl{
|
|
1592
|
+
--chip-height:var(--chip-height-xl);
|
|
1593
|
+
--chip-font-size:var(--chip-font-size-xl);
|
|
1511
1594
|
}
|
|
1512
|
-
.v-
|
|
1513
|
-
|
|
1595
|
+
.v-chip--label{
|
|
1596
|
+
--chip-radius:4px;
|
|
1514
1597
|
}
|
|
1515
|
-
.v-
|
|
1516
|
-
|
|
1517
|
-
|
|
1598
|
+
.v-chip__icon--start{
|
|
1599
|
+
margin-right:calc(var(--chip-padding)*.5);
|
|
1600
|
+
margin-left:calc(var(--chip-padding)*-.5);
|
|
1518
1601
|
}
|
|
1519
|
-
.v-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
margin:0;
|
|
1523
|
-
margin-bottom:1px !important;
|
|
1524
|
-
border-top-right-radius:0;
|
|
1525
|
-
border-bottom-right-radius:0;
|
|
1602
|
+
.v-chip__icon--end{
|
|
1603
|
+
margin-right:calc(var(--chip-padding)*-.5);
|
|
1604
|
+
margin-left:calc(var(--chip-padding)*.5);
|
|
1526
1605
|
}
|
|
1527
|
-
.v-
|
|
1528
|
-
|
|
1529
|
-
flex-wrap:wrap;
|
|
1530
|
-
align-items:center;
|
|
1531
|
-
align-self:stretch;
|
|
1532
|
-
padding:4px 6px;
|
|
1606
|
+
.v-chip .v-avatar{
|
|
1607
|
+
--avatar-size:14px;
|
|
1533
1608
|
}
|
|
1534
|
-
.v-
|
|
1535
|
-
color:
|
|
1609
|
+
.v-disabled-reason{
|
|
1610
|
+
-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
|
|
1536
1611
|
}
|
|
1537
|
-
.v-
|
|
1538
|
-
|
|
1539
|
-
cursor:text;
|
|
1540
|
-
border-top-left-radius:0;
|
|
1541
|
-
border-bottom-left-radius:0;
|
|
1612
|
+
.v-disabled-reason::-moz-focus-inner{
|
|
1613
|
+
border:0;
|
|
1542
1614
|
}
|
|
1543
|
-
.v-
|
|
1615
|
+
.v-disabled-reason{
|
|
1544
1616
|
position:absolute;
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
overflow:hidden;
|
|
1548
|
-
white-space:nowrap;
|
|
1549
|
-
clip:rect(0 0 0 0);
|
|
1550
|
-
clip-path:inset(100%);
|
|
1551
|
-
}
|
|
1552
|
-
.v-content-switcher{
|
|
1553
|
-
position:relative;
|
|
1617
|
+
inset:0;
|
|
1618
|
+
z-index:10;
|
|
1554
1619
|
display:block;
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
}
|
|
1559
|
-
.v-content-switcher__content{
|
|
1560
|
-
width:100%;
|
|
1561
|
-
}
|
|
1562
|
-
.v-content-switcher-prev-enter-active,.v-content-switcher-prev-leave-active{
|
|
1563
|
-
transition:var(--transition-tab);
|
|
1564
|
-
}
|
|
1565
|
-
.v-content-switcher-prev-enter-from{
|
|
1566
|
-
transform:translateX(-100%);
|
|
1620
|
+
pointer-events:none;
|
|
1621
|
+
cursor:default;
|
|
1622
|
+
border-radius:inherit;
|
|
1567
1623
|
}
|
|
1568
|
-
.v-
|
|
1569
|
-
|
|
1624
|
+
.v-disabled-reason[tabindex]:not([tabindex^="-"]){
|
|
1625
|
+
pointer-events:auto;
|
|
1570
1626
|
}
|
|
1571
|
-
.v-
|
|
1572
|
-
|
|
1573
|
-
top:0;
|
|
1574
|
-
left:0;
|
|
1627
|
+
.v-card{
|
|
1628
|
+
-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
|
|
1575
1629
|
}
|
|
1576
|
-
.v-
|
|
1577
|
-
|
|
1630
|
+
.v-card::-moz-focus-inner{
|
|
1631
|
+
border:0;
|
|
1578
1632
|
}
|
|
1579
|
-
.v-
|
|
1580
|
-
|
|
1633
|
+
.v-card{
|
|
1634
|
+
position:relative;
|
|
1635
|
+
width:100%;
|
|
1636
|
+
padding:0;
|
|
1637
|
+
text-align:left;
|
|
1638
|
+
appearance:none;
|
|
1639
|
+
touch-action:manipulation;
|
|
1640
|
+
user-select:none;
|
|
1641
|
+
outline:0;
|
|
1642
|
+
border:0;
|
|
1581
1643
|
}
|
|
1582
|
-
.v-
|
|
1583
|
-
|
|
1644
|
+
.v-card,.v-card:focus,.v-card:hover{
|
|
1645
|
+
text-decoration:none;
|
|
1584
1646
|
}
|
|
1585
|
-
.v-
|
|
1586
|
-
|
|
1647
|
+
.v-card.clickable{
|
|
1648
|
+
cursor:pointer;
|
|
1587
1649
|
}
|
|
1588
|
-
.v-
|
|
1650
|
+
.v-card.clickable:before{
|
|
1589
1651
|
position:absolute;
|
|
1590
|
-
|
|
1591
|
-
|
|
1652
|
+
inset:0;
|
|
1653
|
+
content:"";
|
|
1654
|
+
background:currentColor;
|
|
1655
|
+
border-radius:inherit;
|
|
1656
|
+
opacity:0;
|
|
1657
|
+
transition:.3s cubic-bezier(.25, .8, .5, 1);
|
|
1592
1658
|
}
|
|
1593
|
-
.v-
|
|
1594
|
-
|
|
1659
|
+
.v-card.clickable:focus:before,.v-card.clickable:hover:before{
|
|
1660
|
+
opacity:.125;
|
|
1595
1661
|
}
|
|
1596
|
-
.v-
|
|
1597
|
-
|
|
1598
|
-
flex-grow:1;
|
|
1599
|
-
margin:0;
|
|
1600
|
-
font-size:1.25rem;
|
|
1601
|
-
font-weight:400;
|
|
1602
|
-
line-height:1;
|
|
1603
|
-
white-space:nowrap;
|
|
1662
|
+
.v-card[aria-disabled=true],.v-card[disabled]{
|
|
1663
|
+
pointer-events:none;
|
|
1604
1664
|
}
|
|
1605
|
-
.v-
|
|
1606
|
-
|
|
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;
|
|
1665
|
+
.v-card[aria-disabled=true]:before,.v-card[disabled]:before{
|
|
1666
|
+
content:none;
|
|
1614
1667
|
}
|
|
1615
|
-
.v-
|
|
1616
|
-
--
|
|
1668
|
+
.v-radio{
|
|
1669
|
+
--my-color:var(--color);
|
|
1617
1670
|
}
|
|
1618
|
-
.v-
|
|
1671
|
+
.v-radio__faux{
|
|
1672
|
+
position:relative;
|
|
1673
|
+
display:block;
|
|
1674
|
+
width:100%;
|
|
1619
1675
|
height:100%;
|
|
1676
|
+
transition:border-color .2s,background-color .2s;
|
|
1620
1677
|
}
|
|
1621
|
-
.v-
|
|
1622
|
-
|
|
1678
|
+
.v-radio__faux:after,.v-radio__faux:before{
|
|
1679
|
+
position:absolute;
|
|
1680
|
+
display:block;
|
|
1681
|
+
content:"";
|
|
1682
|
+
border-radius:100%;
|
|
1623
1683
|
}
|
|
1624
|
-
.v-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1684
|
+
.v-radio__faux:before{
|
|
1685
|
+
inset:0;
|
|
1686
|
+
border:2px solid;
|
|
1687
|
+
}
|
|
1688
|
+
.v-radio__faux:after{
|
|
1689
|
+
top:50%;
|
|
1690
|
+
left:50%;
|
|
1691
|
+
width:50%;
|
|
1692
|
+
height:50%;
|
|
1693
|
+
background:currentColor;
|
|
1694
|
+
transform:translate(-50%, -50%) scale(0);
|
|
1695
|
+
transition:transform .2s;
|
|
1629
1696
|
}
|
|
1630
|
-
.v-
|
|
1631
|
-
|
|
1697
|
+
.v-radio--selected .v-radio__faux:after{
|
|
1698
|
+
transform:translate(-50%, -50%) scale(1);
|
|
1632
1699
|
}
|
|
1633
|
-
.v-
|
|
1634
|
-
|
|
1635
|
-
margin-left:calc(var(--root-em)*-1*.75);
|
|
1700
|
+
.v-switch{
|
|
1701
|
+
--my-pin-color:var(--palette-background);
|
|
1636
1702
|
}
|
|
1637
|
-
.v-
|
|
1638
|
-
|
|
1639
|
-
margin-right:calc(var(--root-em)*-1*.75);
|
|
1640
|
-
margin-left:auto;
|
|
1703
|
+
.v-switch--selected{
|
|
1704
|
+
--my-pin-color:var(--color);
|
|
1641
1705
|
}
|
|
1642
|
-
.v-
|
|
1706
|
+
.v-switch__faux{
|
|
1643
1707
|
position:relative;
|
|
1708
|
+
display:flex;
|
|
1709
|
+
align-items:center;
|
|
1710
|
+
justify-content:center;
|
|
1644
1711
|
width:100%;
|
|
1645
|
-
|
|
1646
|
-
|
|
1712
|
+
width:var(--control-switch-width);
|
|
1713
|
+
height:100%;
|
|
1714
|
+
cursor:pointer;
|
|
1647
1715
|
}
|
|
1648
|
-
.v-
|
|
1716
|
+
.v-switch__faux:before{
|
|
1717
|
+
display:block;
|
|
1718
|
+
width:var(--control-switch-track-width);
|
|
1719
|
+
height:var(--control-switch-track-height);
|
|
1720
|
+
content:"";
|
|
1721
|
+
background:var(--color);
|
|
1722
|
+
border-radius:calc(var(--control-switch-track-height)/2);
|
|
1723
|
+
opacity:.5;
|
|
1724
|
+
}
|
|
1725
|
+
.v-switch__faux__pin{
|
|
1649
1726
|
position:absolute;
|
|
1650
|
-
|
|
1727
|
+
top:0;
|
|
1651
1728
|
bottom:0;
|
|
1652
1729
|
left:0;
|
|
1730
|
+
display:flex;
|
|
1731
|
+
align-items:center;
|
|
1732
|
+
justify-content:center;
|
|
1733
|
+
width:var(--outer-size);
|
|
1734
|
+
height:var(--outer-size);
|
|
1735
|
+
border-radius:50%;
|
|
1736
|
+
transition:left .15s cubic-bezier(.4, 0, .2, 1) 0s,transform .15s cubic-bezier(.4, 0, .2, 1) 0s;
|
|
1737
|
+
}
|
|
1738
|
+
.v-switch__faux__pin:after,.v-switch__faux__pin:before{
|
|
1653
1739
|
display:block;
|
|
1654
|
-
height:2px;
|
|
1655
1740
|
content:"";
|
|
1656
|
-
background:currentColor;
|
|
1657
|
-
opacity:.25;
|
|
1658
1741
|
}
|
|
1659
|
-
.v-
|
|
1742
|
+
.v-switch__faux__pin:before{
|
|
1743
|
+
position:absolute;
|
|
1660
1744
|
width:100%;
|
|
1661
|
-
height:
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1745
|
+
height:100%;
|
|
1746
|
+
background:currentColor;
|
|
1747
|
+
border-radius:50%;
|
|
1748
|
+
opacity:0;
|
|
1749
|
+
transition:opacity .2s;
|
|
1665
1750
|
}
|
|
1666
|
-
.v-
|
|
1751
|
+
.v-switch__faux__pin:after{
|
|
1667
1752
|
position:relative;
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1753
|
+
width:var(--icon-size);
|
|
1754
|
+
height:var(--icon-size);
|
|
1755
|
+
background:var(--my-pin-color);
|
|
1756
|
+
border-radius:50%;
|
|
1757
|
+
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);
|
|
1758
|
+
transform:scale(var(--control-checkable-faux-scale));
|
|
1759
|
+
}
|
|
1760
|
+
.v-switch--selected .v-switch__faux__pin{
|
|
1761
|
+
left:calc(100% - var(--outer-size));
|
|
1762
|
+
}
|
|
1763
|
+
.v-switch--disabled .v-switch__faux:before{
|
|
1764
|
+
background-color:#000;
|
|
1765
|
+
opacity:.12;
|
|
1766
|
+
}
|
|
1767
|
+
.v-switch--disabled .v-switch__faux__pin:after{
|
|
1768
|
+
background-color:#f5f5f5;
|
|
1769
|
+
}
|
|
1770
|
+
.v-switch__faux:hover .v-switch__faux__pin:before{
|
|
1771
|
+
opacity:.1;
|
|
1772
|
+
}
|
|
1773
|
+
.v-switch:focus-within .v-switch__faux__pin:before{
|
|
1774
|
+
opacity:.1;
|
|
1672
1775
|
}
|
|
1673
1776
|
.v-pagination{
|
|
1674
1777
|
--pagination-size:var(--pagination-item-size);
|
|
@@ -1756,254 +1859,225 @@
|
|
|
1756
1859
|
.v-pagination--disabled .v-pagination__item--active{
|
|
1757
1860
|
background:var(--palette-muted);
|
|
1758
1861
|
}
|
|
1759
|
-
.v-
|
|
1760
|
-
|
|
1761
|
-
}
|
|
1762
|
-
.v-card::-moz-focus-inner{
|
|
1763
|
-
border:0;
|
|
1764
|
-
}
|
|
1765
|
-
.v-card{
|
|
1766
|
-
position:relative;
|
|
1767
|
-
width:100%;
|
|
1768
|
-
padding:0;
|
|
1769
|
-
text-align:left;
|
|
1770
|
-
appearance:none;
|
|
1771
|
-
touch-action:manipulation;
|
|
1772
|
-
user-select:none;
|
|
1773
|
-
outline:0;
|
|
1774
|
-
border:0;
|
|
1775
|
-
}
|
|
1776
|
-
.v-card,.v-card:focus,.v-card:hover{
|
|
1777
|
-
text-decoration:none;
|
|
1778
|
-
}
|
|
1779
|
-
.v-card.clickable{
|
|
1780
|
-
cursor:pointer;
|
|
1862
|
+
.v-grid-item{
|
|
1863
|
+
display:block;
|
|
1781
1864
|
}
|
|
1782
|
-
.v-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
content:"";
|
|
1786
|
-
background:currentColor;
|
|
1787
|
-
border-radius:inherit;
|
|
1788
|
-
opacity:0;
|
|
1789
|
-
transition:.3s cubic-bezier(.25, .8, .5, 1);
|
|
1865
|
+
.v-grid-container{
|
|
1866
|
+
display:flex;
|
|
1867
|
+
flex-wrap:wrap;
|
|
1790
1868
|
}
|
|
1791
|
-
.v-
|
|
1792
|
-
|
|
1869
|
+
.v-checkbox{
|
|
1870
|
+
--my-border-color:var(--color);
|
|
1871
|
+
--my-faux-bg-color:transparent;
|
|
1793
1872
|
}
|
|
1794
|
-
.v-
|
|
1795
|
-
|
|
1873
|
+
.v-checkbox--indeterminate,.v-checkbox--selected{
|
|
1874
|
+
--my-border-color:transparent;
|
|
1875
|
+
--my-faux-bg-color:var(--color);
|
|
1796
1876
|
}
|
|
1797
|
-
.v-
|
|
1798
|
-
|
|
1877
|
+
.v-checkbox__faux{
|
|
1878
|
+
display:block;
|
|
1879
|
+
width:100%;
|
|
1880
|
+
height:100%;
|
|
1881
|
+
background:var(--my-faux-bg-color);
|
|
1882
|
+
border:2px solid var(--my-border-color);
|
|
1883
|
+
border-radius:var(--control-field-radius);
|
|
1884
|
+
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);
|
|
1885
|
+
transition:border-color .2s,background-color .2s;
|
|
1799
1886
|
}
|
|
1800
|
-
.v-
|
|
1801
|
-
|
|
1887
|
+
.v-checkbox--indeterminate .v-checkbox__faux{
|
|
1888
|
+
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);
|
|
1802
1889
|
}
|
|
1803
|
-
.v-
|
|
1804
|
-
|
|
1805
|
-
margin-left:calc(var(--card-content-padding)*-1);
|
|
1890
|
+
.v-option-group{
|
|
1891
|
+
display:block;
|
|
1806
1892
|
}
|
|
1807
|
-
.v-
|
|
1808
|
-
|
|
1809
|
-
|
|
1893
|
+
.v-option-group__label{
|
|
1894
|
+
padding:1em;
|
|
1895
|
+
font-size:.875em;
|
|
1896
|
+
color:var(--palette-caption);
|
|
1897
|
+
opacity:.6;
|
|
1810
1898
|
}
|
|
1811
|
-
.v-
|
|
1812
|
-
|
|
1813
|
-
|
|
1899
|
+
.v-option-group--disabled .v-option-group__label{
|
|
1900
|
+
color:var(--palette-muted);
|
|
1901
|
+
opacity:.4;
|
|
1814
1902
|
}
|
|
1815
|
-
.v-
|
|
1816
|
-
|
|
1903
|
+
.v-toolbar-menu{
|
|
1904
|
+
height:100%;
|
|
1905
|
+
margin:0;
|
|
1906
|
+
box-shadow:none;
|
|
1817
1907
|
}
|
|
1818
|
-
.v-
|
|
1908
|
+
.v-toolbar-edge{
|
|
1819
1909
|
display:flex;
|
|
1910
|
+
flex:0 0;
|
|
1820
1911
|
align-items:center;
|
|
1912
|
+
align-self:stretch;
|
|
1821
1913
|
}
|
|
1822
|
-
.v-
|
|
1823
|
-
|
|
1824
|
-
font-size:.75em;
|
|
1825
|
-
color:var(--palette-muted);
|
|
1826
|
-
white-space:nowrap;
|
|
1914
|
+
.v-toolbar-edge--empty,.v-toolbar-edge:empty{
|
|
1915
|
+
display:none;
|
|
1827
1916
|
}
|
|
1828
|
-
.v-
|
|
1829
|
-
|
|
1830
|
-
margin-left
|
|
1917
|
+
.v-toolbar-edge--start{
|
|
1918
|
+
margin-right:calc(var(--root-em)*.75);
|
|
1919
|
+
margin-left:calc(var(--root-em)*-1*.75);
|
|
1831
1920
|
}
|
|
1832
|
-
.v-
|
|
1833
|
-
|
|
1921
|
+
.v-toolbar-edge--end{
|
|
1922
|
+
padding-left:calc(var(--root-em)*.75);
|
|
1923
|
+
margin-right:calc(var(--root-em)*-1*.75);
|
|
1834
1924
|
margin-left:auto;
|
|
1835
1925
|
}
|
|
1836
|
-
.v-
|
|
1837
|
-
margin-bottom:var(--controls-vertial-margin);
|
|
1838
|
-
}
|
|
1839
|
-
.v-data-table__footer{
|
|
1840
|
-
margin-top:var(--controls-vertial-margin);
|
|
1841
|
-
}
|
|
1842
|
-
.v-data-table__body{
|
|
1843
|
-
position:relative;
|
|
1844
|
-
}
|
|
1845
|
-
.v-data-table__body__inner{
|
|
1846
|
-
overflow-x:auto;
|
|
1847
|
-
}
|
|
1848
|
-
.v-data-table__table-wrapper{
|
|
1849
|
-
display:flex;
|
|
1850
|
-
}
|
|
1851
|
-
.v-data-table__table-wrapper:after,.v-data-table__table-wrapper:before{
|
|
1852
|
-
display:block;
|
|
1853
|
-
height:1px;
|
|
1854
|
-
content:"";
|
|
1855
|
-
}
|
|
1856
|
-
.v-data-table__loading{
|
|
1857
|
-
position:absolute;
|
|
1858
|
-
inset:0;
|
|
1859
|
-
z-index:1;
|
|
1926
|
+
.v-toolbar-title{
|
|
1860
1927
|
display:flex;
|
|
1861
|
-
|
|
1862
|
-
justify-content:center;
|
|
1863
|
-
background:var(--palette-background);
|
|
1864
|
-
opacity:.5;
|
|
1865
|
-
}
|
|
1866
|
-
.v-data-table__table{
|
|
1867
|
-
width:100%;
|
|
1928
|
+
flex-grow:1;
|
|
1868
1929
|
margin:0;
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
.v-data-table__table__cell{
|
|
1873
|
-
position:relative;
|
|
1874
|
-
vertical-align:middle;
|
|
1875
|
-
text-align:left;
|
|
1930
|
+
font-size:1.25rem;
|
|
1931
|
+
font-weight:400;
|
|
1932
|
+
line-height:1;
|
|
1876
1933
|
white-space:nowrap;
|
|
1877
|
-
border-bottom:thin solid rgba(0,0,0,.12);
|
|
1878
|
-
transition:background .2s;
|
|
1879
1934
|
}
|
|
1880
|
-
.v-
|
|
1881
|
-
|
|
1935
|
+
.v-option{
|
|
1936
|
+
-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
|
|
1882
1937
|
}
|
|
1883
|
-
.v-
|
|
1884
|
-
|
|
1938
|
+
.v-option::-moz-focus-inner{
|
|
1939
|
+
border:0;
|
|
1885
1940
|
}
|
|
1886
|
-
.v-
|
|
1887
|
-
|
|
1941
|
+
.v-option{
|
|
1942
|
+
padding:0;
|
|
1943
|
+
appearance:none;
|
|
1944
|
+
touch-action:manipulation;
|
|
1945
|
+
cursor:pointer;
|
|
1946
|
+
user-select:none;
|
|
1947
|
+
outline:0;
|
|
1948
|
+
border-width:0;
|
|
1888
1949
|
}
|
|
1889
|
-
.v-
|
|
1890
|
-
text-
|
|
1950
|
+
.v-option,.v-option:focus,.v-option:hover{
|
|
1951
|
+
text-decoration:none;
|
|
1891
1952
|
}
|
|
1892
|
-
.v-
|
|
1953
|
+
.v-option{
|
|
1954
|
+
position:relative;
|
|
1893
1955
|
display:flex;
|
|
1956
|
+
width:100%;
|
|
1957
|
+
padding:.75em 1em;
|
|
1894
1958
|
}
|
|
1895
|
-
.v-
|
|
1896
|
-
|
|
1959
|
+
.v-option input{
|
|
1960
|
+
position:absolute;
|
|
1961
|
+
width:1px;
|
|
1962
|
+
height:1px;
|
|
1963
|
+
overflow:hidden;
|
|
1964
|
+
white-space:nowrap;
|
|
1965
|
+
clip:rect(0 0 0 0);
|
|
1966
|
+
clip-path:inset(100%);
|
|
1897
1967
|
}
|
|
1898
|
-
.v-
|
|
1899
|
-
|
|
1968
|
+
.v-option:after,.v-option:before{
|
|
1969
|
+
position:absolute;
|
|
1970
|
+
inset:0;
|
|
1971
|
+
display:block;
|
|
1972
|
+
pointer-events:none;
|
|
1973
|
+
content:"";
|
|
1974
|
+
opacity:0;
|
|
1975
|
+
transition:opacity .2s;
|
|
1900
1976
|
}
|
|
1901
|
-
.v-
|
|
1902
|
-
|
|
1903
|
-
align-items:center;
|
|
1977
|
+
.v-option:before{
|
|
1978
|
+
background:currentColor;
|
|
1904
1979
|
}
|
|
1905
|
-
.v-
|
|
1906
|
-
|
|
1907
|
-
font-size:1.25em;
|
|
1908
|
-
opacity:0;
|
|
1909
|
-
transition:transform .2s,opacity .2s;
|
|
1980
|
+
.v-option:after{
|
|
1981
|
+
background:var(--palette-primary);
|
|
1910
1982
|
}
|
|
1911
|
-
.v-
|
|
1912
|
-
|
|
1983
|
+
.v-option--key-focused:before,.v-option:focus-within:before,.v-option:hover:before{
|
|
1984
|
+
opacity:.12;
|
|
1913
1985
|
}
|
|
1914
|
-
.v-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
backdrop-filter:blur(3px);
|
|
1986
|
+
.v-option__label{
|
|
1987
|
+
position:relative;
|
|
1988
|
+
display:block;
|
|
1918
1989
|
}
|
|
1919
|
-
.v-
|
|
1920
|
-
opacity
|
|
1990
|
+
.v-option--selected:after{
|
|
1991
|
+
opacity:.12;
|
|
1921
1992
|
}
|
|
1922
|
-
.v-
|
|
1923
|
-
|
|
1993
|
+
.v-option--selected .v-option__label{
|
|
1994
|
+
font-weight:500;
|
|
1995
|
+
color:var(--palette-primary);
|
|
1924
1996
|
}
|
|
1925
|
-
.v-
|
|
1926
|
-
|
|
1927
|
-
top:0;
|
|
1928
|
-
z-index:1;
|
|
1997
|
+
.v-option--has-not-value .v-option__label{
|
|
1998
|
+
font-style:italic;
|
|
1929
1999
|
}
|
|
1930
|
-
.v-
|
|
1931
|
-
|
|
2000
|
+
.v-option[aria-disabled=true],.v-option[disabled],.v-option[tabindex="-1"]{
|
|
2001
|
+
color:var(--palette-muted);
|
|
2002
|
+
pointer-events:none;
|
|
2003
|
+
opacity:.4;
|
|
1932
2004
|
}
|
|
1933
|
-
.v-
|
|
2005
|
+
.v-option[aria-disabled=true]:before,.v-option[disabled]:before,.v-option[tabindex="-1"]:before{
|
|
2006
|
+
opacity:0 !important;
|
|
2007
|
+
}
|
|
2008
|
+
.v-tab{
|
|
1934
2009
|
-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
|
|
1935
2010
|
}
|
|
1936
|
-
.v-
|
|
2011
|
+
.v-tab::-moz-focus-inner{
|
|
1937
2012
|
border:0;
|
|
1938
2013
|
}
|
|
1939
|
-
.v-
|
|
2014
|
+
.v-tab{
|
|
1940
2015
|
padding:0;
|
|
1941
2016
|
appearance:none;
|
|
1942
2017
|
touch-action:manipulation;
|
|
1943
2018
|
cursor:pointer;
|
|
1944
|
-
user-select:none;
|
|
1945
2019
|
outline:0;
|
|
1946
2020
|
border-width:0;
|
|
1947
2021
|
}
|
|
1948
|
-
.v-
|
|
2022
|
+
.v-tab,.v-tab:focus,.v-tab:hover{
|
|
1949
2023
|
text-decoration:none;
|
|
1950
2024
|
}
|
|
1951
|
-
.v-
|
|
1952
|
-
--
|
|
1953
|
-
--
|
|
1954
|
-
--
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
flex
|
|
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;
|
|
1958
2032
|
align-items:center;
|
|
1959
2033
|
justify-content:center;
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
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;
|
|
1975
|
-
}
|
|
1976
|
-
.v-avatar--clickable{
|
|
1977
|
-
cursor:pointer;
|
|
1978
|
-
}
|
|
1979
|
-
.v-avatar--sm{
|
|
1980
|
-
--avatar-size:36px;
|
|
1981
|
-
--avatar-font-size:calc(var(--avatar-base-font-size)*0.75);
|
|
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;
|
|
1982
2041
|
}
|
|
1983
|
-
.v-
|
|
1984
|
-
|
|
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;
|
|
1985
2054
|
}
|
|
1986
|
-
.v-
|
|
1987
|
-
|
|
1988
|
-
|
|
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;
|
|
1989
2065
|
}
|
|
1990
|
-
.v-
|
|
1991
|
-
|
|
2066
|
+
.v-tab__icon{
|
|
2067
|
+
margin-right:8px;
|
|
2068
|
+
font-size:120%;
|
|
1992
2069
|
}
|
|
1993
|
-
.v-
|
|
1994
|
-
--
|
|
2070
|
+
.v-tab:hover{
|
|
2071
|
+
--tab-content-color:var(--tab-content-focus-color);
|
|
1995
2072
|
}
|
|
1996
|
-
.v-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
border-radius:inherit;
|
|
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;
|
|
2002
2078
|
}
|
|
2003
|
-
.v-
|
|
2004
|
-
|
|
2005
|
-
margin:0;
|
|
2006
|
-
box-shadow:none;
|
|
2079
|
+
.v-tab--active:before{
|
|
2080
|
+
transform:scaleX(1);
|
|
2007
2081
|
}
|
|
2008
2082
|
.v-checkable{
|
|
2009
2083
|
--outer-size:var(--control-checkable-outer-size);
|
|
@@ -2060,198 +2134,36 @@
|
|
|
2060
2134
|
inset:0;
|
|
2061
2135
|
display:block;
|
|
2062
2136
|
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;
|
|
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;
|
|
2137
|
+
content:"";
|
|
2138
|
+
background:currentColor;
|
|
2139
|
+
border-radius:50%;
|
|
2140
|
+
opacity:0;
|
|
2141
|
+
transition:opacity .2s;
|
|
2134
2142
|
}
|
|
2135
|
-
.v-
|
|
2136
|
-
|
|
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;
|
|
2143
|
+
.v-checkable__faux:hover:before{
|
|
2144
|
+
opacity:.1;
|
|
2145
2145
|
}
|
|
2146
|
-
.v-
|
|
2147
|
-
|
|
2148
|
-
|
|
2146
|
+
.v-checkable--custom-icon .v-checkable__faux{
|
|
2147
|
+
flex-basis:auto;
|
|
2148
|
+
width:auto;
|
|
2149
2149
|
}
|
|
2150
|
-
.v-
|
|
2151
|
-
|
|
2150
|
+
.v-checkable--custom-icon .v-checkable__faux:before{
|
|
2151
|
+
content:none;
|
|
2152
2152
|
}
|
|
2153
|
-
.v-
|
|
2154
|
-
|
|
2155
|
-
pointer-events:none;
|
|
2156
|
-
background:var(--tabs-color);
|
|
2157
|
-
--tab-content-opacity:1;
|
|
2153
|
+
.v-checkable:focus-within .v-checkable__faux:before{
|
|
2154
|
+
opacity:.2;
|
|
2158
2155
|
}
|
|
2159
|
-
.v-
|
|
2160
|
-
|
|
2156
|
+
.v-checkable__label{
|
|
2157
|
+
line-height:1.5;
|
|
2158
|
+
}
|
|
2159
|
+
.v-checkable--disabled .v-checkable__label{
|
|
2160
|
+
color:var(--color);
|
|
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;
|
|
2255
2167
|
}@layer vui-normalize, vui-color-scheme, vue-disabled-reason, vue-loading, vue-app-layout, vui;
|
|
2256
2168
|
@layer vui-normalize{
|
|
2257
2169
|
/*!
|
|
@@ -2384,6 +2296,114 @@
|
|
|
2384
2296
|
button{
|
|
2385
2297
|
background-color:transparent;
|
|
2386
2298
|
}
|
|
2299
|
+
}.v-tooltip{
|
|
2300
|
+
--menu-shadow:var(--tooltip-shadow);
|
|
2301
|
+
--v-stack-slide-amount:10px;
|
|
2302
|
+
font-size:var(--tooltip-font-size);
|
|
2303
|
+
border-radius:var(--tooltip-radius);
|
|
2304
|
+
}
|
|
2305
|
+
|
|
2306
|
+
.v-tooltip .v-menu__body{
|
|
2307
|
+
color:var(--tooltip-color) !important;
|
|
2308
|
+
background:var(--tooltip-background) !important;
|
|
2309
|
+
}
|
|
2310
|
+
|
|
2311
|
+
.v-tooltip__inner{
|
|
2312
|
+
display:inline-block;
|
|
2313
|
+
padding:var(--tooltip-padding);
|
|
2314
|
+
}.v-sheet-modal{
|
|
2315
|
+
--v-sheet-modal-width:90vw;
|
|
2316
|
+
--v-sheet-modal-max-width:none;
|
|
2317
|
+
--v-sheet-background:var(--palette-foundation);
|
|
2318
|
+
position:fixed;
|
|
2319
|
+
top:0;
|
|
2320
|
+
right:0;
|
|
2321
|
+
bottom:0;
|
|
2322
|
+
box-sizing:border-box;
|
|
2323
|
+
display:flex;
|
|
2324
|
+
flex-direction:column;
|
|
2325
|
+
width:var(--v-sheet-modal-width);
|
|
2326
|
+
max-width:var(--v-sheet-modal-max-width);
|
|
2327
|
+
padding:0;
|
|
2328
|
+
outline:0;
|
|
2329
|
+
box-shadow:var(--dialog-shadow);
|
|
2330
|
+
transition:transform var(--v-stack-transition-slowly);
|
|
2331
|
+
}
|
|
2332
|
+
|
|
2333
|
+
.v-sheet-modal__header{
|
|
2334
|
+
position:relative;
|
|
2335
|
+
z-index:1;
|
|
2336
|
+
flex:0 0;
|
|
2337
|
+
background-color:var(--v-sheet-background);
|
|
2338
|
+
}
|
|
2339
|
+
|
|
2340
|
+
.v-sheet-modal__scroller{
|
|
2341
|
+
flex:1 1;
|
|
2342
|
+
-webkit-overflow-scrolling:touch;
|
|
2343
|
+
height:100%;
|
|
2344
|
+
overflow-y:auto;
|
|
2345
|
+
background-color:var(--v-sheet-background);
|
|
2346
|
+
}
|
|
2347
|
+
|
|
2348
|
+
.v-sheet-modal--has-active-child{
|
|
2349
|
+
transform:translateX(calc(-100vw + var(--v-sheet-modal-width)));
|
|
2350
|
+
}
|
|
2351
|
+
|
|
2352
|
+
.v-sheet-modal-enter-active,.v-sheet-modal-leave-active{
|
|
2353
|
+
transition:transform var(--v-stack-transition-slowly);
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
.v-sheet-modal-enter-from,.v-sheet-modal-leave-to{
|
|
2357
|
+
transform:translateX(var(--v-sheet-modal-width));
|
|
2358
|
+
}.v-menu{
|
|
2359
|
+
box-shadow:var(--menu-shadow);
|
|
2360
|
+
}.v-dialog,.v-menu{
|
|
2361
|
+
border-radius:2px;
|
|
2362
|
+
}.v-dialog{
|
|
2363
|
+
position:relative;
|
|
2364
|
+
display:inline-block;
|
|
2365
|
+
min-width:280px;
|
|
2366
|
+
margin:24px;
|
|
2367
|
+
text-align:left;
|
|
2368
|
+
pointer-events:auto;
|
|
2369
|
+
outline:0;
|
|
2370
|
+
box-shadow:var(--dialog-shadow);
|
|
2371
|
+
}
|
|
2372
|
+
|
|
2373
|
+
.v-dialog__header{
|
|
2374
|
+
font-size:24px;
|
|
2375
|
+
line-height:1.4;
|
|
2376
|
+
}
|
|
2377
|
+
|
|
2378
|
+
.v-dialog__body,.v-dialog__header{
|
|
2379
|
+
box-sizing:border-box;
|
|
2380
|
+
padding:16px;
|
|
2381
|
+
}
|
|
2382
|
+
|
|
2383
|
+
.v-dialog__body{
|
|
2384
|
+
font-size:16px;
|
|
2385
|
+
line-height:1.5;
|
|
2386
|
+
}
|
|
2387
|
+
|
|
2388
|
+
.v-dialog--dense .v-dialog__body{
|
|
2389
|
+
padding-bottom:0;
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2392
|
+
.v-dialog__actions{
|
|
2393
|
+
box-sizing:border-box;
|
|
2394
|
+
display:flex;
|
|
2395
|
+
align-items:center;
|
|
2396
|
+
justify-content:flex-end;
|
|
2397
|
+
padding:8px;
|
|
2398
|
+
}
|
|
2399
|
+
|
|
2400
|
+
.v-dialog--dense .v-dialog__actions{
|
|
2401
|
+
padding-top:0;
|
|
2402
|
+
}
|
|
2403
|
+
@keyframes v-skelton-loader-bone-loading{
|
|
2404
|
+
to{
|
|
2405
|
+
transform:translateX(100%);
|
|
2406
|
+
}
|
|
2387
2407
|
}.v-snackbar{
|
|
2388
2408
|
font-size:14px;
|
|
2389
2409
|
box-shadow:var(--snackbar-shadow);
|
|
@@ -2416,24 +2436,4 @@
|
|
|
2416
2436
|
|
|
2417
2437
|
.v-snackbar__close{
|
|
2418
2438
|
margin:0;
|
|
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);
|
|
2424
|
-
}
|
|
2425
|
-
|
|
2426
|
-
.v-tooltip .v-menu__body{
|
|
2427
|
-
color:var(--tooltip-color) !important;
|
|
2428
|
-
background:var(--tooltip-background) !important;
|
|
2429
|
-
}
|
|
2430
|
-
|
|
2431
|
-
.v-tooltip__inner{
|
|
2432
|
-
display:inline-block;
|
|
2433
|
-
padding:var(--tooltip-padding);
|
|
2434
|
-
}
|
|
2435
|
-
@keyframes v-skelton-loader-bone-loading{
|
|
2436
|
-
to{
|
|
2437
|
-
transform:translateX(100%);
|
|
2438
|
-
}
|
|
2439
2439
|
}
|