@vuetify/nightly 3.7.1-master.2024-09-13 → 3.7.2-dev.2024-09-18

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/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.1-master.2024-09-13
2
+ * Vuetify v3.7.2-dev.2024-09-18
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -18715,6 +18715,40 @@ html.overflow-y-hidden {
18715
18715
  }
18716
18716
  .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
18717
18717
  transform: translateY(0.5rem);
18718
+ }.bottom-sheet-transition-enter-from {
18719
+ transform: translateY(100%);
18720
+ }
18721
+ .bottom-sheet-transition-leave-to {
18722
+ transform: translateY(100%);
18723
+ }
18724
+
18725
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18726
+ align-self: flex-end;
18727
+ border-radius: 0;
18728
+ flex: 0 1 auto;
18729
+ left: 0;
18730
+ right: 0;
18731
+ margin-inline: 0;
18732
+ margin-bottom: 0;
18733
+ transition-duration: 0.2s;
18734
+ width: 100%;
18735
+ max-width: 100%;
18736
+ overflow: visible;
18737
+ }
18738
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18739
+ box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
18740
+ }
18741
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18742
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18743
+ border-radius: 0;
18744
+ }
18745
+ .v-bottom-sheet.v-bottom-sheet--inset {
18746
+ max-width: none;
18747
+ }
18748
+ @media (min-width: 600px) {
18749
+ .v-bottom-sheet.v-bottom-sheet--inset {
18750
+ max-width: 70%;
18751
+ }
18718
18752
  }.v-breadcrumbs {
18719
18753
  display: flex;
18720
18754
  align-items: center;
@@ -18772,40 +18806,6 @@ html.overflow-y-hidden {
18772
18806
  display: inline-block;
18773
18807
  padding: 0 8px;
18774
18808
  vertical-align: middle;
18775
- }.bottom-sheet-transition-enter-from {
18776
- transform: translateY(100%);
18777
- }
18778
- .bottom-sheet-transition-leave-to {
18779
- transform: translateY(100%);
18780
- }
18781
-
18782
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18783
- align-self: flex-end;
18784
- border-radius: 0;
18785
- flex: 0 1 auto;
18786
- left: 0;
18787
- right: 0;
18788
- margin-inline: 0;
18789
- margin-bottom: 0;
18790
- transition-duration: 0.2s;
18791
- width: 100%;
18792
- max-width: 100%;
18793
- overflow: visible;
18794
- }
18795
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18796
- box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
18797
- }
18798
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18799
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18800
- border-radius: 0;
18801
- }
18802
- .v-bottom-sheet.v-bottom-sheet--inset {
18803
- max-width: none;
18804
- }
18805
- @media (min-width: 600px) {
18806
- .v-bottom-sheet.v-bottom-sheet--inset {
18807
- max-width: 70%;
18808
- }
18809
18809
  }.v-btn {
18810
18810
  align-items: center;
18811
18811
  border-radius: 4px;
@@ -19294,6 +19294,19 @@ html.overflow-y-hidden {
19294
19294
  }
19295
19295
  .v-btn-group--tile {
19296
19296
  border-radius: 0;
19297
+ }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19298
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19299
+ }
19300
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19301
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19302
+ }
19303
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19304
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19305
+ }
19306
+ @supports not selector(:focus-visible) {
19307
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19308
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19309
+ }
19297
19310
  }.v-card {
19298
19311
  display: block;
19299
19312
  overflow: hidden;
@@ -19602,24 +19615,6 @@ html.overflow-y-hidden {
19602
19615
  pointer-events: none;
19603
19616
  opacity: 0;
19604
19617
  transition: opacity 0.2s ease-in-out;
19605
- }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19606
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19607
- }
19608
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19609
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19610
- }
19611
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19612
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19613
- }
19614
- @supports not selector(:focus-visible) {
19615
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19616
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19617
- }
19618
- }.v-checkbox.v-input {
19619
- flex: 0 1 auto;
19620
- }
19621
- .v-checkbox .v-selection-control {
19622
- min-height: var(--v-input-control-height);
19623
19618
  }.v-carousel {
19624
19619
  overflow: hidden;
19625
19620
  position: relative;
@@ -20103,6 +20098,11 @@ html.overflow-y-hidden {
20103
20098
 
20104
20099
  .v-chip--label {
20105
20100
  border-radius: 4px;
20101
+ }.v-checkbox.v-input {
20102
+ flex: 0 1 auto;
20103
+ }
20104
+ .v-checkbox .v-selection-control {
20105
+ min-height: var(--v-input-control-height);
20106
20106
  }.v-chip-group {
20107
20107
  display: flex;
20108
20108
  max-width: 100%;
@@ -20121,6 +20121,91 @@ html.overflow-y-hidden {
20121
20121
  white-space: normal;
20122
20122
  flex-wrap: wrap;
20123
20123
  max-width: 100%;
20124
+ }.v-combobox .v-field .v-text-field__prefix,
20125
+ .v-combobox .v-field .v-text-field__suffix,
20126
+ .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
20127
+ cursor: text;
20128
+ }
20129
+ .v-combobox .v-field .v-field__input > input {
20130
+ flex: 1 1;
20131
+ }
20132
+ .v-combobox .v-field input {
20133
+ min-width: 64px;
20134
+ }
20135
+ .v-combobox .v-field:not(.v-field--focused) input {
20136
+ min-width: 0;
20137
+ }
20138
+ .v-combobox .v-field--dirty .v-combobox__selection {
20139
+ margin-inline-end: 2px;
20140
+ }
20141
+ .v-combobox .v-combobox__selection-text {
20142
+ overflow: hidden;
20143
+ text-overflow: ellipsis;
20144
+ white-space: nowrap;
20145
+ }
20146
+
20147
+ .v-combobox__content {
20148
+ overflow: hidden;
20149
+ }
20150
+ .v-combobox__content {
20151
+ box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
20152
+ }
20153
+ .v-combobox__content {
20154
+ border-radius: 4px;
20155
+ }
20156
+ .v-combobox__mask {
20157
+ background: rgb(var(--v-theme-surface-light));
20158
+ }
20159
+ .v-combobox__selection {
20160
+ display: inline-flex;
20161
+ align-items: center;
20162
+ height: 1.5rem;
20163
+ letter-spacing: inherit;
20164
+ line-height: inherit;
20165
+ max-width: calc(100% - 2px - 2px);
20166
+ }
20167
+ .v-combobox__selection:first-child {
20168
+ margin-inline-start: 0;
20169
+ }
20170
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
20171
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
20172
+ .v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
20173
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
20174
+ top: 0px;
20175
+ }
20176
+ .v-combobox--selecting-index .v-combobox__selection {
20177
+ opacity: var(--v-medium-emphasis-opacity);
20178
+ }
20179
+ .v-combobox--selecting-index .v-combobox__selection--selected {
20180
+ opacity: 1;
20181
+ }
20182
+ .v-combobox--selecting-index .v-field__input > input {
20183
+ caret-color: transparent;
20184
+ }
20185
+ .v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
20186
+ flex: 1 1;
20187
+ position: absolute;
20188
+ left: 0;
20189
+ right: 0;
20190
+ width: 100%;
20191
+ padding-inline: inherit;
20192
+ }
20193
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
20194
+ transition: none;
20195
+ }
20196
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
20197
+ opacity: 0;
20198
+ }
20199
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
20200
+ opacity: 0;
20201
+ }
20202
+ .v-combobox__menu-icon {
20203
+ margin-inline-start: 4px;
20204
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20205
+ }
20206
+ .v-combobox--active-menu .v-combobox__menu-icon {
20207
+ opacity: var(--v-high-emphasis-opacity);
20208
+ transform: rotate(180deg);
20124
20209
  }.v-color-picker {
20125
20210
  align-self: flex-start;
20126
20211
  contain: content;
@@ -20366,6 +20451,12 @@ html.overflow-y-hidden {
20366
20451
  }
20367
20452
  .v-data-table-footer__page {
20368
20453
  padding: 0 8px;
20454
+ }.v-date-picker {
20455
+ overflow: hidden;
20456
+ width: 328px;
20457
+ }
20458
+ .v-date-picker--show-week {
20459
+ width: 368px;
20369
20460
  }.v-date-picker-controls {
20370
20461
  display: flex;
20371
20462
  align-items: center;
@@ -20422,12 +20513,6 @@ html.overflow-y-hidden {
20422
20513
 
20423
20514
  .v-date-picker__title {
20424
20515
  display: inline-block;
20425
- }.v-date-picker {
20426
- overflow: hidden;
20427
- width: 328px;
20428
- }
20429
- .v-date-picker--show-week {
20430
- width: 368px;
20431
20516
  }.v-date-picker-header {
20432
20517
  align-items: flex-end;
20433
20518
  height: 70px;
@@ -20796,110 +20881,41 @@ html.overflow-y-hidden {
20796
20881
  .v-empty-state__action-btn.v-btn {
20797
20882
  background-color: initial;
20798
20883
  color: initial;
20799
- }.v-fab {
20800
- align-items: center;
20801
- display: inline-flex;
20802
- flex: 1 1 auto;
20803
- pointer-events: none;
20804
- position: relative;
20805
- transition-duration: 0.2s;
20806
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
20807
- vertical-align: middle;
20808
- }
20809
- .v-fab .v-btn {
20810
- pointer-events: auto;
20884
+ }.v-expansion-panel {
20885
+ background-color: rgb(var(--v-theme-surface));
20886
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
20811
20887
  }
20812
- .v-fab .v-btn--variant-elevated {
20813
- box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
20888
+ .v-expansion-panel:not(:first-child)::after {
20889
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
20814
20890
  }
20815
- .v-fab--app, .v-fab--absolute {
20816
- display: flex;
20891
+ .v-expansion-panel--disabled .v-expansion-panel-title {
20892
+ color: rgba(var(--v-theme-on-surface), 0.26);
20817
20893
  }
20818
- .v-fab--start, .v-fab--left {
20819
- justify-content: flex-start;
20894
+ .v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
20895
+ opacity: 0.4615384615;
20820
20896
  }
20821
- .v-fab--center {
20822
- align-items: center;
20897
+
20898
+ .v-expansion-panels {
20899
+ display: flex;
20900
+ flex-wrap: wrap;
20823
20901
  justify-content: center;
20902
+ list-style-type: none;
20903
+ padding: 0;
20904
+ width: 100%;
20905
+ position: relative;
20906
+ z-index: 1;
20824
20907
  }
20825
- .v-fab--end, .v-fab--right {
20826
- justify-content: flex-end;
20908
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
20909
+ border-bottom-left-radius: 0 !important;
20910
+ border-bottom-right-radius: 0 !important;
20827
20911
  }
20828
- .v-fab--bottom {
20829
- align-items: flex-end;
20912
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
20913
+ border-top-left-radius: 0 !important;
20914
+ border-top-right-radius: 0 !important;
20830
20915
  }
20831
- .v-fab--top {
20832
- align-items: flex-start;
20833
- }
20834
- .v-fab--extended .v-btn {
20835
- border-radius: 9999px !important;
20836
- }
20837
-
20838
- .v-fab__container {
20839
- align-self: center;
20840
- display: inline-flex;
20841
- position: absolute;
20842
- vertical-align: middle;
20843
- }
20844
- .v-fab--app .v-fab__container {
20845
- margin: 12px;
20846
- }
20847
- .v-fab--absolute .v-fab__container {
20848
- position: absolute;
20849
- z-index: 4;
20850
- }
20851
- .v-fab--offset.v-fab--top .v-fab__container {
20852
- transform: translateY(-50%);
20853
- }
20854
- .v-fab--offset.v-fab--bottom .v-fab__container {
20855
- transform: translateY(50%);
20856
- }
20857
- .v-fab--top .v-fab__container {
20858
- top: 0;
20859
- }
20860
- .v-fab--bottom .v-fab__container {
20861
- bottom: 0;
20862
- }
20863
- .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
20864
- left: 0;
20865
- }
20866
- .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
20867
- right: 0;
20868
- }.v-expansion-panel {
20869
- background-color: rgb(var(--v-theme-surface));
20870
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
20871
- }
20872
- .v-expansion-panel:not(:first-child)::after {
20873
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
20874
- }
20875
- .v-expansion-panel--disabled .v-expansion-panel-title {
20876
- color: rgba(var(--v-theme-on-surface), 0.26);
20877
- }
20878
- .v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
20879
- opacity: 0.4615384615;
20880
- }
20881
-
20882
- .v-expansion-panels {
20883
- display: flex;
20884
- flex-wrap: wrap;
20885
- justify-content: center;
20886
- list-style-type: none;
20887
- padding: 0;
20888
- width: 100%;
20889
- position: relative;
20890
- z-index: 1;
20891
- }
20892
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
20893
- border-bottom-left-radius: 0 !important;
20894
- border-bottom-right-radius: 0 !important;
20895
- }
20896
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
20897
- border-top-left-radius: 0 !important;
20898
- border-top-right-radius: 0 !important;
20899
- }
20900
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
20901
- border-bottom-left-radius: 0 !important;
20902
- border-bottom-right-radius: 0 !important;
20916
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
20917
+ border-bottom-left-radius: 0 !important;
20918
+ border-bottom-right-radius: 0 !important;
20903
20919
  }
20904
20920
  .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
20905
20921
  border-top-left-radius: 0 !important;
@@ -21081,6 +21097,75 @@ html.overflow-y-hidden {
21081
21097
  }
21082
21098
  .v-expansion-panels--tile > .v-expansion-panel {
21083
21099
  border-radius: 0;
21100
+ }.v-fab {
21101
+ align-items: center;
21102
+ display: inline-flex;
21103
+ flex: 1 1 auto;
21104
+ pointer-events: none;
21105
+ position: relative;
21106
+ transition-duration: 0.2s;
21107
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21108
+ vertical-align: middle;
21109
+ }
21110
+ .v-fab .v-btn {
21111
+ pointer-events: auto;
21112
+ }
21113
+ .v-fab .v-btn--variant-elevated {
21114
+ box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
21115
+ }
21116
+ .v-fab--app, .v-fab--absolute {
21117
+ display: flex;
21118
+ }
21119
+ .v-fab--start, .v-fab--left {
21120
+ justify-content: flex-start;
21121
+ }
21122
+ .v-fab--center {
21123
+ align-items: center;
21124
+ justify-content: center;
21125
+ }
21126
+ .v-fab--end, .v-fab--right {
21127
+ justify-content: flex-end;
21128
+ }
21129
+ .v-fab--bottom {
21130
+ align-items: flex-end;
21131
+ }
21132
+ .v-fab--top {
21133
+ align-items: flex-start;
21134
+ }
21135
+ .v-fab--extended .v-btn {
21136
+ border-radius: 9999px !important;
21137
+ }
21138
+
21139
+ .v-fab__container {
21140
+ align-self: center;
21141
+ display: inline-flex;
21142
+ position: absolute;
21143
+ vertical-align: middle;
21144
+ }
21145
+ .v-fab--app .v-fab__container {
21146
+ margin: 12px;
21147
+ }
21148
+ .v-fab--absolute .v-fab__container {
21149
+ position: absolute;
21150
+ z-index: 4;
21151
+ }
21152
+ .v-fab--offset.v-fab--top .v-fab__container {
21153
+ transform: translateY(-50%);
21154
+ }
21155
+ .v-fab--offset.v-fab--bottom .v-fab__container {
21156
+ transform: translateY(50%);
21157
+ }
21158
+ .v-fab--top .v-fab__container {
21159
+ top: 0;
21160
+ }
21161
+ .v-fab--bottom .v-fab__container {
21162
+ bottom: 0;
21163
+ }
21164
+ .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
21165
+ left: 0;
21166
+ }
21167
+ .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
21168
+ right: 0;
21084
21169
  }/* region INPUT */
21085
21170
  .v-field {
21086
21171
  display: grid;
@@ -23294,6 +23379,8 @@ textarea.v-field__input::placeholder {
23294
23379
  }
23295
23380
  .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
23296
23381
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
23382
+ }.v-locale-provider {
23383
+ display: contents;
23297
23384
  }.v-main {
23298
23385
  flex: 1 0 auto;
23299
23386
  max-width: 100%;
@@ -23324,8 +23411,6 @@ textarea.v-field__input::placeholder {
23324
23411
  --v-layout-right: 0px;
23325
23412
  --v-layout-top: 0px;
23326
23413
  --v-layout-bottom: 0px;
23327
- }.v-locale-provider {
23328
- display: contents;
23329
23414
  }.v-menu > .v-overlay__content {
23330
23415
  display: flex;
23331
23416
  flex-direction: column;
@@ -23469,64 +23554,6 @@ textarea.v-field__input::placeholder {
23469
23554
  .v-navigation-drawer__append {
23470
23555
  flex: none;
23471
23556
  overflow: hidden;
23472
- }.v-otp-input {
23473
- align-items: center;
23474
- display: flex;
23475
- justify-content: center;
23476
- padding: 0.5rem 0;
23477
- position: relative;
23478
- }
23479
- .v-otp-input {
23480
- border-radius: 4px;
23481
- }
23482
- .v-otp-input .v-field {
23483
- height: 100%;
23484
- }
23485
-
23486
- .v-otp-input__divider {
23487
- margin: 0 8px;
23488
- }
23489
-
23490
- .v-otp-input__content {
23491
- align-items: center;
23492
- display: flex;
23493
- gap: 0.5rem;
23494
- height: 64px;
23495
- padding: 0.5rem;
23496
- justify-content: center;
23497
- max-width: 320px;
23498
- position: relative;
23499
- border-radius: inherit;
23500
- }
23501
- .v-otp-input--divided .v-otp-input__content {
23502
- max-width: 360px;
23503
- }
23504
-
23505
- .v-otp-input__field {
23506
- color: inherit;
23507
- font-size: 1.25rem;
23508
- height: 100%;
23509
- outline: none;
23510
- text-align: center;
23511
- width: 100%;
23512
- }
23513
- .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
23514
- -webkit-appearance: none;
23515
- margin: 0;
23516
- }
23517
- .v-otp-input__field[type=number] {
23518
- -moz-appearance: textfield;
23519
- }
23520
-
23521
- .v-otp-input__loader {
23522
- align-items: center;
23523
- display: flex;
23524
- height: 100%;
23525
- justify-content: center;
23526
- width: 100%;
23527
- }
23528
- .v-otp-input__loader .v-progress-linear {
23529
- position: absolute;
23530
23557
  }.v-overlay-container {
23531
23558
  contain: layout;
23532
23559
  left: 0;
@@ -23590,56 +23617,100 @@ html.v-overlay-scroll-blocked {
23590
23617
 
23591
23618
  .v-overlay--scroll-blocked {
23592
23619
  padding-inline-end: var(--v-scrollbar-offset);
23593
- }.v-pagination__list {
23594
- display: inline-flex;
23595
- list-style-type: none;
23596
- justify-content: center;
23597
- width: 100%;
23598
- }
23599
- .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23600
- margin: 0.3rem;
23601
- }.v-parallax {
23602
- position: relative;
23603
- overflow: hidden;
23604
- }
23605
- .v-parallax--active > .v-img__img {
23606
- will-change: transform;
23607
- }.v-progress-circular {
23620
+ }.v-otp-input {
23608
23621
  align-items: center;
23609
- display: inline-flex;
23622
+ display: flex;
23610
23623
  justify-content: center;
23624
+ padding: 0.5rem 0;
23611
23625
  position: relative;
23612
- vertical-align: middle;
23613
23626
  }
23614
- .v-progress-circular > svg {
23615
- width: 100%;
23627
+ .v-otp-input {
23628
+ border-radius: 4px;
23629
+ }
23630
+ .v-otp-input .v-field {
23616
23631
  height: 100%;
23617
- margin: auto;
23618
- position: absolute;
23619
- top: 0;
23620
- bottom: 0;
23621
- left: 0;
23622
- right: 0;
23623
- z-index: 0;
23624
23632
  }
23625
23633
 
23626
- .v-progress-circular__content {
23634
+ .v-otp-input__divider {
23635
+ margin: 0 8px;
23636
+ }
23637
+
23638
+ .v-otp-input__content {
23627
23639
  align-items: center;
23628
23640
  display: flex;
23641
+ gap: 0.5rem;
23642
+ height: 64px;
23643
+ padding: 0.5rem;
23629
23644
  justify-content: center;
23645
+ max-width: 320px;
23646
+ position: relative;
23647
+ border-radius: inherit;
23630
23648
  }
23631
-
23632
- .v-progress-circular__underlay {
23633
- color: rgba(var(--v-border-color), var(--v-border-opacity));
23634
- stroke: currentColor;
23635
- z-index: 1;
23649
+ .v-otp-input--divided .v-otp-input__content {
23650
+ max-width: 360px;
23636
23651
  }
23637
23652
 
23638
- .v-progress-circular__overlay {
23639
- stroke: currentColor;
23640
- transition: all 0.2s ease-in-out, stroke-width 0s;
23641
- z-index: 2;
23642
- }
23653
+ .v-otp-input__field {
23654
+ color: inherit;
23655
+ font-size: 1.25rem;
23656
+ height: 100%;
23657
+ outline: none;
23658
+ text-align: center;
23659
+ width: 100%;
23660
+ }
23661
+ .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
23662
+ -webkit-appearance: none;
23663
+ margin: 0;
23664
+ }
23665
+ .v-otp-input__field[type=number] {
23666
+ -moz-appearance: textfield;
23667
+ }
23668
+
23669
+ .v-otp-input__loader {
23670
+ align-items: center;
23671
+ display: flex;
23672
+ height: 100%;
23673
+ justify-content: center;
23674
+ width: 100%;
23675
+ }
23676
+ .v-otp-input__loader .v-progress-linear {
23677
+ position: absolute;
23678
+ }.v-progress-circular {
23679
+ align-items: center;
23680
+ display: inline-flex;
23681
+ justify-content: center;
23682
+ position: relative;
23683
+ vertical-align: middle;
23684
+ }
23685
+ .v-progress-circular > svg {
23686
+ width: 100%;
23687
+ height: 100%;
23688
+ margin: auto;
23689
+ position: absolute;
23690
+ top: 0;
23691
+ bottom: 0;
23692
+ left: 0;
23693
+ right: 0;
23694
+ z-index: 0;
23695
+ }
23696
+
23697
+ .v-progress-circular__content {
23698
+ align-items: center;
23699
+ display: flex;
23700
+ justify-content: center;
23701
+ }
23702
+
23703
+ .v-progress-circular__underlay {
23704
+ color: rgba(var(--v-border-color), var(--v-border-opacity));
23705
+ stroke: currentColor;
23706
+ z-index: 1;
23707
+ }
23708
+
23709
+ .v-progress-circular__overlay {
23710
+ stroke: currentColor;
23711
+ transition: all 0.2s ease-in-out, stroke-width 0s;
23712
+ z-index: 2;
23713
+ }
23643
23714
 
23644
23715
  .v-progress-circular--size-x-small {
23645
23716
  height: 16px;
@@ -23706,6 +23777,14 @@ html.v-overlay-scroll-blocked {
23706
23777
  100% {
23707
23778
  transform: rotate(270deg);
23708
23779
  }
23780
+ }.v-pagination__list {
23781
+ display: inline-flex;
23782
+ list-style-type: none;
23783
+ justify-content: center;
23784
+ width: 100%;
23785
+ }
23786
+ .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23787
+ margin: 0.3rem;
23709
23788
  }.v-progress-linear {
23710
23789
  background: transparent;
23711
23790
  overflow: hidden;
@@ -24134,6 +24213,14 @@ html.v-overlay-scroll-blocked {
24134
24213
  .v-select--active-menu .v-select__menu-icon {
24135
24214
  opacity: var(--v-high-emphasis-opacity);
24136
24215
  transform: rotate(180deg);
24216
+ }.v-selection-control-group {
24217
+ grid-area: control;
24218
+ display: flex;
24219
+ flex-direction: column;
24220
+ }
24221
+ .v-selection-control-group--inline {
24222
+ flex-direction: row;
24223
+ flex-wrap: wrap;
24137
24224
  }.v-selection-control {
24138
24225
  align-items: center;
24139
24226
  contain: layout;
@@ -24237,14 +24324,6 @@ html.v-overlay-scroll-blocked {
24237
24324
  }
24238
24325
  .v-selection-control--focus-visible .v-selection-control__input::before {
24239
24326
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
24240
- }.v-selection-control-group {
24241
- grid-area: control;
24242
- display: flex;
24243
- flex-direction: column;
24244
- }
24245
- .v-selection-control-group--inline {
24246
- flex-direction: row;
24247
- flex-wrap: wrap;
24248
24327
  }.v-sheet {
24249
24328
  display: block;
24250
24329
  }
@@ -24561,47 +24640,6 @@ html.v-overlay-scroll-blocked {
24561
24640
  .v-slide-group--vertical .v-slide-group__container {
24562
24641
  overflow-x: hidden;
24563
24642
  overflow-y: auto;
24564
- }.v-speed-dial__content {
24565
- gap: 8px;
24566
- }
24567
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
24568
- flex-direction: row;
24569
- }
24570
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
24571
- flex-direction: row-reverse;
24572
- }
24573
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
24574
- flex-direction: column-reverse;
24575
- }
24576
- .v-speed-dial__content > *:nth-child(1) {
24577
- transition-delay: 0s;
24578
- }
24579
- .v-speed-dial__content > *:nth-child(2) {
24580
- transition-delay: 0.05s;
24581
- }
24582
- .v-speed-dial__content > *:nth-child(3) {
24583
- transition-delay: 0.1s;
24584
- }
24585
- .v-speed-dial__content > *:nth-child(4) {
24586
- transition-delay: 0.15s;
24587
- }
24588
- .v-speed-dial__content > *:nth-child(5) {
24589
- transition-delay: 0.2s;
24590
- }
24591
- .v-speed-dial__content > *:nth-child(6) {
24592
- transition-delay: 0.25s;
24593
- }
24594
- .v-speed-dial__content > *:nth-child(7) {
24595
- transition-delay: 0.3s;
24596
- }
24597
- .v-speed-dial__content > *:nth-child(8) {
24598
- transition-delay: 0.35s;
24599
- }
24600
- .v-speed-dial__content > *:nth-child(9) {
24601
- transition-delay: 0.4s;
24602
- }
24603
- .v-speed-dial__content > *:nth-child(10) {
24604
- transition-delay: 0.45s;
24605
24643
  }.v-snackbar {
24606
24644
  justify-content: center;
24607
24645
  z-index: 10000;
@@ -24742,6 +24780,47 @@ html.v-overlay-scroll-blocked {
24742
24780
  }
24743
24781
  .v-snackbar-transition-leave-to {
24744
24782
  opacity: 0;
24783
+ }.v-speed-dial__content {
24784
+ gap: 8px;
24785
+ }
24786
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
24787
+ flex-direction: row;
24788
+ }
24789
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
24790
+ flex-direction: row-reverse;
24791
+ }
24792
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
24793
+ flex-direction: column-reverse;
24794
+ }
24795
+ .v-speed-dial__content > *:nth-child(1) {
24796
+ transition-delay: 0s;
24797
+ }
24798
+ .v-speed-dial__content > *:nth-child(2) {
24799
+ transition-delay: 0.05s;
24800
+ }
24801
+ .v-speed-dial__content > *:nth-child(3) {
24802
+ transition-delay: 0.1s;
24803
+ }
24804
+ .v-speed-dial__content > *:nth-child(4) {
24805
+ transition-delay: 0.15s;
24806
+ }
24807
+ .v-speed-dial__content > *:nth-child(5) {
24808
+ transition-delay: 0.2s;
24809
+ }
24810
+ .v-speed-dial__content > *:nth-child(6) {
24811
+ transition-delay: 0.25s;
24812
+ }
24813
+ .v-speed-dial__content > *:nth-child(7) {
24814
+ transition-delay: 0.3s;
24815
+ }
24816
+ .v-speed-dial__content > *:nth-child(8) {
24817
+ transition-delay: 0.35s;
24818
+ }
24819
+ .v-speed-dial__content > *:nth-child(9) {
24820
+ transition-delay: 0.4s;
24821
+ }
24822
+ .v-speed-dial__content > *:nth-child(10) {
24823
+ transition-delay: 0.45s;
24745
24824
  }.v-stepper.v-sheet {
24746
24825
  overflow: hidden;
24747
24826
  }
@@ -25142,35 +25221,6 @@ html.v-overlay-scroll-blocked {
25142
25221
  }
25143
25222
  .v-system-bar:not(.v-system-bar--absolute) {
25144
25223
  padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25145
- }.v-tab.v-tab.v-btn {
25146
- height: var(--v-tabs-height);
25147
- border-radius: 0;
25148
- min-width: 90px;
25149
- }
25150
- .v-slide-group--horizontal .v-tab {
25151
- max-width: 360px;
25152
- }
25153
- .v-slide-group--vertical .v-tab {
25154
- justify-content: start;
25155
- }
25156
-
25157
- .v-tab__slider {
25158
- position: absolute;
25159
- bottom: 0;
25160
- left: 0;
25161
- height: 2px;
25162
- width: 100%;
25163
- background: currentColor;
25164
- pointer-events: none;
25165
- opacity: 0;
25166
- }
25167
- .v-tab--selected .v-tab__slider {
25168
- opacity: 1;
25169
- }
25170
- .v-slide-group--vertical .v-tab__slider {
25171
- top: 0;
25172
- height: 100%;
25173
- width: 2px;
25174
25224
  }.v-tabs {
25175
25225
  display: flex;
25176
25226
  height: var(--v-tabs-height);
@@ -25237,6 +25287,35 @@ html.v-overlay-scroll-blocked {
25237
25287
  .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
25238
25288
  margin-inline-end: 52px;
25239
25289
  }
25290
+ }.v-tab.v-tab.v-btn {
25291
+ height: var(--v-tabs-height);
25292
+ border-radius: 0;
25293
+ min-width: 90px;
25294
+ }
25295
+ .v-slide-group--horizontal .v-tab {
25296
+ max-width: 360px;
25297
+ }
25298
+ .v-slide-group--vertical .v-tab {
25299
+ justify-content: start;
25300
+ }
25301
+
25302
+ .v-tab__slider {
25303
+ position: absolute;
25304
+ bottom: 0;
25305
+ left: 0;
25306
+ height: 2px;
25307
+ width: 100%;
25308
+ background: currentColor;
25309
+ pointer-events: none;
25310
+ opacity: 0;
25311
+ }
25312
+ .v-tab--selected .v-tab__slider {
25313
+ opacity: 1;
25314
+ }
25315
+ .v-slide-group--vertical .v-tab__slider {
25316
+ top: 0;
25317
+ height: 100%;
25318
+ width: 2px;
25240
25319
  }.v-table {
25241
25320
  font-size: 0.875rem;
25242
25321
  transition-duration: 0.28s;
@@ -25446,10 +25525,7 @@ html.v-overlay-scroll-blocked {
25446
25525
  padding-inline-end: var(--v-field-padding-end);
25447
25526
  }
25448
25527
 
25449
- /* endregion */.v-theme-provider {
25450
- background: rgb(var(--v-theme-background));
25451
- color: rgb(var(--v-theme-on-background));
25452
- }.v-textarea .v-field {
25528
+ /* endregion */.v-textarea .v-field {
25453
25529
  --v-textarea-control-height: var(--v-input-control-height);
25454
25530
  }
25455
25531
  .v-textarea .v-field__field {
@@ -25488,340 +25564,14 @@ html.v-overlay-scroll-blocked {
25488
25564
  }
25489
25565
  .v-textarea textarea:invalid {
25490
25566
  box-shadow: none;
25491
- }.v-tooltip > .v-overlay__content {
25492
- background: rgb(var(--v-theme-surface-variant));
25493
- color: rgb(var(--v-theme-on-surface-variant));
25494
- border-radius: 4px;
25495
- font-size: 0.875rem;
25496
- line-height: 1.6;
25497
- display: inline-block;
25498
- padding: 5px 16px;
25499
- text-transform: initial;
25500
- width: auto;
25501
- opacity: 1;
25502
- pointer-events: none;
25503
- transition-property: opacity, transform;
25504
- overflow-wrap: break-word;
25567
+ }.v-theme-provider {
25568
+ background: rgb(var(--v-theme-background));
25569
+ color: rgb(var(--v-theme-on-background));
25570
+ }.v-timeline .v-timeline-divider__dot {
25571
+ background: rgb(var(--v-theme-surface-light));
25505
25572
  }
25506
- .v-tooltip > .v-overlay__content[class*=enter-active] {
25507
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
25508
- transition-duration: 150ms;
25509
- }
25510
- .v-tooltip > .v-overlay__content[class*=leave-active] {
25511
- transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
25512
- transition-duration: 75ms;
25513
- }.v-toolbar {
25514
- align-items: flex-start;
25515
- display: flex;
25516
- flex: none;
25517
- flex-direction: column;
25518
- justify-content: space-between;
25519
- max-width: 100%;
25520
- position: relative;
25521
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
25522
- transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
25523
- width: 100%;
25524
- }
25525
- .v-toolbar {
25526
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
25527
- border-style: solid;
25528
- border-width: 0;
25529
- }
25530
- .v-toolbar--border {
25531
- border-width: thin;
25532
- box-shadow: none;
25533
- }
25534
- .v-toolbar {
25535
- box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
25536
- }
25537
- .v-toolbar {
25538
- border-radius: 0;
25539
- }
25540
- .v-toolbar {
25541
- background: rgb(var(--v-theme-surface-light));
25542
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25543
- }
25544
- .v-toolbar--absolute {
25545
- position: absolute;
25546
- }
25547
- .v-toolbar--collapse {
25548
- max-width: 112px;
25549
- overflow: hidden;
25550
- border-end-end-radius: 24px;
25551
- }
25552
- .v-toolbar--collapse .v-toolbar-title {
25553
- display: none;
25554
- }
25555
- .v-toolbar--flat {
25556
- box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
25557
- }
25558
- .v-toolbar--floating {
25559
- display: inline-flex;
25560
- }
25561
- .v-toolbar--rounded {
25562
- border-radius: 4px;
25563
- }
25564
-
25565
- .v-toolbar__content,
25566
- .v-toolbar__extension {
25567
- align-items: center;
25568
- display: flex;
25569
- flex: 0 0 auto;
25570
- position: relative;
25571
- transition: inherit;
25572
- width: 100%;
25573
- }
25574
-
25575
- .v-toolbar__content {
25576
- overflow: hidden;
25577
- }
25578
- .v-toolbar__content > .v-btn:first-child {
25579
- margin-inline-start: 4px;
25580
- }
25581
- .v-toolbar__content > .v-btn:last-child {
25582
- margin-inline-end: 4px;
25583
- }
25584
- .v-toolbar__content > .v-toolbar-title {
25585
- margin-inline-start: 20px;
25586
- }
25587
- .v-toolbar--density-prominent .v-toolbar__content {
25588
- align-items: flex-start;
25589
- }
25590
-
25591
- .v-toolbar__image {
25592
- display: flex;
25593
- opacity: var(--v-toolbar-image-opacity, 1);
25594
- transition-property: opacity;
25595
- }
25596
- .v-toolbar__image {
25597
- position: absolute;
25598
- top: 0;
25599
- left: 0;
25600
- width: 100%;
25601
- height: 100%;
25602
- }
25603
-
25604
- .v-toolbar__prepend,
25605
- .v-toolbar__append {
25606
- align-items: center;
25607
- align-self: stretch;
25608
- display: flex;
25609
- }
25610
-
25611
- .v-toolbar__prepend {
25612
- margin-inline: 4px auto;
25613
- }
25614
-
25615
- .v-toolbar__append {
25616
- margin-inline: auto 4px;
25617
- }
25618
-
25619
- .v-toolbar-title {
25620
- flex: 1 1;
25621
- font-size: 1.25rem;
25622
- min-width: 0;
25623
- }
25624
- .v-toolbar-title {
25625
- font-size: 1.25rem;
25626
- font-weight: 400;
25627
- letter-spacing: 0;
25628
- line-height: 1.75rem;
25629
- text-transform: none;
25630
- }
25631
- .v-toolbar--density-prominent .v-toolbar-title {
25632
- align-self: flex-end;
25633
- padding-bottom: 6px;
25634
- }
25635
- .v-toolbar--density-prominent .v-toolbar-title {
25636
- font-size: 1.5rem;
25637
- font-weight: 400;
25638
- letter-spacing: 0;
25639
- line-height: 2.25rem;
25640
- text-transform: none;
25641
- }
25642
-
25643
- .v-toolbar-title__placeholder {
25644
- overflow: hidden;
25645
- text-overflow: ellipsis;
25646
- white-space: nowrap;
25647
- }
25648
-
25649
- .v-toolbar-items {
25650
- display: flex;
25651
- height: inherit;
25652
- align-self: stretch;
25653
- }
25654
- .v-toolbar-items > .v-btn {
25655
- border-radius: 0;
25656
- }.v-virtual-scroll {
25657
- display: block;
25658
- flex: 1 1 auto;
25659
- max-width: 100%;
25660
- overflow: auto;
25661
- position: relative;
25662
- }
25663
- .v-virtual-scroll__container {
25664
- display: block;
25665
- }.v-window {
25666
- overflow: hidden;
25667
- }
25668
- .v-window__container {
25669
- display: flex;
25670
- flex-direction: column;
25671
- height: inherit;
25672
- position: relative;
25673
- transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
25674
- }
25675
- .v-window__controls {
25676
- position: absolute;
25677
- left: 0;
25678
- top: 0;
25679
- width: 100%;
25680
- height: 100%;
25681
- display: flex;
25682
- align-items: center;
25683
- justify-content: space-between;
25684
- padding: 0 16px;
25685
- pointer-events: none;
25686
- }
25687
- .v-window__controls > * {
25688
- pointer-events: auto;
25689
- }
25690
- .v-window--show-arrows-on-hover {
25691
- overflow: hidden;
25692
- }
25693
- .v-window--show-arrows-on-hover .v-window__left {
25694
- transform: translateX(-200%);
25695
- }
25696
- .v-window--show-arrows-on-hover .v-window__right {
25697
- transform: translateX(200%);
25698
- }
25699
- .v-window--show-arrows-on-hover:hover .v-window__left,
25700
- .v-window--show-arrows-on-hover:hover .v-window__right {
25701
- transform: translateX(0);
25702
- }
25703
-
25704
- .v-window-x-transition-enter-active, .v-window-x-transition-leave-active, .v-window-x-reverse-transition-enter-active, .v-window-x-reverse-transition-leave-active, .v-window-y-transition-enter-active, .v-window-y-transition-leave-active, .v-window-y-reverse-transition-enter-active, .v-window-y-reverse-transition-leave-active {
25705
- transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
25706
- }
25707
- .v-window-x-transition-leave-from, .v-window-x-transition-leave-to, .v-window-x-reverse-transition-leave-from, .v-window-x-reverse-transition-leave-to, .v-window-y-transition-leave-from, .v-window-y-transition-leave-to, .v-window-y-reverse-transition-leave-from, .v-window-y-reverse-transition-leave-to {
25708
- position: absolute !important;
25709
- top: 0;
25710
- width: 100%;
25711
- }
25712
- .v-window-x-transition-enter-from {
25713
- transform: translateX(100%);
25714
- }
25715
- .v-window-x-transition-leave-to {
25716
- transform: translateX(-100%);
25717
- }
25718
- .v-window-x-reverse-transition-enter-from {
25719
- transform: translateX(-100%);
25720
- }
25721
- .v-window-x-reverse-transition-leave-to {
25722
- transform: translateX(100%);
25723
- }
25724
- .v-window-y-transition-enter-from {
25725
- transform: translateY(100%);
25726
- }
25727
- .v-window-y-transition-leave-to {
25728
- transform: translateY(-100%);
25729
- }
25730
- .v-window-y-reverse-transition-enter-from {
25731
- transform: translateY(-100%);
25732
- }
25733
- .v-window-y-reverse-transition-leave-to {
25734
- transform: translateY(100%);
25735
- }.v-combobox .v-field .v-text-field__prefix,
25736
- .v-combobox .v-field .v-text-field__suffix,
25737
- .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
25738
- cursor: text;
25739
- }
25740
- .v-combobox .v-field .v-field__input > input {
25741
- flex: 1 1;
25742
- }
25743
- .v-combobox .v-field input {
25744
- min-width: 64px;
25745
- }
25746
- .v-combobox .v-field:not(.v-field--focused) input {
25747
- min-width: 0;
25748
- }
25749
- .v-combobox .v-field--dirty .v-combobox__selection {
25750
- margin-inline-end: 2px;
25751
- }
25752
- .v-combobox .v-combobox__selection-text {
25753
- overflow: hidden;
25754
- text-overflow: ellipsis;
25755
- white-space: nowrap;
25756
- }
25757
-
25758
- .v-combobox__content {
25759
- overflow: hidden;
25760
- }
25761
- .v-combobox__content {
25762
- box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
25763
- }
25764
- .v-combobox__content {
25765
- border-radius: 4px;
25766
- }
25767
- .v-combobox__mask {
25768
- background: rgb(var(--v-theme-surface-light));
25769
- }
25770
- .v-combobox__selection {
25771
- display: inline-flex;
25772
- align-items: center;
25773
- height: 1.5rem;
25774
- letter-spacing: inherit;
25775
- line-height: inherit;
25776
- max-width: calc(100% - 2px - 2px);
25777
- }
25778
- .v-combobox__selection:first-child {
25779
- margin-inline-start: 0;
25780
- }
25781
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
25782
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
25783
- .v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
25784
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
25785
- top: 0px;
25786
- }
25787
- .v-combobox--selecting-index .v-combobox__selection {
25788
- opacity: var(--v-medium-emphasis-opacity);
25789
- }
25790
- .v-combobox--selecting-index .v-combobox__selection--selected {
25791
- opacity: 1;
25792
- }
25793
- .v-combobox--selecting-index .v-field__input > input {
25794
- caret-color: transparent;
25795
- }
25796
- .v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
25797
- flex: 1 1;
25798
- position: absolute;
25799
- left: 0;
25800
- right: 0;
25801
- width: 100%;
25802
- padding-inline: inherit;
25803
- }
25804
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
25805
- transition: none;
25806
- }
25807
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
25808
- opacity: 0;
25809
- }
25810
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
25811
- opacity: 0;
25812
- }
25813
- .v-combobox__menu-icon {
25814
- margin-inline-start: 4px;
25815
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
25816
- }
25817
- .v-combobox--active-menu .v-combobox__menu-icon {
25818
- opacity: var(--v-high-emphasis-opacity);
25819
- transform: rotate(180deg);
25820
- }.v-timeline .v-timeline-divider__dot {
25821
- background: rgb(var(--v-theme-surface-light));
25822
- }
25823
- .v-timeline .v-timeline-divider__inner-dot {
25824
- background: rgb(var(--v-theme-on-surface));
25573
+ .v-timeline .v-timeline-divider__inner-dot {
25574
+ background: rgb(var(--v-theme-on-surface));
25825
25575
  }
25826
25576
 
25827
25577
  .v-timeline {
@@ -26119,143 +25869,371 @@ html.v-overlay-scroll-blocked {
26119
25869
  padding-inline-start: initial;
26120
25870
  }
26121
25871
 
26122
- .v-timeline--horizontal.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__body {
26123
- grid-row: 1;
26124
- padding-block-end: 24px;
26125
- padding-block-start: initial;
25872
+ .v-timeline--horizontal.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__body {
25873
+ grid-row: 1;
25874
+ padding-block-end: 24px;
25875
+ padding-block-start: initial;
25876
+ }
25877
+ .v-timeline--horizontal.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__opposite {
25878
+ grid-row: 3;
25879
+ padding-block-end: initial;
25880
+ padding-block-start: 24px;
25881
+ }
25882
+
25883
+ .v-timeline--vertical.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__body {
25884
+ grid-column: 1;
25885
+ justify-self: flex-end;
25886
+ padding-inline-end: 24px;
25887
+ }
25888
+ .v-timeline--vertical.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__opposite {
25889
+ grid-column: 3;
25890
+ padding-inline-start: 24px;
25891
+ justify-self: flex-start;
25892
+ }
25893
+
25894
+ .v-timeline-divider--fill-dot .v-timeline-divider__inner-dot {
25895
+ height: inherit;
25896
+ width: inherit;
25897
+ }
25898
+
25899
+ .v-timeline--align-center {
25900
+ --v-timeline-line-size-base: 50%;
25901
+ --v-timeline-line-size-offset: 0px;
25902
+ }
25903
+ .v-timeline--horizontal.v-timeline--align-center {
25904
+ justify-items: center;
25905
+ }
25906
+ .v-timeline--horizontal.v-timeline--align-center .v-timeline-item__body {
25907
+ padding-inline: 12px;
25908
+ }
25909
+ .v-timeline--horizontal.v-timeline--align-center .v-timeline-item__opposite {
25910
+ padding-inline: 12px;
25911
+ }
25912
+ .v-timeline--horizontal.v-timeline--align-center .v-timeline-divider {
25913
+ justify-content: center;
25914
+ }
25915
+
25916
+ .v-timeline--vertical.v-timeline--align-center {
25917
+ align-items: center;
25918
+ }
25919
+ .v-timeline--vertical.v-timeline--align-center .v-timeline-divider {
25920
+ justify-content: center;
25921
+ }
25922
+
25923
+ .v-timeline--align-start {
25924
+ --v-timeline-line-size-base: 100%;
25925
+ --v-timeline-line-size-offset: 12px;
25926
+ }
25927
+ .v-timeline--align-start .v-timeline-item:first-child .v-timeline-divider__before {
25928
+ --v-timeline-line-size-offset: 24px;
25929
+ }
25930
+ .v-timeline--align-start .v-timeline-item:first-child .v-timeline-divider__after {
25931
+ --v-timeline-line-size-offset: -12px;
25932
+ }
25933
+ .v-timeline--align-start .v-timeline-item:last-child .v-timeline-divider__after {
25934
+ --v-timeline-line-size-offset: 0px;
25935
+ }
25936
+ .v-timeline--horizontal.v-timeline--align-start {
25937
+ justify-items: flex-start;
25938
+ }
25939
+ .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider {
25940
+ justify-content: flex-start;
25941
+ }
25942
+ .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider .v-timeline-divider__before {
25943
+ width: calc(var(--v-timeline-line-size-offset) + var(--v-timeline-dot-size) / 2 - var(--v-timeline-line-inset));
25944
+ }
25945
+ .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after {
25946
+ width: calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset));
25947
+ }
25948
+
25949
+ .v-timeline--vertical.v-timeline--align-start {
25950
+ align-items: flex-start;
25951
+ }
25952
+ .v-timeline--vertical.v-timeline--align-start .v-timeline-divider {
25953
+ justify-content: flex-start;
25954
+ }
25955
+ .v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__before {
25956
+ height: calc(var(--v-timeline-line-size-offset) + var(--v-timeline-dot-size) / 2 - var(--v-timeline-line-inset));
25957
+ }
25958
+ .v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after {
25959
+ height: calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset));
25960
+ }
25961
+
25962
+ .v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__before {
25963
+ display: none;
25964
+ }
25965
+ .v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__after {
25966
+ --v-timeline-line-size-offset: 12px;
25967
+ }
25968
+ .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
25969
+ padding-block-start: 0;
25970
+ }
25971
+
25972
+ .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
25973
+ padding-inline-start: 0;
25974
+ }
25975
+
25976
+ .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__after {
25977
+ display: none;
25978
+ }
25979
+ .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__before {
25980
+ --v-timeline-line-size-offset: 12px;
25981
+ }
25982
+ .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
25983
+ padding-block-end: 0;
25984
+ }
25985
+
25986
+ .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
25987
+ padding-inline-end: 0;
25988
+ }.v-toolbar {
25989
+ align-items: flex-start;
25990
+ display: flex;
25991
+ flex: none;
25992
+ flex-direction: column;
25993
+ justify-content: space-between;
25994
+ max-width: 100%;
25995
+ position: relative;
25996
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
25997
+ transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
25998
+ width: 100%;
25999
+ }
26000
+ .v-toolbar {
26001
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
26002
+ border-style: solid;
26003
+ border-width: 0;
26004
+ }
26005
+ .v-toolbar--border {
26006
+ border-width: thin;
26007
+ box-shadow: none;
26008
+ }
26009
+ .v-toolbar {
26010
+ box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
26011
+ }
26012
+ .v-toolbar {
26013
+ border-radius: 0;
26014
+ }
26015
+ .v-toolbar {
26016
+ background: rgb(var(--v-theme-surface-light));
26017
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
26018
+ }
26019
+ .v-toolbar--absolute {
26020
+ position: absolute;
26021
+ }
26022
+ .v-toolbar--collapse {
26023
+ max-width: 112px;
26024
+ overflow: hidden;
26025
+ border-end-end-radius: 24px;
26026
+ }
26027
+ .v-toolbar--collapse .v-toolbar-title {
26028
+ display: none;
26029
+ }
26030
+ .v-toolbar--flat {
26031
+ box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
26032
+ }
26033
+ .v-toolbar--floating {
26034
+ display: inline-flex;
26035
+ }
26036
+ .v-toolbar--rounded {
26037
+ border-radius: 4px;
26038
+ }
26039
+
26040
+ .v-toolbar__content,
26041
+ .v-toolbar__extension {
26042
+ align-items: center;
26043
+ display: flex;
26044
+ flex: 0 0 auto;
26045
+ position: relative;
26046
+ transition: inherit;
26047
+ width: 100%;
26048
+ }
26049
+
26050
+ .v-toolbar__content {
26051
+ overflow: hidden;
26052
+ }
26053
+ .v-toolbar__content > .v-btn:first-child {
26054
+ margin-inline-start: 4px;
26055
+ }
26056
+ .v-toolbar__content > .v-btn:last-child {
26057
+ margin-inline-end: 4px;
26058
+ }
26059
+ .v-toolbar__content > .v-toolbar-title {
26060
+ margin-inline-start: 20px;
26061
+ }
26062
+ .v-toolbar--density-prominent .v-toolbar__content {
26063
+ align-items: flex-start;
26064
+ }
26065
+
26066
+ .v-toolbar__image {
26067
+ display: flex;
26068
+ opacity: var(--v-toolbar-image-opacity, 1);
26069
+ transition-property: opacity;
26126
26070
  }
26127
- .v-timeline--horizontal.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__opposite {
26128
- grid-row: 3;
26129
- padding-block-end: initial;
26130
- padding-block-start: 24px;
26071
+ .v-toolbar__image {
26072
+ position: absolute;
26073
+ top: 0;
26074
+ left: 0;
26075
+ width: 100%;
26076
+ height: 100%;
26131
26077
  }
26132
26078
 
26133
- .v-timeline--vertical.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__body {
26134
- grid-column: 1;
26135
- justify-self: flex-end;
26136
- padding-inline-end: 24px;
26137
- }
26138
- .v-timeline--vertical.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__opposite {
26139
- grid-column: 3;
26140
- padding-inline-start: 24px;
26141
- justify-self: flex-start;
26079
+ .v-toolbar__prepend,
26080
+ .v-toolbar__append {
26081
+ align-items: center;
26082
+ align-self: stretch;
26083
+ display: flex;
26142
26084
  }
26143
26085
 
26144
- .v-timeline-divider--fill-dot .v-timeline-divider__inner-dot {
26145
- height: inherit;
26146
- width: inherit;
26086
+ .v-toolbar__prepend {
26087
+ margin-inline: 4px auto;
26147
26088
  }
26148
26089
 
26149
- .v-timeline--align-center {
26150
- --v-timeline-line-size-base: 50%;
26151
- --v-timeline-line-size-offset: 0px;
26090
+ .v-toolbar__append {
26091
+ margin-inline: auto 4px;
26152
26092
  }
26153
- .v-timeline--horizontal.v-timeline--align-center {
26154
- justify-items: center;
26093
+
26094
+ .v-toolbar-title {
26095
+ flex: 1 1;
26096
+ font-size: 1.25rem;
26097
+ min-width: 0;
26155
26098
  }
26156
- .v-timeline--horizontal.v-timeline--align-center .v-timeline-item__body {
26157
- padding-inline: 12px;
26099
+ .v-toolbar-title {
26100
+ font-size: 1.25rem;
26101
+ font-weight: 400;
26102
+ letter-spacing: 0;
26103
+ line-height: 1.75rem;
26104
+ text-transform: none;
26158
26105
  }
26159
- .v-timeline--horizontal.v-timeline--align-center .v-timeline-item__opposite {
26160
- padding-inline: 12px;
26106
+ .v-toolbar--density-prominent .v-toolbar-title {
26107
+ align-self: flex-end;
26108
+ padding-bottom: 6px;
26161
26109
  }
26162
- .v-timeline--horizontal.v-timeline--align-center .v-timeline-divider {
26163
- justify-content: center;
26110
+ .v-toolbar--density-prominent .v-toolbar-title {
26111
+ font-size: 1.5rem;
26112
+ font-weight: 400;
26113
+ letter-spacing: 0;
26114
+ line-height: 2.25rem;
26115
+ text-transform: none;
26164
26116
  }
26165
26117
 
26166
- .v-timeline--vertical.v-timeline--align-center {
26167
- align-items: center;
26168
- }
26169
- .v-timeline--vertical.v-timeline--align-center .v-timeline-divider {
26170
- justify-content: center;
26118
+ .v-toolbar-title__placeholder {
26119
+ overflow: hidden;
26120
+ text-overflow: ellipsis;
26121
+ white-space: nowrap;
26171
26122
  }
26172
26123
 
26173
- .v-timeline--align-start {
26174
- --v-timeline-line-size-base: 100%;
26175
- --v-timeline-line-size-offset: 12px;
26124
+ .v-toolbar-items {
26125
+ display: flex;
26126
+ height: inherit;
26127
+ align-self: stretch;
26176
26128
  }
26177
- .v-timeline--align-start .v-timeline-item:first-child .v-timeline-divider__before {
26178
- --v-timeline-line-size-offset: 24px;
26129
+ .v-toolbar-items > .v-btn {
26130
+ border-radius: 0;
26131
+ }.v-tooltip > .v-overlay__content {
26132
+ background: rgb(var(--v-theme-surface-variant));
26133
+ color: rgb(var(--v-theme-on-surface-variant));
26134
+ border-radius: 4px;
26135
+ font-size: 0.875rem;
26136
+ line-height: 1.6;
26137
+ display: inline-block;
26138
+ padding: 5px 16px;
26139
+ text-transform: initial;
26140
+ width: auto;
26141
+ opacity: 1;
26142
+ pointer-events: none;
26143
+ transition-property: opacity, transform;
26144
+ overflow-wrap: break-word;
26179
26145
  }
26180
- .v-timeline--align-start .v-timeline-item:first-child .v-timeline-divider__after {
26181
- --v-timeline-line-size-offset: -12px;
26146
+ .v-tooltip > .v-overlay__content[class*=enter-active] {
26147
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
26148
+ transition-duration: 150ms;
26182
26149
  }
26183
- .v-timeline--align-start .v-timeline-item:last-child .v-timeline-divider__after {
26184
- --v-timeline-line-size-offset: 0px;
26150
+ .v-tooltip > .v-overlay__content[class*=leave-active] {
26151
+ transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
26152
+ transition-duration: 75ms;
26153
+ }.v-virtual-scroll {
26154
+ display: block;
26155
+ flex: 1 1 auto;
26156
+ max-width: 100%;
26157
+ overflow: auto;
26158
+ position: relative;
26185
26159
  }
26186
- .v-timeline--horizontal.v-timeline--align-start {
26187
- justify-items: flex-start;
26160
+ .v-virtual-scroll__container {
26161
+ display: block;
26162
+ }.v-window {
26163
+ overflow: hidden;
26188
26164
  }
26189
- .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider {
26190
- justify-content: flex-start;
26165
+ .v-window__container {
26166
+ display: flex;
26167
+ flex-direction: column;
26168
+ height: inherit;
26169
+ position: relative;
26170
+ transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
26191
26171
  }
26192
- .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider .v-timeline-divider__before {
26193
- width: calc(var(--v-timeline-line-size-offset) + var(--v-timeline-dot-size) / 2 - var(--v-timeline-line-inset));
26172
+ .v-window__controls {
26173
+ position: absolute;
26174
+ left: 0;
26175
+ top: 0;
26176
+ width: 100%;
26177
+ height: 100%;
26178
+ display: flex;
26179
+ align-items: center;
26180
+ justify-content: space-between;
26181
+ padding: 0 16px;
26182
+ pointer-events: none;
26194
26183
  }
26195
- .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after {
26196
- width: calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset));
26184
+ .v-window__controls > * {
26185
+ pointer-events: auto;
26197
26186
  }
26198
-
26199
- .v-timeline--vertical.v-timeline--align-start {
26200
- align-items: flex-start;
26187
+ .v-window--show-arrows-on-hover {
26188
+ overflow: hidden;
26201
26189
  }
26202
- .v-timeline--vertical.v-timeline--align-start .v-timeline-divider {
26203
- justify-content: flex-start;
26190
+ .v-window--show-arrows-on-hover .v-window__left {
26191
+ transform: translateX(-200%);
26204
26192
  }
26205
- .v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__before {
26206
- height: calc(var(--v-timeline-line-size-offset) + var(--v-timeline-dot-size) / 2 - var(--v-timeline-line-inset));
26193
+ .v-window--show-arrows-on-hover .v-window__right {
26194
+ transform: translateX(200%);
26207
26195
  }
26208
- .v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after {
26209
- height: calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset));
26196
+ .v-window--show-arrows-on-hover:hover .v-window__left,
26197
+ .v-window--show-arrows-on-hover:hover .v-window__right {
26198
+ transform: translateX(0);
26210
26199
  }
26211
26200
 
26212
- .v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__before {
26213
- display: none;
26201
+ .v-window-x-transition-enter-active, .v-window-x-transition-leave-active, .v-window-x-reverse-transition-enter-active, .v-window-x-reverse-transition-leave-active, .v-window-y-transition-enter-active, .v-window-y-transition-leave-active, .v-window-y-reverse-transition-enter-active, .v-window-y-reverse-transition-leave-active {
26202
+ transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
26214
26203
  }
26215
- .v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__after {
26216
- --v-timeline-line-size-offset: 12px;
26204
+ .v-window-x-transition-leave-from, .v-window-x-transition-leave-to, .v-window-x-reverse-transition-leave-from, .v-window-x-reverse-transition-leave-to, .v-window-y-transition-leave-from, .v-window-y-transition-leave-to, .v-window-y-reverse-transition-leave-from, .v-window-y-reverse-transition-leave-to {
26205
+ position: absolute !important;
26206
+ top: 0;
26207
+ width: 100%;
26217
26208
  }
26218
- .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
26219
- padding-block-start: 0;
26209
+ .v-window-x-transition-enter-from {
26210
+ transform: translateX(100%);
26220
26211
  }
26221
-
26222
- .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
26223
- padding-inline-start: 0;
26212
+ .v-window-x-transition-leave-to {
26213
+ transform: translateX(-100%);
26224
26214
  }
26225
-
26226
- .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__after {
26227
- display: none;
26215
+ .v-window-x-reverse-transition-enter-from {
26216
+ transform: translateX(-100%);
26228
26217
  }
26229
- .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__before {
26230
- --v-timeline-line-size-offset: 12px;
26218
+ .v-window-x-reverse-transition-leave-to {
26219
+ transform: translateX(100%);
26231
26220
  }
26232
- .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
26233
- padding-block-end: 0;
26221
+ .v-window-y-transition-enter-from {
26222
+ transform: translateY(100%);
26234
26223
  }
26235
-
26236
- .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
26237
- padding-inline-end: 0;
26238
- }.v-color-picker-canvas {
26239
- display: flex;
26240
- position: relative;
26241
- overflow: hidden;
26242
- contain: content;
26243
- touch-action: none;
26224
+ .v-window-y-transition-leave-to {
26225
+ transform: translateY(-100%);
26244
26226
  }
26245
- .v-color-picker-canvas__dot {
26246
- position: absolute;
26247
- top: 0;
26248
- left: 0;
26249
- width: 15px;
26250
- height: 15px;
26251
- background: transparent;
26252
- border-radius: 50%;
26253
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26227
+ .v-window-y-reverse-transition-enter-from {
26228
+ transform: translateY(-100%);
26254
26229
  }
26255
- .v-color-picker-canvas__dot--disabled {
26256
- box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26230
+ .v-window-y-reverse-transition-leave-to {
26231
+ transform: translateY(100%);
26232
+ }.v-parallax {
26233
+ position: relative;
26234
+ overflow: hidden;
26257
26235
  }
26258
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
26236
+ .v-parallax--active > .v-img__img {
26259
26237
  will-change: transform;
26260
26238
  }.v-color-picker-edit {
26261
26239
  display: flex;
@@ -26390,6 +26368,28 @@ html.v-overlay-scroll-blocked {
26390
26368
  justify-content: center;
26391
26369
  width: 100%;
26392
26370
  height: 100%;
26371
+ }.v-color-picker-canvas {
26372
+ display: flex;
26373
+ position: relative;
26374
+ overflow: hidden;
26375
+ contain: content;
26376
+ touch-action: none;
26377
+ }
26378
+ .v-color-picker-canvas__dot {
26379
+ position: absolute;
26380
+ top: 0;
26381
+ left: 0;
26382
+ width: 15px;
26383
+ height: 15px;
26384
+ background: transparent;
26385
+ border-radius: 50%;
26386
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26387
+ }
26388
+ .v-color-picker-canvas__dot--disabled {
26389
+ box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26390
+ }
26391
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
26392
+ will-change: transform;
26393
26393
  }.v-picker.v-sheet {
26394
26394
  display: grid;
26395
26395
  grid-auto-rows: min-content;