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