@fastkit/vui 1.4.1 → 1.4.2

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.
Files changed (2) hide show
  1. package/dist/vui.css +1512 -1512
  2. package/package.json +16 -16
package/dist/vui.css CHANGED
@@ -18,6 +18,25 @@
18
18
  flex-direction:column;
19
19
  align-items:flex-start;
20
20
  }
21
+ .v-button-group{
22
+ display:inline-flex;
23
+ align-items:stretch;
24
+ }
25
+ .v-button-group__item{
26
+ position:relative;
27
+ margin:0;
28
+ }
29
+ .v-button-group__item--has-left{
30
+ border-top-left-radius:0;
31
+ border-bottom-left-radius:0;
32
+ }
33
+ .v-button-group__item--has-right{
34
+ border-top-right-radius:0;
35
+ border-bottom-right-radius:0;
36
+ }
37
+ .v-button-group__item:focus{
38
+ z-index:1;
39
+ }
21
40
  .v-text-field__input{
22
41
  cursor:text;
23
42
  }
@@ -49,1032 +68,812 @@
49
68
  font-style:italic;
50
69
  color:var(--control-disabled-color);
51
70
  }
52
- .v-button-group{
71
+ .v-button{
72
+ --padding:1em;
73
+ --height:2.5714285714em;
74
+ --icon-margin:0.6em;
75
+ position:relative;
53
76
  display:inline-flex;
54
- align-items:stretch;
77
+ flex:0 0 auto;
78
+ align-items:center;
79
+ justify-content:center;
80
+ min-width:calc(var(--root-em)*4);
81
+ height:var(--height);
82
+ padding:0 var(--padding);
83
+ margin:calc(var(--root-em)*.375) calc(var(--root-em)*.5);
84
+ overflow:hidden;
85
+ font:inherit;
86
+ font-weight:500;
87
+ line-height:1;
88
+ vertical-align:bottom;
89
+ text-transform:uppercase;
90
+ letter-spacing:.0892857143em;
91
+ text-decoration:none;
92
+ appearance:none;
93
+ cursor:pointer;
94
+ user-select:none;
95
+ outline:0;
96
+ border-style:solid;
97
+ border-width:1px;
98
+ border-radius:var(--control-field-radius);
99
+ transition:.3s cubic-bezier(.25, .8, .5, 1),color 1ms;
55
100
  }
56
- .v-button-group__item{
57
- position:relative;
58
- margin:0;
101
+ .v-button--align-left{
102
+ justify-content:flex-start;
59
103
  }
60
- .v-button-group__item--has-left{
61
- border-top-left-radius:0;
62
- border-bottom-left-radius:0;
104
+ .v-button--align-right{
105
+ justify-content:flex-end;
63
106
  }
64
- .v-button-group__item--has-right{
65
- border-top-right-radius:0;
66
- border-bottom-right-radius:0;
107
+ .v-button--plain{
108
+ color:inherit !important;
67
109
  }
68
- .v-button-group__item:focus{
110
+ .v-button--plain.v-button--guard-in-progress,.v-button--plain[aria-disabled=true],.v-button--plain[disabled]{
111
+ opacity:.5;
112
+ }
113
+ .v-button--sm{
114
+ font-size:calc(var(--root-em)*.75);
115
+ }
116
+ .v-button--md{
117
+ font-size:calc(var(--root-em)*.875);
118
+ }
119
+ .v-button--lg{
120
+ font-size:calc(var(--root-em)*1.375);
121
+ }
122
+ .v-button--rounded{
123
+ --padding:0;
124
+ min-width:0;
125
+ aspect-ratio:1/1;
126
+ margin:calc(var(--root-em)*.125);
127
+ border-radius:50%;
128
+ --height:auto;
129
+ }
130
+ .v-button--icon{
131
+ min-width:1.9285714286em;
132
+ margin:calc(var(--root-em)*.125);
133
+ --height:1.9285714286em;
134
+ --padding:0em;
135
+ }
136
+ .v-button::-moz-focus-inner{
137
+ border:0;
138
+ }
139
+ .v-button.v-button--guard-in-progress,.v-button[aria-disabled=true],.v-button[disabled]{
140
+ cursor:default;
141
+ }
142
+ .v-button--spacer-left{
143
+ margin-left:auto;
144
+ }
145
+ .v-button--spacer-right{
146
+ margin-right:auto;
147
+ }
148
+ .v-button__content{
149
+ display:flex;
150
+ align-items:center;
151
+ justify-content:center;
152
+ justify-self:stretch;
153
+ pointer-events:none;
154
+ }
155
+ .v-button--loading .v-button__content{
156
+ opacity:0;
157
+ }
158
+ .v-button__icon--start{
159
+ margin-right:var(--icon-margin);
160
+ }
161
+ .v-button__icon--end{
162
+ margin-left:var(--icon-margin);
163
+ }
164
+ .v-button__loading{
165
+ position:absolute;
166
+ top:50%;
167
+ left:50%;
69
168
  z-index:1;
169
+ transform:translate(-50%, -50%);
170
+ }
171
+ .v-paper{
172
+ --paper-radius:var(--control-field-radius);
173
+ display:block;
174
+ color:var(--paper-text-color);
175
+ background-color:var(--paper-background--color);
176
+ border-radius:var(--paper-radius);
177
+ }
178
+ .v-paper--plain{
179
+ --paper-background--color:var(--palette-background);
180
+ --paper-text-color:inherit;
181
+ --paper-link-color:var(--link-color);
182
+ }
183
+ .v-paper--has-color{
184
+ --paper-background--color:var(--main-color);
185
+ --paper-text-color:var(--text-color);
186
+ --paper-link-color:var(--nav-color);
187
+ }
188
+ .v-paper__inner{
189
+ position:relative;
190
+ border-radius:inherit;
191
+ }
192
+ .v-paper--square{
193
+ --paper-radius:0px;
194
+ }
195
+ .v-paper__header{
196
+ border-top-left-radius:inherit;
197
+ border-top-right-radius:inherit;
198
+ }
199
+ .v-paper__footer{
200
+ border-bottom-right-radius:inherit;
201
+ border-bottom-left-radius:inherit;
70
202
  }
71
203
  .v-grid-container{
72
204
  display:flex;
73
205
  flex-wrap:wrap;
74
206
  }
75
- :root{
76
- --root-em:16px;
77
- --root-spacing:8px;
78
- --transition-fast-out-slow-in:cubic-bezier(0.4, 0, 0.2, 1);
79
- --transition-linear-out-slow-in:cubic-bezier(0, 0, 0.2, 1);
80
- --transition-fast-out-linear-in:cubic-bezier(0.4, 0, 1, 1);
81
- --transition-ease-in-out:cubic-bezier(0.4, 0, 0.6, 1);
82
- --transition-fast-in-fast-out:cubic-bezier(0.25, 0.8, 0.25, 1);
83
- --transition-swing:cubic-bezier(0.25, 0.8, 0.5, 1);
84
- --transition-primary:var(--transition-swing);
85
- --transition-tab:0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
86
- --transition-fade:0.2s;
87
- --typo-fallback-font:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
88
- --type-emoji-font:"Apple Color Emoji", "Segoe UI Emoji";
89
- --typo-font:var(--typo-base-font), var(--typo-fallback-font), var(--type-emoji-font);
90
- --typo-base-size:1rem;
91
- --typo-base-weight:400;
92
- --typo-base-height:1.5;
93
- --typo-base-spacing:0em;
94
- --typo-medium-weight:500;
95
- --typo-h1-family:inherit;
96
- --typo-h1-size:2.5rem;
97
- --typo-h1-weight:500;
98
- --typo-h1-height:1.2222222222222223;
99
- --typo-h1-spacing:0em;
100
- --typo-h1-margin:16px 0;
101
- --typo-h1-color:var(--palette-heading);
102
- --typo-h2-family:inherit;
103
- --typo-h2-size:1.875rem;
104
- --typo-h2-weight:500;
105
- --typo-h2-height:1.5;
106
- --typo-h2-spacing:0em;
107
- --typo-h2-margin:40px 0 10px;
108
- --typo-h2-color:var(--palette-heading);
109
- --typo-h3-family:inherit;
110
- --typo-h3-size:1.25rem;
111
- --typo-h3-weight:500;
112
- --typo-h3-height:1.5;
113
- --typo-h3-spacing:0em;
114
- --typo-h3-margin:20px 0 10px;
115
- --typo-h3-color:var(--palette-heading);
116
- --typo-h4-family:inherit;
117
- --typo-h4-size:1.25rem;
118
- --typo-h4-weight:400;
119
- --typo-h4-height:1.5;
120
- --typo-h4-spacing:0em;
121
- --typo-h4-margin:10px 0 16px;
122
- --typo-h4-color:var(--palette-heading);
123
- --typo-h5-family:inherit;
124
- --typo-h5-size:0.875rem;
125
- --typo-h5-weight:400;
126
- --typo-h5-height:1.57;
127
- --typo-h5-spacing:0em;
128
- --typo-h5-margin:10px 0 16px;
129
- --typo-h5-color:var(--palette-heading);
130
- --typo-h6-family:inherit;
131
- --typo-h6-size:0.67rem;
132
- --typo-h6-weight:400;
133
- --typo-h6-height:1.5;
134
- --typo-h6-spacing:0em;
135
- --typo-h6-margin:10px 0 16px;
136
- --typo-h6-color:var(--palette-heading);
137
- --typo-subtitle1-family:inherit;
138
- --typo-subtitle1-size:1rem;
139
- --typo-subtitle1-weight:400;
140
- --typo-subtitle1-height:1.75;
141
- --typo-subtitle1-spacing:0.00938em;
142
- --typo-subtitle2-family:inherit;
143
- --typo-subtitle2-size:0.875rem;
144
- --typo-subtitle2-weight:500;
145
- --typo-subtitle2-height:1.57;
146
- --typo-subtitle2-spacing:0.00714em;
147
- --typo-sm-size:calc(var(--root-em)*0.875);
148
- --chip-padding:0.875em;
149
- --chip-font-weight:var(--typo-base-weight);
150
- --chip-height-xs:16px;
151
- --chip-font-size-xs:10px;
152
- --chip-height-sm:24px;
153
- --chip-font-size-sm:12px;
154
- --chip-height-md:32px;
155
- --chip-font-size-md:14px;
156
- --chip-height-lg:54px;
157
- --chip-font-size-lg:16px;
158
- --chip-height-xl:66px;
159
- --chip-font-size-xl:18px;
160
- --control-field-rem-sm:0.875rem;
161
- --control-field-rem-md:1rem;
162
- --control-field-rem-lg:1.125rem;
163
- --control-disabled-color:rgba(0,0,0,.38);
164
- --control-horizontal-margin:0.5em;
165
- --control-field-radius:2px;
166
- --control-field-fill-color:rgba(0,0,0,.06);
167
- --control-field-fill-hover-color:rgba(0,0,0,.09);
168
- --control-field-outline-color:rgba(114,106,106,.23);
169
- --control-field-outline-hover-color:rgba(0,0,0,.87);
170
- --control-field-bottom-color:rgba(0,0,0,.42);
171
- --control-field-bottom-hover-color:rgba(0,0,0,.87);
172
- --control-field-height:2.25em;
173
- --control-field-line-height:1.4375em;
174
- --control-field-letter-spacing:0.00938em;
175
- --control-label-color:rgba(0,0,0,.6);
176
- --control-label-font-weight:500;
177
- --control-label-font-size:0.75em;
178
- --control-label-height:1.4375em;
179
- --control-message-color:rgba(0,0,0,.6);
180
- --control-message-font-size:0.75em;
181
- --control-message-horizontal-margin:calc(var(--root-spacing)*0.5);
182
- --control-checkable-outer-size:2em;
183
- --control-checkable-icon-size:1em;
184
- --control-checkable-faux-scale:1.2;
185
- --control-checkable-faux-margin:0.2em;
186
- --control-checkable-base-color:rgba(0,0,0,.6);
187
- --control-switch-width:3.625em;
188
- --control-switch-track-width:2.125em;
189
- --control-switch-track-height:0.875em;
190
- --wysiwyg-min-height-sm:3em;
191
- --wysiwyg-min-height-md:6em;
192
- --wysiwyg-min-height-lg:9em;
193
- --wysiwyg-max-height-sm:9em;
194
- --wysiwyg-max-height-md:13em;
195
- --wysiwyg-max-height-lg:16em;
196
- --shadow-key-umbra-opacity:rgba(0,0,0,.2);
197
- --shadow-key-penumbra-opacity:rgba(0,0,0,.14);
198
- --shadow-key-ambient-opacity:rgba(0,0,0,.12);
199
- --shadow-key-umbra-0:0px 0px 0px 0px var(--shadow-key-umbra-opacity);
200
- --shadow-key-umbra-1:0px 2px 1px -1px var(--shadow-key-umbra-opacity);
201
- --shadow-key-umbra-2:0px 3px 1px -2px var(--shadow-key-umbra-opacity);
202
- --shadow-key-umbra-3:0px 3px 3px -2px var(--shadow-key-umbra-opacity);
203
- --shadow-key-umbra-4:0px 2px 4px -1px var(--shadow-key-umbra-opacity);
204
- --shadow-key-umbra-5:0px 3px 5px -1px var(--shadow-key-umbra-opacity);
205
- --shadow-key-umbra-6:0px 3px 5px -1px var(--shadow-key-umbra-opacity);
206
- --shadow-key-umbra-7:0px 4px 5px -2px var(--shadow-key-umbra-opacity);
207
- --shadow-key-umbra-8:0px 5px 5px -3px var(--shadow-key-umbra-opacity);
208
- --shadow-key-umbra-9:0px 5px 6px -3px var(--shadow-key-umbra-opacity);
209
- --shadow-key-umbra-10:0px 6px 6px -3px var(--shadow-key-umbra-opacity);
210
- --shadow-key-umbra-11:0px 6px 7px -4px var(--shadow-key-umbra-opacity);
211
- --shadow-key-umbra-12:0px 7px 8px -4px var(--shadow-key-umbra-opacity);
212
- --shadow-key-umbra-13:0px 7px 8px -4px var(--shadow-key-umbra-opacity);
213
- --shadow-key-umbra-14:0px 7px 9px -4px var(--shadow-key-umbra-opacity);
214
- --shadow-key-umbra-15:0px 8px 9px -5px var(--shadow-key-umbra-opacity);
215
- --shadow-key-umbra-16:0px 8px 10px -5px var(--shadow-key-umbra-opacity);
216
- --shadow-key-umbra-17:0px 8px 11px -5px var(--shadow-key-umbra-opacity);
217
- --shadow-key-umbra-18:0px 9px 11px -5px var(--shadow-key-umbra-opacity);
218
- --shadow-key-umbra-19:0px 9px 12px -6px var(--shadow-key-umbra-opacity);
219
- --shadow-key-umbra-20:0px 10px 13px -6px var(--shadow-key-umbra-opacity);
220
- --shadow-key-umbra-21:0px 10px 13px -6px var(--shadow-key-umbra-opacity);
221
- --shadow-key-umbra-22:0px 10px 14px -6px var(--shadow-key-umbra-opacity);
222
- --shadow-key-umbra-23:0px 11px 14px -7px var(--shadow-key-umbra-opacity);
223
- --shadow-key-umbra-24:0px 11px 15px -7px var(--shadow-key-umbra-opacity);
224
- --shadow-key-penumbra-0:0px 0px 0px 0px var(--shadow-key-penumbra-opacity);
225
- --shadow-key-penumbra-1:0px 1px 1px 0px var(--shadow-key-penumbra-opacity);
226
- --shadow-key-penumbra-2:0px 2px 2px 0px var(--shadow-key-penumbra-opacity);
227
- --shadow-key-penumbra-3:0px 3px 4px 0px var(--shadow-key-penumbra-opacity);
228
- --shadow-key-penumbra-4:0px 4px 5px 0px var(--shadow-key-penumbra-opacity);
229
- --shadow-key-penumbra-5:0px 5px 8px 0px var(--shadow-key-penumbra-opacity);
230
- --shadow-key-penumbra-6:0px 6px 10px 0px var(--shadow-key-penumbra-opacity);
231
- --shadow-key-penumbra-7:0px 7px 10px 1px var(--shadow-key-penumbra-opacity);
232
- --shadow-key-penumbra-8:0px 8px 10px 1px var(--shadow-key-penumbra-opacity);
233
- --shadow-key-penumbra-9:0px 9px 12px 1px var(--shadow-key-penumbra-opacity);
234
- --shadow-key-penumbra-10:0px 10px 14px 1px var(--shadow-key-penumbra-opacity);
235
- --shadow-key-penumbra-11:0px 11px 15px 1px var(--shadow-key-penumbra-opacity);
236
- --shadow-key-penumbra-12:0px 12px 17px 2px var(--shadow-key-penumbra-opacity);
237
- --shadow-key-penumbra-13:0px 13px 19px 2px var(--shadow-key-penumbra-opacity);
238
- --shadow-key-penumbra-14:0px 14px 21px 2px var(--shadow-key-penumbra-opacity);
239
- --shadow-key-penumbra-15:0px 15px 22px 2px var(--shadow-key-penumbra-opacity);
240
- --shadow-key-penumbra-16:0px 16px 24px 2px var(--shadow-key-penumbra-opacity);
241
- --shadow-key-penumbra-17:0px 17px 26px 2px var(--shadow-key-penumbra-opacity);
242
- --shadow-key-penumbra-18:0px 18px 28px 2px var(--shadow-key-penumbra-opacity);
243
- --shadow-key-penumbra-19:0px 19px 29px 2px var(--shadow-key-penumbra-opacity);
244
- --shadow-key-penumbra-20:0px 20px 31px 3px var(--shadow-key-penumbra-opacity);
245
- --shadow-key-penumbra-21:0px 21px 33px 3px var(--shadow-key-penumbra-opacity);
246
- --shadow-key-penumbra-22:0px 22px 35px 3px var(--shadow-key-penumbra-opacity);
247
- --shadow-key-penumbra-23:0px 23px 36px 3px var(--shadow-key-penumbra-opacity);
248
- --shadow-key-penumbra-24:0px 24px 38px 3px var(--shadow-key-penumbra-opacity);
249
- --shadow-key-ambient-0:0px 0px 0px 0px var(--shadow-key-ambient-opacity);
250
- --shadow-key-ambient-1:0px 1px 3px 0px var(--shadow-key-ambient-opacity);
251
- --shadow-key-ambient-2:0px 1px 5px 0px var(--shadow-key-ambient-opacity);
252
- --shadow-key-ambient-3:0px 1px 8px 0px var(--shadow-key-ambient-opacity);
253
- --shadow-key-ambient-4:0px 1px 10px 0px var(--shadow-key-ambient-opacity);
254
- --shadow-key-ambient-5:0px 1px 14px 0px var(--shadow-key-ambient-opacity);
255
- --shadow-key-ambient-6:0px 1px 18px 0px var(--shadow-key-ambient-opacity);
256
- --shadow-key-ambient-7:0px 2px 16px 1px var(--shadow-key-ambient-opacity);
257
- --shadow-key-ambient-8:0px 3px 14px 2px var(--shadow-key-ambient-opacity);
258
- --shadow-key-ambient-9:0px 3px 16px 2px var(--shadow-key-ambient-opacity);
259
- --shadow-key-ambient-10:0px 4px 18px 3px var(--shadow-key-ambient-opacity);
260
- --shadow-key-ambient-11:0px 4px 20px 3px var(--shadow-key-ambient-opacity);
261
- --shadow-key-ambient-12:0px 5px 22px 4px var(--shadow-key-ambient-opacity);
262
- --shadow-key-ambient-13:0px 5px 24px 4px var(--shadow-key-ambient-opacity);
263
- --shadow-key-ambient-14:0px 5px 26px 4px var(--shadow-key-ambient-opacity);
264
- --shadow-key-ambient-15:0px 6px 28px 5px var(--shadow-key-ambient-opacity);
265
- --shadow-key-ambient-16:0px 6px 30px 5px var(--shadow-key-ambient-opacity);
266
- --shadow-key-ambient-17:0px 6px 32px 5px var(--shadow-key-ambient-opacity);
267
- --shadow-key-ambient-18:0px 7px 34px 6px var(--shadow-key-ambient-opacity);
268
- --shadow-key-ambient-19:0px 7px 36px 6px var(--shadow-key-ambient-opacity);
269
- --shadow-key-ambient-20:0px 8px 38px 7px var(--shadow-key-ambient-opacity);
270
- --shadow-key-ambient-21:0px 8px 40px 7px var(--shadow-key-ambient-opacity);
271
- --shadow-key-ambient-22:0px 8px 42px 7px var(--shadow-key-ambient-opacity);
272
- --shadow-key-ambient-23:0px 9px 44px 8px var(--shadow-key-ambient-opacity);
273
- --shadow-key-ambient-24:0px 9px 46px 8px var(--shadow-key-ambient-opacity);
274
- --toolbar-height:var(--v-app-layout-vertial-fixed-height);
275
- --toolbar-dense-height:calc(var(--toolbar-height)*0.8);
276
- --card-content-padding:1rem;
277
- --card-actions-padding:0.5rem;
278
- --pagination-item-radius:2px;
279
- --pagination-item-font-size:var(--root-em);
280
- --pagination-item-size:calc(var(--root-em)*2);
281
- --pagination-item-margin:calc(var(--root-em)*0.5);
282
- --pagination-item-font-size-dense:calc(var(--pagination-item-font-size)*0.625);
283
- --pagination-item-size-dense:calc(var(--pagination-item-size)*0.8125);
284
- --pagination-item-margin-dense:calc(var(--pagination-item-margin)*0.75);
285
- --table-vertical-margin:calc(var(--root-em)*1.25);
286
- --table-font-size:calc(var(--root-em)*0.75);
287
- --table-caption-font-size:calc(var(--root-em)*1);
288
- --table-caption-font-weight:regular;
289
- --table-caption-vertical-margin:calc(var(--root-em)*0.625);
290
- --table-cell-height:calc(var(--root-em)*3.125);
291
- --table-cell-vertial-padding:calc(var(--root-em)*0.3125);
292
- --table-cell-horizontal-padding:calc(var(--root-em)*1);
293
- --table-header-color:var(--palette-primary);
294
- --table-header-font-weight:500;
295
- --tabs-height:calc(var(--root-em)*3);
296
- --tabs-bar-height:calc(var(--root-em)*0.375);
297
- --tabs-font-size:calc(var(--root-em)*0.875);
298
- --breadcrumbs-font-size:var(--typo-sm-size);
299
- --list-tile-padding:calc(var(--root-em)*0.625);
300
- --snackbar-shadow:0 3px 5px -1px rgba(0,0,0,.2), 0 6px 10px 0 rgba(0,0,0,.14), 0 1px 18px 0 rgba(0,0,0,.12);
301
- --dialog-shadow:0 11px 15px -7px rgba(0,0,0,.2), 0 24px 38px 3px rgba(0,0,0,.14), 0 9px 46px 8px rgba(0,0,0,.12);
302
- --menu-shadow:0 5px 5px -3px rgba(0,0,0,.2), 0 8px 10px 1px rgba(0,0,0,.14), 0 3px 14px 2px rgba(0,0,0,.12);
303
- --tooltip-background:rgba(35,47,52,.9);
304
- --tooltip-color:#fff;
305
- --tooltip-radius:4px;
306
- --tooltip-padding:5px 16px;
307
- --tooltip-font-size:calc(var(--root-em)*0.875);
308
- --tooltip-shadow:0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
207
+ .v-grid-item{
208
+ display:block;
309
209
  }
310
- :root,[lang=en]{
311
- --typo-base-font:Roboto, "Noto Sans";
210
+ .v-busy-image{
211
+ position:relative;
212
+ display:inline-block;
213
+ max-width:100%;
214
+ vertical-align:bottom;
312
215
  }
313
- [lang=ja]{
314
- --typo-base-font:Roboto, "Noto Sans JP";
216
+ .v-busy-image--clickable{
217
+ cursor:pointer;
315
218
  }
316
- [lang=ko]{
317
- --typo-base-font:Roboto, "Noto Sans KR";
219
+ .v-busy-image--cover{
220
+ background-repeat:no-repeat;
221
+ background-position:50%;
222
+ background-size:cover;
318
223
  }
319
- [lang=zh-cmn-Hant]{
320
- --typo-base-font:Roboto, "Noto Sans TC";
224
+ .v-busy-image--loading:before{
225
+ position:absolute;
226
+ inset:0;
227
+ display:block;
228
+ content:"";
229
+ background:rgba(0,0,0,.1);
230
+ animation:v-tiny-image-blink 1.5s ease-in-out infinite normal;
321
231
  }
322
- [lang=zh-cmn-Hans]{
323
- --typo-base-font:Roboto, "Noto Sans SC";
232
+ .v-busy-image__node{
233
+ position:relative;
234
+ display:inline-block;
235
+ max-width:100%;
236
+ vertical-align:bottom;
324
237
  }
325
- html{
326
- text-size-adjust:100%;
327
- font-size:var(--root-em);
328
- text-rendering:optimizeLegibility;
329
- -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
238
+ .v-busy-image__slot{
239
+ position:absolute;
240
+ top:0;
241
+ left:0;
242
+ width:100%;
243
+ height:100%;
244
+ pointer-events:none;
330
245
  }
331
- body{
332
- font-family:var(--typo-base-family);
333
- font-size:var(--typo-base-size);
334
- font-weight:var(--typo-base-weight);
335
- line-height:var(--typo-base-height);
336
- letter-spacing:var(--typo-base-height);
337
- margin:var(--typo-base-margin);
338
- color:var(--typo-base-color);
339
- font-family:var(--typo-font);
246
+ @keyframes v-tiny-image-blink{
247
+ 0%{
248
+ opacity:1;
249
+ }
250
+ 50%{
251
+ opacity:0;
252
+ }
253
+ to{
254
+ opacity:1;
255
+ }
340
256
  }
341
- h1{
342
- font-family:var(--typo-h1-family);
343
- font-size:var(--typo-h1-size);
344
- font-weight:var(--typo-h1-weight);
345
- line-height:var(--typo-h1-height);
346
- letter-spacing:var(--typo-h1-height);
347
- margin:var(--typo-h1-margin);
348
- color:var(--typo-h1-color);
257
+ .v-card-content{
258
+ padding:var(--card-content-padding);
349
259
  }
350
- h2{
351
- font-family:var(--typo-h2-family);
352
- font-size:var(--typo-h2-size);
353
- font-weight:var(--typo-h2-weight);
354
- line-height:var(--typo-h2-height);
355
- letter-spacing:var(--typo-h2-height);
356
- margin:var(--typo-h2-margin);
357
- color:var(--typo-h2-color);
260
+ .v-text-counter{
261
+ white-space:nowrap;
358
262
  }
359
- h3{
360
- font-family:var(--typo-h3-family);
361
- font-size:var(--typo-h3-size);
362
- font-weight:var(--typo-h3-weight);
363
- line-height:var(--typo-h3-height);
364
- letter-spacing:var(--typo-h3-height);
365
- margin:var(--typo-h3-margin);
366
- color:var(--typo-h3-color);
263
+ .v-hero{
264
+ --hero-background-color:var(--main-color);
265
+ --hero-text-color:var(--text-color);
266
+ display:flex;
267
+ align-items:center;
268
+ padding:20px 30px;
269
+ margin:0;
270
+ color:var(--hero-text-color);
271
+ background-color:var(--hero-background-color);
367
272
  }
368
- h4{
369
- font-family:var(--typo-h4-family);
370
- font-size:var(--typo-h4-size);
371
- font-weight:var(--typo-h4-weight);
372
- line-height:var(--typo-h4-height);
373
- letter-spacing:var(--typo-h4-height);
374
- margin:var(--typo-h4-margin);
375
- color:var(--typo-h4-color);
273
+ .v-hero__title{
274
+ flex:1 1 100%;
275
+ margin:0;
276
+ font-size:1.75rem;
277
+ font-weight:300;
278
+ line-height:1;
279
+ color:inherit;
376
280
  }
377
- h5{
378
- font-family:var(--typo-h5-family);
379
- font-size:var(--typo-h5-size);
380
- font-weight:var(--typo-h5-weight);
381
- line-height:var(--typo-h5-height);
382
- letter-spacing:var(--typo-h5-height);
383
- margin:var(--typo-h5-margin);
384
- color:var(--typo-h5-color);
385
- }
386
- h6{
387
- font-family:var(--typo-h6-family);
388
- font-size:var(--typo-h6-size);
389
- font-weight:var(--typo-h6-weight);
390
- line-height:var(--typo-h6-height);
391
- letter-spacing:var(--typo-h6-height);
392
- margin:var(--typo-h6-margin);
393
- color:var(--typo-h6-color);
394
- }
395
- .elevation-24{
396
- box-shadow:var(--shadow-key-umbra-24), var(--shadow-key-penumbra-24), var(--shadow-key-ambient-24) !important;
397
- }
398
- .elevation-23{
399
- box-shadow:var(--shadow-key-umbra-23), var(--shadow-key-penumbra-23), var(--shadow-key-ambient-23) !important;
400
- }
401
- .elevation-22{
402
- box-shadow:var(--shadow-key-umbra-22), var(--shadow-key-penumbra-22), var(--shadow-key-ambient-22) !important;
403
- }
404
- .elevation-21{
405
- box-shadow:var(--shadow-key-umbra-21), var(--shadow-key-penumbra-21), var(--shadow-key-ambient-21) !important;
406
- }
407
- .elevation-20{
408
- box-shadow:var(--shadow-key-umbra-20), var(--shadow-key-penumbra-20), var(--shadow-key-ambient-20) !important;
409
- }
410
- .elevation-19{
411
- box-shadow:var(--shadow-key-umbra-19), var(--shadow-key-penumbra-19), var(--shadow-key-ambient-19) !important;
412
- }
413
- .elevation-18{
414
- box-shadow:var(--shadow-key-umbra-18), var(--shadow-key-penumbra-18), var(--shadow-key-ambient-18) !important;
415
- }
416
- .elevation-17{
417
- box-shadow:var(--shadow-key-umbra-17), var(--shadow-key-penumbra-17), var(--shadow-key-ambient-17) !important;
418
- }
419
- .elevation-16{
420
- box-shadow:var(--shadow-key-umbra-16), var(--shadow-key-penumbra-16), var(--shadow-key-ambient-16) !important;
421
- }
422
- .elevation-15{
423
- box-shadow:var(--shadow-key-umbra-15), var(--shadow-key-penumbra-15), var(--shadow-key-ambient-15) !important;
424
- }
425
- .elevation-14{
426
- box-shadow:var(--shadow-key-umbra-14), var(--shadow-key-penumbra-14), var(--shadow-key-ambient-14) !important;
427
- }
428
- .elevation-13{
429
- box-shadow:var(--shadow-key-umbra-13), var(--shadow-key-penumbra-13), var(--shadow-key-ambient-13) !important;
281
+ .v-hero__adornment{
282
+ flex:0 0 auto;
283
+ padding-left:10px;
284
+ margin-left:auto;
430
285
  }
431
- .elevation-12{
432
- box-shadow:var(--shadow-key-umbra-12), var(--shadow-key-penumbra-12), var(--shadow-key-ambient-12) !important;
286
+ .v-radio{
287
+ --my-color:var(--color);
433
288
  }
434
- .elevation-11{
435
- box-shadow:var(--shadow-key-umbra-11), var(--shadow-key-penumbra-11), var(--shadow-key-ambient-11) !important;
289
+ .v-radio__faux{
290
+ position:relative;
291
+ display:block;
292
+ width:100%;
293
+ height:100%;
294
+ transition:border-color .2s,background-color .2s;
436
295
  }
437
- .elevation-10{
438
- box-shadow:var(--shadow-key-umbra-10), var(--shadow-key-penumbra-10), var(--shadow-key-ambient-10) !important;
296
+ .v-radio__faux:after,.v-radio__faux:before{
297
+ position:absolute;
298
+ display:block;
299
+ content:"";
300
+ border-radius:100%;
439
301
  }
440
- .elevation-9{
441
- box-shadow:var(--shadow-key-umbra-9), var(--shadow-key-penumbra-9), var(--shadow-key-ambient-9) !important;
302
+ .v-radio__faux:before{
303
+ inset:0;
304
+ border:2px solid;
442
305
  }
443
- .elevation-8{
444
- box-shadow:var(--shadow-key-umbra-8), var(--shadow-key-penumbra-8), var(--shadow-key-ambient-8) !important;
306
+ .v-radio__faux:after{
307
+ top:50%;
308
+ left:50%;
309
+ width:50%;
310
+ height:50%;
311
+ background:currentColor;
312
+ transform:translate(-50%, -50%) scale(0);
313
+ transition:transform .2s;
445
314
  }
446
- .elevation-7{
447
- box-shadow:var(--shadow-key-umbra-7), var(--shadow-key-penumbra-7), var(--shadow-key-ambient-7) !important;
315
+ .v-radio--selected .v-radio__faux:after{
316
+ transform:translate(-50%, -50%) scale(1);
448
317
  }
449
- .elevation-6{
450
- box-shadow:var(--shadow-key-umbra-6), var(--shadow-key-penumbra-6), var(--shadow-key-ambient-6) !important;
318
+ .v-drawer-layout{
319
+ display:block;
320
+ width:100%;
321
+ height:100%;
451
322
  }
452
- .elevation-5{
453
- box-shadow:var(--shadow-key-umbra-5), var(--shadow-key-penumbra-5), var(--shadow-key-ambient-5) !important;
323
+ .v-drawer-layout__inner{
324
+ display:flex;
325
+ flex-direction:column;
326
+ align-items:stretch;
327
+ width:100%;
328
+ height:100%;
454
329
  }
455
- .elevation-4{
456
- box-shadow:var(--shadow-key-umbra-4), var(--shadow-key-penumbra-4), var(--shadow-key-ambient-4) !important;
330
+ .v-drawer-layout__header{
331
+ display:flex;
332
+ flex:0 0 var(--val-topToolbar-height);
333
+ align-items:center;
334
+ justify-content:center;
335
+ height:var(--val-topToolbar-height);
457
336
  }
458
- .elevation-3{
459
- box-shadow:var(--shadow-key-umbra-3), var(--shadow-key-penumbra-3), var(--shadow-key-ambient-3) !important;
337
+ .v-drawer-layout__body{
338
+ flex:1 1 100%;
339
+ overflow:auto;
340
+ -webkit-overflow-scrolling:touch;
460
341
  }
461
- .elevation-2{
462
- box-shadow:var(--shadow-key-umbra-2), var(--shadow-key-penumbra-2), var(--shadow-key-ambient-2) !important;
342
+ .v-drawer-layout__footer{
343
+ flex:0 0 auto;
344
+ margin-top:auto;
463
345
  }
464
- .elevation-1{
465
- box-shadow:var(--shadow-key-umbra-1), var(--shadow-key-penumbra-1), var(--shadow-key-ambient-1) !important;
346
+ .v-option-group{
347
+ display:block;
466
348
  }
467
- .elevation-0{
468
- box-shadow:var(--shadow-key-umbra-0), var(--shadow-key-penumbra-0), var(--shadow-key-ambient-0) !important;
349
+ .v-option-group__label{
350
+ padding:1em;
351
+ font-size:.875em;
352
+ color:var(--palette-caption);
353
+ opacity:.6;
469
354
  }
470
- code,kbd,pre,samp{
471
- font-family:monospace;
355
+ .v-option-group--disabled .v-option-group__label{
356
+ color:var(--palette-muted);
357
+ opacity:.4;
472
358
  }
473
- code{
474
- padding:.2em .4em;
475
- font-size:85%;
476
- font-weight:400;
477
- color:rgba(0,0,0,.87);
478
- background-color:rgba(0,0,0,.05);
479
- border-radius:3px;
359
+ .v-checkbox{
360
+ --my-border-color:var(--color);
361
+ --my-faux-bg-color:transparent;
480
362
  }
481
- table{
482
- display:table;
483
- max-width:100%;
484
- margin:var(--table-vertical-margin) 0;
485
- font-size:var(--table-font-size);
486
- border-collapse:collapse;
487
- border:0;
488
- border-radius:0;
363
+ .v-checkbox--indeterminate,.v-checkbox--selected{
364
+ --my-border-color:transparent;
365
+ --my-faux-bg-color:var(--color);
489
366
  }
490
- caption{
491
- display:table-caption;
367
+ .v-checkbox__faux{
368
+ display:block;
492
369
  width:100%;
493
- padding:0;
494
- margin:0 0 var(--table-caption-vertical-margin);
495
- font-size:var(--table-caption-font-size);
496
- font-weight:var(--table-caption-font-weight);
497
- text-align:center;
498
- }
499
- td,th{
500
- height:var(--table-cell-height);
501
- padding:var(--table-cell-vertial-padding) var(--table-cell-horizontal-padding);
502
- vertical-align:middle;
503
- text-align:left;
504
- border:0;
505
- }
506
- th{
507
- font-weight:var(--table-header-font-weight);
508
- color:var(--table-header-color);
509
- white-space:nowrap;
510
- }
511
- thead th{
512
- text-align:center;
513
- }
514
- .v-control--sm{
515
- --control-field-rem:var(--control-field-rem-sm);
516
- }
517
- .v-control--md,.v-control--sm{
518
- font-size:var(--control-field-rem);
370
+ height:100%;
371
+ background:var(--my-faux-bg-color);
372
+ border:2px solid var(--my-border-color);
373
+ border-radius:var(--control-field-radius);
374
+ 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);
375
+ transition:border-color .2s,background-color .2s;
519
376
  }
520
- .v-control--md{
521
- --control-field-rem:var(--control-field-rem-md);
377
+ .v-checkbox--indeterminate .v-checkbox__faux{
378
+ 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);
522
379
  }
523
- .v-control--lg{
524
- --control-field-rem:var(--control-field-rem-lg);
525
- font-size:var(--control-field-rem);
380
+ .v-disabled-reason{
381
+ -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
526
382
  }
527
- .wysiwyg h2:first-child,.wysiwyg h3:first-child,.wysiwyg h4:first-child,.wysiwyg h5:first-child,.wysiwyg h6:first-child,.wysiwyg ol:first-child,.wysiwyg p:first-child,.wysiwyg table:first-child,.wysiwyg ul:first-child,.wysiwyg>h1:first-child{
528
- margin-top:0;
383
+ .v-disabled-reason::-moz-focus-inner{
384
+ border:0;
529
385
  }
530
- .wysiwyg h2:last-child,.wysiwyg h3:last-child,.wysiwyg h4:last-child,.wysiwyg h5:last-child,.wysiwyg h6:last-child,.wysiwyg ol:last-child,.wysiwyg p:last-child,.wysiwyg table:last-child,.wysiwyg ul:last-child,.wysiwyg>h1:last-child{
531
- margin-bottom:0;
386
+ .v-disabled-reason{
387
+ position:absolute;
388
+ inset:0;
389
+ z-index:10;
390
+ display:block;
391
+ pointer-events:none;
392
+ cursor:default;
393
+ border-radius:inherit;
532
394
  }
533
- .wysiwyg p{
534
- margin:0;
395
+ .v-disabled-reason[tabindex]:not([tabindex^="-"]){
396
+ pointer-events:auto;
535
397
  }
536
- .v-button{
537
- --padding:1em;
538
- --height:2.5714285714em;
539
- --icon-margin:0.6em;
398
+ .v-skelton-loader-bone{
540
399
  position:relative;
541
- display:inline-flex;
542
- flex:0 0 auto;
543
- align-items:center;
544
- justify-content:center;
545
- min-width:calc(var(--root-em)*4);
546
- height:var(--height);
547
- padding:0 var(--padding);
548
- margin:calc(var(--root-em)*.375) calc(var(--root-em)*.5);
549
400
  overflow:hidden;
550
- font:inherit;
551
- font-weight:500;
552
- line-height:1;
553
- vertical-align:bottom;
554
- text-transform:uppercase;
555
- letter-spacing:.0892857143em;
556
- text-decoration:none;
557
- appearance:none;
558
- cursor:pointer;
559
- user-select:none;
560
- outline:0;
561
- border-style:solid;
562
- border-width:1px;
563
- border-radius:var(--control-field-radius);
564
- transition:.3s cubic-bezier(.25, .8, .5, 1),color 1ms;
401
+ cursor:progress;
402
+ background:rgba(0,0,0,.12);
403
+ border-radius:inherit;
565
404
  }
566
- .v-button--align-left{
567
- justify-content:flex-start;
568
- }
569
- .v-button--align-right{
570
- justify-content:flex-end;
571
- }
572
- .v-button--plain{
573
- color:inherit !important;
574
- }
575
- .v-button--plain.v-button--guard-in-progress,.v-button--plain[aria-disabled=true],.v-button--plain[disabled]{
576
- opacity:.5;
577
- }
578
- .v-button--sm{
579
- font-size:calc(var(--root-em)*.75);
580
- }
581
- .v-button--md{
582
- font-size:calc(var(--root-em)*.875);
583
- }
584
- .v-button--lg{
585
- font-size:calc(var(--root-em)*1.375);
586
- }
587
- .v-button--rounded{
588
- --padding:0;
589
- min-width:0;
590
- aspect-ratio:1/1;
591
- margin:calc(var(--root-em)*.125);
592
- border-radius:50%;
593
- --height:auto;
594
- }
595
- .v-button--icon{
596
- min-width:1.9285714286em;
597
- margin:calc(var(--root-em)*.125);
598
- --height:1.9285714286em;
599
- --padding:0em;
600
- }
601
- .v-button::-moz-focus-inner{
602
- border:0;
603
- }
604
- .v-button.v-button--guard-in-progress,.v-button[aria-disabled=true],.v-button[disabled]{
605
- cursor:default;
606
- }
607
- .v-button--spacer-left{
608
- margin-left:auto;
609
- }
610
- .v-button--spacer-right{
611
- margin-right:auto;
612
- }
613
- .v-button__content{
614
- display:flex;
615
- align-items:center;
616
- justify-content:center;
617
- justify-self:stretch;
618
- pointer-events:none;
619
- }
620
- .v-button--loading .v-button__content{
621
- opacity:0;
622
- }
623
- .v-button__icon--start{
624
- margin-right:var(--icon-margin);
625
- }
626
- .v-button__icon--end{
627
- margin-left:var(--icon-margin);
628
- }
629
- .v-button__loading{
630
- position:absolute;
631
- top:50%;
632
- left:50%;
633
- z-index:1;
634
- transform:translate(-50%, -50%);
635
- }
636
- .v-paper{
637
- --paper-radius:var(--control-field-radius);
638
- display:block;
639
- color:var(--paper-text-color);
640
- background-color:var(--paper-background--color);
641
- border-radius:var(--paper-radius);
642
- }
643
- .v-paper--plain{
644
- --paper-background--color:var(--palette-background);
645
- --paper-text-color:inherit;
646
- --paper-link-color:var(--link-color);
647
- }
648
- .v-paper--has-color{
649
- --paper-background--color:var(--main-color);
650
- --paper-text-color:var(--text-color);
651
- --paper-link-color:var(--nav-color);
652
- }
653
- .v-paper__inner{
654
- position:relative;
655
- border-radius:inherit;
656
- }
657
- .v-paper--square{
658
- --paper-radius:0px;
659
- }
660
- .v-paper__header{
661
- border-top-left-radius:inherit;
662
- border-top-right-radius:inherit;
663
- }
664
- .v-paper__footer{
665
- border-bottom-right-radius:inherit;
666
- border-bottom-left-radius:inherit;
667
- }
668
- .v-navigation__caption{
669
- display:block;
670
- padding:calc(var(--root-em)*.625) calc(var(--root-em)*1.5625);
671
- margin:1em 0 0;
672
- font-size:.75rem;
673
- color:var(--caption-color);
674
- text-transform:uppercase;
675
- }
676
- .v-grid-item{
677
- display:block;
678
- }
679
- .v-busy-image{
680
- position:relative;
681
- display:inline-block;
682
- max-width:100%;
683
- vertical-align:bottom;
684
- }
685
- .v-busy-image--clickable{
686
- cursor:pointer;
687
- }
688
- .v-busy-image--cover{
689
- background-repeat:no-repeat;
690
- background-position:50%;
691
- background-size:cover;
692
- }
693
- .v-busy-image--loading:before{
694
- position:absolute;
695
- inset:0;
696
- display:block;
697
- content:"";
698
- background:rgba(0,0,0,.1);
699
- animation:v-tiny-image-blink 1.5s ease-in-out infinite normal;
700
- }
701
- .v-busy-image__node{
702
- position:relative;
703
- display:inline-block;
704
- max-width:100%;
705
- vertical-align:bottom;
706
- }
707
- .v-busy-image__slot{
405
+ .v-skelton-loader-bone:after{
708
406
  position:absolute;
709
407
  top:0;
408
+ right:0;
710
409
  left:0;
711
- width:100%;
712
- height:100%;
713
- pointer-events:none;
714
- }
715
- @keyframes v-tiny-image-blink{
716
- 0%{
717
- opacity:1;
718
- }
719
- 50%{
720
- opacity:0;
721
- }
722
- to{
723
- opacity:1;
724
- }
725
- }
726
- .v-drawer-layout{
727
- display:block;
728
- width:100%;
729
- height:100%;
730
- }
731
- .v-drawer-layout__inner{
732
- display:flex;
733
- flex-direction:column;
734
- align-items:stretch;
735
- width:100%;
410
+ z-index:1;
736
411
  height:100%;
412
+ content:"";
413
+ background:linear-gradient(90deg, hsla(0,0%,100%,0), hsla(0,0%,100%,.3), hsla(0,0%,100%,0));
414
+ transform:translateX(-100%);
415
+ animation:v-skelton-loader-bone-loading 1.5s infinite;
737
416
  }
738
- .v-drawer-layout__header{
739
- display:flex;
740
- flex:0 0 var(--val-topToolbar-height);
741
- align-items:center;
742
- justify-content:center;
743
- height:var(--val-topToolbar-height);
744
- }
745
- .v-drawer-layout__body{
746
- flex:1 1 100%;
747
- overflow:auto;
748
- -webkit-overflow-scrolling:touch;
749
- }
750
- .v-drawer-layout__footer{
751
- flex:0 0 auto;
752
- margin-top:auto;
753
- }
754
- .v-disabled-reason{
755
- -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
756
- }
757
- .v-disabled-reason::-moz-focus-inner{
758
- border:0;
759
- }
760
- .v-disabled-reason{
761
- position:absolute;
762
- inset:0;
763
- z-index:10;
764
- display:block;
765
- pointer-events:none;
766
- cursor:default;
767
- border-radius:inherit;
768
- }
769
- .v-disabled-reason[tabindex]:not([tabindex^="-"]){
770
- pointer-events:auto;
771
- }
772
- .v-navigation-item--opened{
773
- --tile-background:var(--tile-active-background);
774
- --tile-text-color:var(--tile-text-active-color);
775
- }
776
- .v-navigation-item__expand{
777
- transition:height .2s;
778
- }
779
- .v-navigation-item__expand .v-navigation-item{
780
- --tile-background:var(--tile-active-background);
781
- }
782
- .v-navigation-item--depth-1{
783
- --depth-padding:calc(var(--list-tile-padding)*2);
784
- }
785
- .v-navigation-item--depth-2{
786
- --depth-padding:calc(var(--list-tile-padding)*3);
787
- }
788
- .v-navigation-item--depth-3{
789
- --depth-padding:calc(var(--list-tile-padding)*4);
790
- }
791
- .v-form-control{
792
- display:flex;
793
- flex-direction:column;
794
- max-width:100%;
795
- margin:var(--control-horizontal-margin) 0;
796
- --my-label-color:var(--control-label-color);
797
- --my-message-color:var(--control-message-color);
798
- }
799
- .v-form-control--invalid:not(.v-form-control--readonly){
800
- --my-label-color:var(--main-color);
801
- --my-message-color:var(--main-color);
802
- }
803
- .v-form-control--disabled{
804
- --my-label-color:var(--control-disabled-color);
805
- --my-message-color:var(--control-disabled-color);
806
- }
807
- .v-form-control__label{
808
- display:flex;
809
- align-items:center;
810
- align-self:flex-start;
811
- font-size:var(--control-label-font-size);
812
- font-weight:var(--control-label-font-weight);
813
- line-height:var(--control-label-height);
814
- color:var(--my-label-color);
815
- letter-spacing:.00938em;
417
+ :root{
418
+ --root-em:16px;
419
+ --root-spacing:8px;
420
+ --transition-fast-out-slow-in:cubic-bezier(0.4, 0, 0.2, 1);
421
+ --transition-linear-out-slow-in:cubic-bezier(0, 0, 0.2, 1);
422
+ --transition-fast-out-linear-in:cubic-bezier(0.4, 0, 1, 1);
423
+ --transition-ease-in-out:cubic-bezier(0.4, 0, 0.6, 1);
424
+ --transition-fast-in-fast-out:cubic-bezier(0.25, 0.8, 0.25, 1);
425
+ --transition-swing:cubic-bezier(0.25, 0.8, 0.5, 1);
426
+ --transition-primary:var(--transition-swing);
427
+ --transition-tab:0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
428
+ --transition-fade:0.2s;
429
+ --typo-fallback-font:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
430
+ --type-emoji-font:"Apple Color Emoji", "Segoe UI Emoji";
431
+ --typo-font:var(--typo-base-font), var(--typo-fallback-font), var(--type-emoji-font);
432
+ --typo-base-size:1rem;
433
+ --typo-base-weight:400;
434
+ --typo-base-height:1.5;
435
+ --typo-base-spacing:0em;
436
+ --typo-medium-weight:500;
437
+ --typo-h1-family:inherit;
438
+ --typo-h1-size:2.5rem;
439
+ --typo-h1-weight:500;
440
+ --typo-h1-height:1.2222222222222223;
441
+ --typo-h1-spacing:0em;
442
+ --typo-h1-margin:16px 0;
443
+ --typo-h1-color:var(--palette-heading);
444
+ --typo-h2-family:inherit;
445
+ --typo-h2-size:1.875rem;
446
+ --typo-h2-weight:500;
447
+ --typo-h2-height:1.5;
448
+ --typo-h2-spacing:0em;
449
+ --typo-h2-margin:40px 0 10px;
450
+ --typo-h2-color:var(--palette-heading);
451
+ --typo-h3-family:inherit;
452
+ --typo-h3-size:1.25rem;
453
+ --typo-h3-weight:500;
454
+ --typo-h3-height:1.5;
455
+ --typo-h3-spacing:0em;
456
+ --typo-h3-margin:20px 0 10px;
457
+ --typo-h3-color:var(--palette-heading);
458
+ --typo-h4-family:inherit;
459
+ --typo-h4-size:1.25rem;
460
+ --typo-h4-weight:400;
461
+ --typo-h4-height:1.5;
462
+ --typo-h4-spacing:0em;
463
+ --typo-h4-margin:10px 0 16px;
464
+ --typo-h4-color:var(--palette-heading);
465
+ --typo-h5-family:inherit;
466
+ --typo-h5-size:0.875rem;
467
+ --typo-h5-weight:400;
468
+ --typo-h5-height:1.57;
469
+ --typo-h5-spacing:0em;
470
+ --typo-h5-margin:10px 0 16px;
471
+ --typo-h5-color:var(--palette-heading);
472
+ --typo-h6-family:inherit;
473
+ --typo-h6-size:0.67rem;
474
+ --typo-h6-weight:400;
475
+ --typo-h6-height:1.5;
476
+ --typo-h6-spacing:0em;
477
+ --typo-h6-margin:10px 0 16px;
478
+ --typo-h6-color:var(--palette-heading);
479
+ --typo-subtitle1-family:inherit;
480
+ --typo-subtitle1-size:1rem;
481
+ --typo-subtitle1-weight:400;
482
+ --typo-subtitle1-height:1.75;
483
+ --typo-subtitle1-spacing:0.00938em;
484
+ --typo-subtitle2-family:inherit;
485
+ --typo-subtitle2-size:0.875rem;
486
+ --typo-subtitle2-weight:500;
487
+ --typo-subtitle2-height:1.57;
488
+ --typo-subtitle2-spacing:0.00714em;
489
+ --typo-sm-size:calc(var(--root-em)*0.875);
490
+ --chip-padding:0.875em;
491
+ --chip-font-weight:var(--typo-base-weight);
492
+ --chip-height-xs:16px;
493
+ --chip-font-size-xs:10px;
494
+ --chip-height-sm:24px;
495
+ --chip-font-size-sm:12px;
496
+ --chip-height-md:32px;
497
+ --chip-font-size-md:14px;
498
+ --chip-height-lg:54px;
499
+ --chip-font-size-lg:16px;
500
+ --chip-height-xl:66px;
501
+ --chip-font-size-xl:18px;
502
+ --control-field-rem-sm:0.875rem;
503
+ --control-field-rem-md:1rem;
504
+ --control-field-rem-lg:1.125rem;
505
+ --control-disabled-color:rgba(0,0,0,.38);
506
+ --control-horizontal-margin:0.5em;
507
+ --control-field-radius:2px;
508
+ --control-field-fill-color:rgba(0,0,0,.06);
509
+ --control-field-fill-hover-color:rgba(0,0,0,.09);
510
+ --control-field-outline-color:rgba(114,106,106,.23);
511
+ --control-field-outline-hover-color:rgba(0,0,0,.87);
512
+ --control-field-bottom-color:rgba(0,0,0,.42);
513
+ --control-field-bottom-hover-color:rgba(0,0,0,.87);
514
+ --control-field-height:2.25em;
515
+ --control-field-line-height:1.4375em;
516
+ --control-field-letter-spacing:0.00938em;
517
+ --control-label-color:rgba(0,0,0,.6);
518
+ --control-label-font-weight:500;
519
+ --control-label-font-size:0.75em;
520
+ --control-label-height:1.4375em;
521
+ --control-message-color:rgba(0,0,0,.6);
522
+ --control-message-font-size:0.75em;
523
+ --control-message-horizontal-margin:calc(var(--root-spacing)*0.5);
524
+ --control-checkable-outer-size:2em;
525
+ --control-checkable-icon-size:1em;
526
+ --control-checkable-faux-scale:1.2;
527
+ --control-checkable-faux-margin:0.2em;
528
+ --control-checkable-base-color:rgba(0,0,0,.6);
529
+ --control-switch-width:3.625em;
530
+ --control-switch-track-width:2.125em;
531
+ --control-switch-track-height:0.875em;
532
+ --wysiwyg-min-height-sm:3em;
533
+ --wysiwyg-min-height-md:6em;
534
+ --wysiwyg-min-height-lg:9em;
535
+ --wysiwyg-max-height-sm:9em;
536
+ --wysiwyg-max-height-md:13em;
537
+ --wysiwyg-max-height-lg:16em;
538
+ --shadow-key-umbra-opacity:rgba(0,0,0,.2);
539
+ --shadow-key-penumbra-opacity:rgba(0,0,0,.14);
540
+ --shadow-key-ambient-opacity:rgba(0,0,0,.12);
541
+ --shadow-key-umbra-0:0px 0px 0px 0px var(--shadow-key-umbra-opacity);
542
+ --shadow-key-umbra-1:0px 2px 1px -1px var(--shadow-key-umbra-opacity);
543
+ --shadow-key-umbra-2:0px 3px 1px -2px var(--shadow-key-umbra-opacity);
544
+ --shadow-key-umbra-3:0px 3px 3px -2px var(--shadow-key-umbra-opacity);
545
+ --shadow-key-umbra-4:0px 2px 4px -1px var(--shadow-key-umbra-opacity);
546
+ --shadow-key-umbra-5:0px 3px 5px -1px var(--shadow-key-umbra-opacity);
547
+ --shadow-key-umbra-6:0px 3px 5px -1px var(--shadow-key-umbra-opacity);
548
+ --shadow-key-umbra-7:0px 4px 5px -2px var(--shadow-key-umbra-opacity);
549
+ --shadow-key-umbra-8:0px 5px 5px -3px var(--shadow-key-umbra-opacity);
550
+ --shadow-key-umbra-9:0px 5px 6px -3px var(--shadow-key-umbra-opacity);
551
+ --shadow-key-umbra-10:0px 6px 6px -3px var(--shadow-key-umbra-opacity);
552
+ --shadow-key-umbra-11:0px 6px 7px -4px var(--shadow-key-umbra-opacity);
553
+ --shadow-key-umbra-12:0px 7px 8px -4px var(--shadow-key-umbra-opacity);
554
+ --shadow-key-umbra-13:0px 7px 8px -4px var(--shadow-key-umbra-opacity);
555
+ --shadow-key-umbra-14:0px 7px 9px -4px var(--shadow-key-umbra-opacity);
556
+ --shadow-key-umbra-15:0px 8px 9px -5px var(--shadow-key-umbra-opacity);
557
+ --shadow-key-umbra-16:0px 8px 10px -5px var(--shadow-key-umbra-opacity);
558
+ --shadow-key-umbra-17:0px 8px 11px -5px var(--shadow-key-umbra-opacity);
559
+ --shadow-key-umbra-18:0px 9px 11px -5px var(--shadow-key-umbra-opacity);
560
+ --shadow-key-umbra-19:0px 9px 12px -6px var(--shadow-key-umbra-opacity);
561
+ --shadow-key-umbra-20:0px 10px 13px -6px var(--shadow-key-umbra-opacity);
562
+ --shadow-key-umbra-21:0px 10px 13px -6px var(--shadow-key-umbra-opacity);
563
+ --shadow-key-umbra-22:0px 10px 14px -6px var(--shadow-key-umbra-opacity);
564
+ --shadow-key-umbra-23:0px 11px 14px -7px var(--shadow-key-umbra-opacity);
565
+ --shadow-key-umbra-24:0px 11px 15px -7px var(--shadow-key-umbra-opacity);
566
+ --shadow-key-penumbra-0:0px 0px 0px 0px var(--shadow-key-penumbra-opacity);
567
+ --shadow-key-penumbra-1:0px 1px 1px 0px var(--shadow-key-penumbra-opacity);
568
+ --shadow-key-penumbra-2:0px 2px 2px 0px var(--shadow-key-penumbra-opacity);
569
+ --shadow-key-penumbra-3:0px 3px 4px 0px var(--shadow-key-penumbra-opacity);
570
+ --shadow-key-penumbra-4:0px 4px 5px 0px var(--shadow-key-penumbra-opacity);
571
+ --shadow-key-penumbra-5:0px 5px 8px 0px var(--shadow-key-penumbra-opacity);
572
+ --shadow-key-penumbra-6:0px 6px 10px 0px var(--shadow-key-penumbra-opacity);
573
+ --shadow-key-penumbra-7:0px 7px 10px 1px var(--shadow-key-penumbra-opacity);
574
+ --shadow-key-penumbra-8:0px 8px 10px 1px var(--shadow-key-penumbra-opacity);
575
+ --shadow-key-penumbra-9:0px 9px 12px 1px var(--shadow-key-penumbra-opacity);
576
+ --shadow-key-penumbra-10:0px 10px 14px 1px var(--shadow-key-penumbra-opacity);
577
+ --shadow-key-penumbra-11:0px 11px 15px 1px var(--shadow-key-penumbra-opacity);
578
+ --shadow-key-penumbra-12:0px 12px 17px 2px var(--shadow-key-penumbra-opacity);
579
+ --shadow-key-penumbra-13:0px 13px 19px 2px var(--shadow-key-penumbra-opacity);
580
+ --shadow-key-penumbra-14:0px 14px 21px 2px var(--shadow-key-penumbra-opacity);
581
+ --shadow-key-penumbra-15:0px 15px 22px 2px var(--shadow-key-penumbra-opacity);
582
+ --shadow-key-penumbra-16:0px 16px 24px 2px var(--shadow-key-penumbra-opacity);
583
+ --shadow-key-penumbra-17:0px 17px 26px 2px var(--shadow-key-penumbra-opacity);
584
+ --shadow-key-penumbra-18:0px 18px 28px 2px var(--shadow-key-penumbra-opacity);
585
+ --shadow-key-penumbra-19:0px 19px 29px 2px var(--shadow-key-penumbra-opacity);
586
+ --shadow-key-penumbra-20:0px 20px 31px 3px var(--shadow-key-penumbra-opacity);
587
+ --shadow-key-penumbra-21:0px 21px 33px 3px var(--shadow-key-penumbra-opacity);
588
+ --shadow-key-penumbra-22:0px 22px 35px 3px var(--shadow-key-penumbra-opacity);
589
+ --shadow-key-penumbra-23:0px 23px 36px 3px var(--shadow-key-penumbra-opacity);
590
+ --shadow-key-penumbra-24:0px 24px 38px 3px var(--shadow-key-penumbra-opacity);
591
+ --shadow-key-ambient-0:0px 0px 0px 0px var(--shadow-key-ambient-opacity);
592
+ --shadow-key-ambient-1:0px 1px 3px 0px var(--shadow-key-ambient-opacity);
593
+ --shadow-key-ambient-2:0px 1px 5px 0px var(--shadow-key-ambient-opacity);
594
+ --shadow-key-ambient-3:0px 1px 8px 0px var(--shadow-key-ambient-opacity);
595
+ --shadow-key-ambient-4:0px 1px 10px 0px var(--shadow-key-ambient-opacity);
596
+ --shadow-key-ambient-5:0px 1px 14px 0px var(--shadow-key-ambient-opacity);
597
+ --shadow-key-ambient-6:0px 1px 18px 0px var(--shadow-key-ambient-opacity);
598
+ --shadow-key-ambient-7:0px 2px 16px 1px var(--shadow-key-ambient-opacity);
599
+ --shadow-key-ambient-8:0px 3px 14px 2px var(--shadow-key-ambient-opacity);
600
+ --shadow-key-ambient-9:0px 3px 16px 2px var(--shadow-key-ambient-opacity);
601
+ --shadow-key-ambient-10:0px 4px 18px 3px var(--shadow-key-ambient-opacity);
602
+ --shadow-key-ambient-11:0px 4px 20px 3px var(--shadow-key-ambient-opacity);
603
+ --shadow-key-ambient-12:0px 5px 22px 4px var(--shadow-key-ambient-opacity);
604
+ --shadow-key-ambient-13:0px 5px 24px 4px var(--shadow-key-ambient-opacity);
605
+ --shadow-key-ambient-14:0px 5px 26px 4px var(--shadow-key-ambient-opacity);
606
+ --shadow-key-ambient-15:0px 6px 28px 5px var(--shadow-key-ambient-opacity);
607
+ --shadow-key-ambient-16:0px 6px 30px 5px var(--shadow-key-ambient-opacity);
608
+ --shadow-key-ambient-17:0px 6px 32px 5px var(--shadow-key-ambient-opacity);
609
+ --shadow-key-ambient-18:0px 7px 34px 6px var(--shadow-key-ambient-opacity);
610
+ --shadow-key-ambient-19:0px 7px 36px 6px var(--shadow-key-ambient-opacity);
611
+ --shadow-key-ambient-20:0px 8px 38px 7px var(--shadow-key-ambient-opacity);
612
+ --shadow-key-ambient-21:0px 8px 40px 7px var(--shadow-key-ambient-opacity);
613
+ --shadow-key-ambient-22:0px 8px 42px 7px var(--shadow-key-ambient-opacity);
614
+ --shadow-key-ambient-23:0px 9px 44px 8px var(--shadow-key-ambient-opacity);
615
+ --shadow-key-ambient-24:0px 9px 46px 8px var(--shadow-key-ambient-opacity);
616
+ --toolbar-height:var(--v-app-layout-vertial-fixed-height);
617
+ --toolbar-dense-height:calc(var(--toolbar-height)*0.8);
618
+ --card-content-padding:1rem;
619
+ --card-actions-padding:0.5rem;
620
+ --pagination-item-radius:2px;
621
+ --pagination-item-font-size:var(--root-em);
622
+ --pagination-item-size:calc(var(--root-em)*2);
623
+ --pagination-item-margin:calc(var(--root-em)*0.5);
624
+ --pagination-item-font-size-dense:calc(var(--pagination-item-font-size)*0.625);
625
+ --pagination-item-size-dense:calc(var(--pagination-item-size)*0.8125);
626
+ --pagination-item-margin-dense:calc(var(--pagination-item-margin)*0.75);
627
+ --table-vertical-margin:calc(var(--root-em)*1.25);
628
+ --table-font-size:calc(var(--root-em)*0.75);
629
+ --table-caption-font-size:calc(var(--root-em)*1);
630
+ --table-caption-font-weight:regular;
631
+ --table-caption-vertical-margin:calc(var(--root-em)*0.625);
632
+ --table-cell-height:calc(var(--root-em)*3.125);
633
+ --table-cell-vertial-padding:calc(var(--root-em)*0.3125);
634
+ --table-cell-horizontal-padding:calc(var(--root-em)*1);
635
+ --table-header-color:var(--palette-primary);
636
+ --table-header-font-weight:500;
637
+ --tabs-height:calc(var(--root-em)*3);
638
+ --tabs-bar-height:calc(var(--root-em)*0.375);
639
+ --tabs-font-size:calc(var(--root-em)*0.875);
640
+ --breadcrumbs-font-size:var(--typo-sm-size);
641
+ --list-tile-padding:calc(var(--root-em)*0.625);
642
+ --snackbar-shadow:0 3px 5px -1px rgba(0,0,0,.2), 0 6px 10px 0 rgba(0,0,0,.14), 0 1px 18px 0 rgba(0,0,0,.12);
643
+ --dialog-shadow:0 11px 15px -7px rgba(0,0,0,.2), 0 24px 38px 3px rgba(0,0,0,.14), 0 9px 46px 8px rgba(0,0,0,.12);
644
+ --menu-shadow:0 5px 5px -3px rgba(0,0,0,.2), 0 8px 10px 1px rgba(0,0,0,.14), 0 3px 14px 2px rgba(0,0,0,.12);
645
+ --tooltip-background:rgba(35,47,52,.9);
646
+ --tooltip-color:#fff;
647
+ --tooltip-radius:4px;
648
+ --tooltip-padding:5px 16px;
649
+ --tooltip-font-size:calc(var(--root-em)*0.875);
650
+ --tooltip-shadow:0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
816
651
  }
817
- .v-form-control__label__hinttip{
818
- display:inline-flex;
819
- align-items:center;
820
- margin-top:-.2em;
821
- margin-left:.6em;
822
- font-size:80%;
823
- line-height:1;
824
- color:inherit;
825
- letter-spacing:normal;
826
- text-decoration:none;
827
- cursor:pointer;
652
+ :root,[lang=en]{
653
+ --typo-base-font:Roboto, "Noto Sans";
828
654
  }
829
- .v-form-control__label__hinttip__icon{
830
- position:relative;
831
- display:flex;
832
- align-items:center;
833
- justify-content:center;
834
- font-size:120%;
835
- text-decoration:none !important;
655
+ [lang=ja]{
656
+ --typo-base-font:Roboto, "Noto Sans JP";
836
657
  }
837
- .v-form-control__label__hinttip:focus .v-form-control__label__hinttip__icon:before,.v-form-control__label__hinttip:hover .v-form-control__label__hinttip__icon:before{
838
- opacity:.1;
658
+ [lang=ko]{
659
+ --typo-base-font:Roboto, "Noto Sans KR";
839
660
  }
840
- .v-form-control__label__hinttip__hint{
841
- font-size:calc(var(--root-em)*.75);
661
+ [lang=zh-cmn-Hant]{
662
+ --typo-base-font:Roboto, "Noto Sans TC";
842
663
  }
843
- .v-form-control__info{
844
- display:flex;
845
- padding-top:3px;
664
+ [lang=zh-cmn-Hans]{
665
+ --typo-base-font:Roboto, "Noto Sans SC";
846
666
  }
847
- .v-form-control__appends,.v-form-control__message{
848
- margin:0 var(--control-message-horizontal-margin);
849
- font-size:var(--control-message-font-size);
850
- line-height:1.66;
851
- color:var(--my-message-color);
667
+ html{
668
+ text-size-adjust:100%;
669
+ font-size:var(--root-em);
670
+ text-rendering:optimizeLegibility;
671
+ -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
852
672
  }
853
- .v-form-control__message{
854
- flex:1 0;
673
+ body{
674
+ font-family:var(--typo-base-family);
675
+ font-size:var(--typo-base-size);
676
+ font-weight:var(--typo-base-weight);
677
+ line-height:var(--typo-base-height);
678
+ letter-spacing:var(--typo-base-height);
679
+ margin:var(--typo-base-margin);
680
+ color:var(--typo-base-color);
681
+ font-family:var(--typo-font);
855
682
  }
856
- .v-form-control__appends{
857
- flex:0 1;
858
- margin-left:auto;
683
+ h1{
684
+ font-family:var(--typo-h1-family);
685
+ font-size:var(--typo-h1-size);
686
+ font-weight:var(--typo-h1-weight);
687
+ line-height:var(--typo-h1-height);
688
+ letter-spacing:var(--typo-h1-height);
689
+ margin:var(--typo-h1-margin);
690
+ color:var(--typo-h1-color);
859
691
  }
860
- .v-hero{
861
- --hero-background-color:var(--main-color);
862
- --hero-text-color:var(--text-color);
863
- display:flex;
864
- align-items:center;
865
- padding:20px 30px;
866
- margin:0;
867
- color:var(--hero-text-color);
868
- background-color:var(--hero-background-color);
692
+ h2{
693
+ font-family:var(--typo-h2-family);
694
+ font-size:var(--typo-h2-size);
695
+ font-weight:var(--typo-h2-weight);
696
+ line-height:var(--typo-h2-height);
697
+ letter-spacing:var(--typo-h2-height);
698
+ margin:var(--typo-h2-margin);
699
+ color:var(--typo-h2-color);
869
700
  }
870
- .v-hero__title{
871
- flex:1 1 100%;
872
- margin:0;
873
- font-size:1.75rem;
874
- font-weight:300;
875
- line-height:1;
876
- color:inherit;
701
+ h3{
702
+ font-family:var(--typo-h3-family);
703
+ font-size:var(--typo-h3-size);
704
+ font-weight:var(--typo-h3-weight);
705
+ line-height:var(--typo-h3-height);
706
+ letter-spacing:var(--typo-h3-height);
707
+ margin:var(--typo-h3-margin);
708
+ color:var(--typo-h3-color);
877
709
  }
878
- .v-hero__adornment{
879
- flex:0 0 auto;
880
- padding-left:10px;
881
- margin-left:auto;
710
+ h4{
711
+ font-family:var(--typo-h4-family);
712
+ font-size:var(--typo-h4-size);
713
+ font-weight:var(--typo-h4-weight);
714
+ line-height:var(--typo-h4-height);
715
+ letter-spacing:var(--typo-h4-height);
716
+ margin:var(--typo-h4-margin);
717
+ color:var(--typo-h4-color);
882
718
  }
883
- .v-chip{
884
- -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
719
+ h5{
720
+ font-family:var(--typo-h5-family);
721
+ font-size:var(--typo-h5-size);
722
+ font-weight:var(--typo-h5-weight);
723
+ line-height:var(--typo-h5-height);
724
+ letter-spacing:var(--typo-h5-height);
725
+ margin:var(--typo-h5-margin);
726
+ color:var(--typo-h5-color);
885
727
  }
886
- .v-chip::-moz-focus-inner{
887
- border:0;
728
+ h6{
729
+ font-family:var(--typo-h6-family);
730
+ font-size:var(--typo-h6-size);
731
+ font-weight:var(--typo-h6-weight);
732
+ line-height:var(--typo-h6-height);
733
+ letter-spacing:var(--typo-h6-height);
734
+ margin:var(--typo-h6-margin);
735
+ color:var(--typo-h6-color);
888
736
  }
889
- .v-chip{
890
- padding:0;
891
- appearance:none;
892
- touch-action:manipulation;
893
- cursor:pointer;
894
- user-select:none;
895
- outline:0;
896
- border-width:0;
737
+ .elevation-24{
738
+ box-shadow:var(--shadow-key-umbra-24), var(--shadow-key-penumbra-24), var(--shadow-key-ambient-24) !important;
897
739
  }
898
- .v-chip,.v-chip:focus,.v-chip:hover{
899
- text-decoration:none;
740
+ .elevation-23{
741
+ box-shadow:var(--shadow-key-umbra-23), var(--shadow-key-penumbra-23), var(--shadow-key-ambient-23) !important;
900
742
  }
901
- .v-chip{
902
- --chip-radius:calc(var(--chip-height)/2);
903
- display:inline-flex;
904
- align-items:center;
905
- justify-content:center;
906
- height:var(--chip-height);
907
- padding:0 var(--chip-padding);
908
- overflow:hidden;
909
- font-size:var(--chip-font-size);
910
- font-weight:var(--chip-font-weight);
911
- line-height:1;
912
- vertical-align:bottom;
913
- text-align:center;
914
- white-space:nowrap;
915
- cursor:default;
916
- border-style:solid;
917
- border-width:1px;
918
- border-radius:var(--chip-radius);
919
- --shadow-color:transparent !important;
920
- --focusShadow-color:transparent !important;
743
+ .elevation-22{
744
+ box-shadow:var(--shadow-key-umbra-22), var(--shadow-key-penumbra-22), var(--shadow-key-ambient-22) !important;
921
745
  }
922
- .v-chip--clickable{
923
- cursor:pointer;
746
+ .elevation-21{
747
+ box-shadow:var(--shadow-key-umbra-21), var(--shadow-key-penumbra-21), var(--shadow-key-ambient-21) !important;
924
748
  }
925
- .v-chip--xs{
926
- --chip-height:var(--chip-height-xs);
927
- --chip-font-size:var(--chip-font-size-xs);
749
+ .elevation-20{
750
+ box-shadow:var(--shadow-key-umbra-20), var(--shadow-key-penumbra-20), var(--shadow-key-ambient-20) !important;
928
751
  }
929
- .v-chip--sm{
930
- --chip-height:var(--chip-height-sm);
931
- --chip-font-size:var(--chip-font-size-sm);
752
+ .elevation-19{
753
+ box-shadow:var(--shadow-key-umbra-19), var(--shadow-key-penumbra-19), var(--shadow-key-ambient-19) !important;
932
754
  }
933
- .v-chip--md{
934
- --chip-height:var(--chip-height-md);
935
- --chip-font-size:var(--chip-font-size-md);
755
+ .elevation-18{
756
+ box-shadow:var(--shadow-key-umbra-18), var(--shadow-key-penumbra-18), var(--shadow-key-ambient-18) !important;
936
757
  }
937
- .v-chip--lg{
938
- --chip-height:var(--chip-height-lg);
939
- --chip-font-size:var(--chip-font-size-lg);
758
+ .elevation-17{
759
+ box-shadow:var(--shadow-key-umbra-17), var(--shadow-key-penumbra-17), var(--shadow-key-ambient-17) !important;
940
760
  }
941
- .v-chip--xl{
942
- --chip-height:var(--chip-height-xl);
943
- --chip-font-size:var(--chip-font-size-xl);
761
+ .elevation-16{
762
+ box-shadow:var(--shadow-key-umbra-16), var(--shadow-key-penumbra-16), var(--shadow-key-ambient-16) !important;
944
763
  }
945
- .v-chip--label{
946
- --chip-radius:4px;
764
+ .elevation-15{
765
+ box-shadow:var(--shadow-key-umbra-15), var(--shadow-key-penumbra-15), var(--shadow-key-ambient-15) !important;
947
766
  }
948
- .v-chip__icon--start{
949
- margin-right:calc(var(--chip-padding)*.5);
950
- margin-left:calc(var(--chip-padding)*-.5);
767
+ .elevation-14{
768
+ box-shadow:var(--shadow-key-umbra-14), var(--shadow-key-penumbra-14), var(--shadow-key-ambient-14) !important;
951
769
  }
952
- .v-chip__icon--end{
953
- margin-right:calc(var(--chip-padding)*-.5);
954
- margin-left:calc(var(--chip-padding)*.5);
770
+ .elevation-13{
771
+ box-shadow:var(--shadow-key-umbra-13), var(--shadow-key-penumbra-13), var(--shadow-key-ambient-13) !important;
955
772
  }
956
- .v-chip .v-avatar{
957
- --avatar-size:14px;
773
+ .elevation-12{
774
+ box-shadow:var(--shadow-key-umbra-12), var(--shadow-key-penumbra-12), var(--shadow-key-ambient-12) !important;
958
775
  }
959
- .v-skelton-loader-bone{
960
- position:relative;
961
- overflow:hidden;
962
- cursor:progress;
963
- background:rgba(0,0,0,.12);
964
- border-radius:inherit;
776
+ .elevation-11{
777
+ box-shadow:var(--shadow-key-umbra-11), var(--shadow-key-penumbra-11), var(--shadow-key-ambient-11) !important;
965
778
  }
966
- .v-skelton-loader-bone:after{
967
- position:absolute;
968
- top:0;
969
- right:0;
970
- left:0;
971
- z-index:1;
972
- height:100%;
973
- content:"";
974
- background:linear-gradient(90deg, hsla(0,0%,100%,0), hsla(0,0%,100%,.3), hsla(0,0%,100%,0));
975
- transform:translateX(-100%);
976
- animation:v-skelton-loader-bone-loading 1.5s infinite;
779
+ .elevation-10{
780
+ box-shadow:var(--shadow-key-umbra-10), var(--shadow-key-penumbra-10), var(--shadow-key-ambient-10) !important;
977
781
  }
978
- .v-breadcrumbs{
979
- display:block;
980
- margin:1.5em auto;
981
- font-size:var(--breadcrumbs-font-size);
782
+ .elevation-9{
783
+ box-shadow:var(--shadow-key-umbra-9), var(--shadow-key-penumbra-9), var(--shadow-key-ambient-9) !important;
982
784
  }
983
- .v-breadcrumbs__list{
984
- display:inline-flex;
985
- flex-wrap:wrap;
986
- align-items:center;
987
- vertical-align:bottom;
785
+ .elevation-8{
786
+ box-shadow:var(--shadow-key-umbra-8), var(--shadow-key-penumbra-8), var(--shadow-key-ambient-8) !important;
988
787
  }
989
- .v-breadcrumbs__divider,.v-breadcrumbs__item,.v-breadcrumbs__list{
990
- padding:0;
991
- margin:0;
992
- list-style:none;
788
+ .elevation-7{
789
+ box-shadow:var(--shadow-key-umbra-7), var(--shadow-key-penumbra-7), var(--shadow-key-ambient-7) !important;
993
790
  }
994
- .v-breadcrumbs__link{
995
- display:inline-flex;
996
- align-items:center;
997
- vertical-align:middle;
998
- white-space:nowrap;
999
- text-decoration:none;
791
+ .elevation-6{
792
+ box-shadow:var(--shadow-key-umbra-6), var(--shadow-key-penumbra-6), var(--shadow-key-ambient-6) !important;
1000
793
  }
1001
- .v-breadcrumbs__item--disabled .v-breadcrumbs__link{
1002
- color:inherit;
1003
- pointer-events:none;
794
+ .elevation-5{
795
+ box-shadow:var(--shadow-key-umbra-5), var(--shadow-key-penumbra-5), var(--shadow-key-ambient-5) !important;
1004
796
  }
1005
- .v-breadcrumbs__icon{
1006
- margin-right:.2em;
1007
- font-size:140%;
797
+ .elevation-4{
798
+ box-shadow:var(--shadow-key-umbra-4), var(--shadow-key-penumbra-4), var(--shadow-key-ambient-4) !important;
1008
799
  }
1009
- .v-breadcrumbs__divider{
1010
- position:relative;
1011
- top:1px;
1012
- display:flex;
1013
- align-items:center;
1014
- justify-content:center;
1015
- margin:0 1.25em;
800
+ .elevation-3{
801
+ box-shadow:var(--shadow-key-umbra-3), var(--shadow-key-penumbra-3), var(--shadow-key-ambient-3) !important;
1016
802
  }
1017
- .v-breadcrumbs__divider__icon{
1018
- display:block;
1019
- width:.5em;
1020
- height:.5em;
1021
- margin-left:-.25em;
1022
- border-top:1px solid;
1023
- border-right:1px solid;
1024
- transform:rotate(45deg);
803
+ .elevation-2{
804
+ box-shadow:var(--shadow-key-umbra-2), var(--shadow-key-penumbra-2), var(--shadow-key-ambient-2) !important;
1025
805
  }
1026
- .v-radio{
1027
- --my-color:var(--color);
806
+ .elevation-1{
807
+ box-shadow:var(--shadow-key-umbra-1), var(--shadow-key-penumbra-1), var(--shadow-key-ambient-1) !important;
1028
808
  }
1029
- .v-radio__faux{
1030
- position:relative;
1031
- display:block;
809
+ .elevation-0{
810
+ box-shadow:var(--shadow-key-umbra-0), var(--shadow-key-penumbra-0), var(--shadow-key-ambient-0) !important;
811
+ }
812
+ code,kbd,pre,samp{
813
+ font-family:monospace;
814
+ }
815
+ code{
816
+ padding:.2em .4em;
817
+ font-size:85%;
818
+ font-weight:400;
819
+ color:rgba(0,0,0,.87);
820
+ background-color:rgba(0,0,0,.05);
821
+ border-radius:3px;
822
+ }
823
+ table{
824
+ display:table;
825
+ max-width:100%;
826
+ margin:var(--table-vertical-margin) 0;
827
+ font-size:var(--table-font-size);
828
+ border-collapse:collapse;
829
+ border:0;
830
+ border-radius:0;
831
+ }
832
+ caption{
833
+ display:table-caption;
1032
834
  width:100%;
1033
- height:100%;
1034
- transition:border-color .2s,background-color .2s;
835
+ padding:0;
836
+ margin:0 0 var(--table-caption-vertical-margin);
837
+ font-size:var(--table-caption-font-size);
838
+ font-weight:var(--table-caption-font-weight);
839
+ text-align:center;
1035
840
  }
1036
- .v-radio__faux:after,.v-radio__faux:before{
1037
- position:absolute;
1038
- display:block;
1039
- content:"";
1040
- border-radius:100%;
841
+ td,th{
842
+ height:var(--table-cell-height);
843
+ padding:var(--table-cell-vertial-padding) var(--table-cell-horizontal-padding);
844
+ vertical-align:middle;
845
+ text-align:left;
846
+ border:0;
1041
847
  }
1042
- .v-radio__faux:before{
1043
- inset:0;
1044
- border:2px solid;
848
+ th{
849
+ font-weight:var(--table-header-font-weight);
850
+ color:var(--table-header-color);
851
+ white-space:nowrap;
1045
852
  }
1046
- .v-radio__faux:after{
1047
- top:50%;
1048
- left:50%;
1049
- width:50%;
1050
- height:50%;
1051
- background:currentColor;
1052
- transform:translate(-50%, -50%) scale(0);
1053
- transition:transform .2s;
853
+ thead th{
854
+ text-align:center;
1054
855
  }
1055
- .v-radio--selected .v-radio__faux:after{
1056
- transform:translate(-50%, -50%) scale(1);
856
+ .v-control--sm{
857
+ --control-field-rem:var(--control-field-rem-sm);
1057
858
  }
1058
- .v-checkbox{
1059
- --my-border-color:var(--color);
1060
- --my-faux-bg-color:transparent;
859
+ .v-control--md,.v-control--sm{
860
+ font-size:var(--control-field-rem);
1061
861
  }
1062
- .v-checkbox--indeterminate,.v-checkbox--selected{
1063
- --my-border-color:transparent;
1064
- --my-faux-bg-color:var(--color);
862
+ .v-control--md{
863
+ --control-field-rem:var(--control-field-rem-md);
1065
864
  }
1066
- .v-checkbox__faux{
1067
- display:block;
1068
- width:100%;
1069
- height:100%;
1070
- background:var(--my-faux-bg-color);
1071
- border:2px solid var(--my-border-color);
1072
- border-radius:var(--control-field-radius);
1073
- clip-path:polygon(0 0, 0 100%, 100% 100%, 100% 0, 88.25% 28.25%, 38% 78.125%, 12% 50%, 20% 42.1875%, 38% 63%, 82% 20%, 88.25% 28.25%, 100% 0);
1074
- transition:border-color .2s,background-color .2s;
865
+ .v-control--lg{
866
+ --control-field-rem:var(--control-field-rem-lg);
867
+ font-size:var(--control-field-rem);
1075
868
  }
1076
- .v-checkbox--indeterminate .v-checkbox__faux{
1077
- clip-path:polygon(0 0, 0 100%, 100% 100%, 100% 0, 77.7777777778% 44.4444444444%, 77.7777777778% 55.5555555556%, 22.2222222222% 55.5555555556%, 22.2222222222% 44.4444444444%, 77.7777777778% 44.4444444444%, 100% 0);
869
+ .wysiwyg h2:first-child,.wysiwyg h3:first-child,.wysiwyg h4:first-child,.wysiwyg h5:first-child,.wysiwyg h6:first-child,.wysiwyg ol:first-child,.wysiwyg p:first-child,.wysiwyg table:first-child,.wysiwyg ul:first-child,.wysiwyg>h1:first-child{
870
+ margin-top:0;
871
+ }
872
+ .wysiwyg h2:last-child,.wysiwyg h3:last-child,.wysiwyg h4:last-child,.wysiwyg h5:last-child,.wysiwyg h6:last-child,.wysiwyg ol:last-child,.wysiwyg p:last-child,.wysiwyg table:last-child,.wysiwyg ul:last-child,.wysiwyg>h1:last-child{
873
+ margin-bottom:0;
874
+ }
875
+ .wysiwyg p{
876
+ margin:0;
1078
877
  }
1079
878
  .v-control-field{
1080
879
  position:relative;
@@ -1182,152 +981,55 @@
1182
981
  border-radius:inherit;
1183
982
  }
1184
983
  .v-control-field--outlined:hover:before{
1185
- border-color:var(--my-outline-hover-color);
1186
- }
1187
- .v-control-field--outlined:after{
1188
- content:none;
1189
- }
1190
- .v-control-field--outlined:focus-within{
1191
- box-shadow:0 0 1px var(--shadow-color), 0 0 2px 2px var(--focusShadow-color);
1192
- }
1193
- .v-control-field__adornment--start{
1194
- padding-right:.25em;
1195
- }
1196
- .v-control-field__adornment--end{
1197
- padding-left:.25em;
1198
- }
1199
- .v-control-field__adornment .v-icon{
1200
- font-size:1.2em;
1201
- }
1202
- .v-list-tile{
1203
- --tile-background:var(--main-color, transparent);
1204
- --tile-active-background:var(--deep-color, transparent);
1205
- --tile-text-color:var(--text-color);
1206
- --tile-text-active-color:var(--text-color);
1207
- --tile-pin-color:transparent;
1208
- --paper-link-color:var(--tile-text-color);
1209
- --depth-padding:var(--list-tile-padding);
1210
- display:flex;
1211
- align-items:center;
1212
- width:100%;
1213
- padding:var(--list-tile-padding);
1214
- padding-left:var(--depth-padding);
1215
- color:var(--tile-text-color) !important;
1216
- text-align:left;
1217
- text-decoration:none;
1218
- appearance:none;
1219
- user-select:none;
1220
- outline:0;
1221
- background:var(--tile-background);
1222
- border:0;
1223
- border-left:3px solid var(--tile-pin-color);
1224
- border-radius:0;
1225
- transition:color .15s cubic-bezier(.4, 0, .2, 1) 0s,background-color .15s cubic-bezier(.4, 0, .2, 1) 0s;
1226
- }
1227
- .v-list-tile--clickable{
1228
- cursor:pointer;
1229
- --tile-text-color:var(--nav-color);
1230
- --tile-text-active-color:var(--navActive-color, var(--nav-color));
1231
- }
1232
- .v-list-tile--clickable:focus,.v-list-tile--clickable:hover{
1233
- --tile-background:var(--tile-active-background);
1234
- --tile-text-color:var(--tile-text-active-color);
1235
- }
1236
- .v-list-tile--active{
1237
- --tile-pin-color:var(--pin-color);
1238
- --tile-text-color:var(--tile-text-active-color);
1239
- --tile-background:var(--tile-active-background);
1240
- }
1241
- .v-list-tile__body{
1242
- font-size:.8125rem;
1243
- font-weight:500;
1244
- line-height:1.5;
1245
- }
1246
- .v-list-tile__icon{
1247
- min-width:2em;
1248
- }
1249
- .v-list-tile__icon--end{
1250
- margin-left:auto;
1251
- text-align:right;
1252
- }
1253
- .v-option-group{
1254
- display:block;
1255
- }
1256
- .v-option-group__label{
1257
- padding:1em;
1258
- font-size:.875em;
1259
- color:var(--palette-caption);
1260
- opacity:.6;
1261
- }
1262
- .v-option-group--disabled .v-option-group__label{
1263
- color:var(--palette-muted);
1264
- opacity:.4;
1265
- }
1266
- .v-card-actions{
1267
- display:flex;
1268
- align-items:center;
1269
- padding:var(--card-actions-padding);
1270
- }
1271
- .v-card-actions .v-btn{
1272
- margin-top:0;
1273
- margin-bottom:0;
1274
- }
1275
- .v-icon{
1276
- display:inline-flex;
1277
- align-items:center;
1278
- justify-content:center;
1279
- width:1.25em;
1280
- aspect-ratio:1/1;
1281
- user-select:none;
984
+ border-color:var(--my-outline-hover-color);
1282
985
  }
1283
- .v-icon--clickable{
1284
- cursor:pointer;
986
+ .v-control-field--outlined:after{
987
+ content:none;
1285
988
  }
1286
- .v-icon__body{
1287
- display:inline-flex;
1288
- align-items:center;
1289
- justify-content:center;
1290
- transition:transform .15s linear;
989
+ .v-control-field--outlined:focus-within{
990
+ box-shadow:0 0 1px var(--shadow-color), 0 0 2px 2px var(--focusShadow-color);
1291
991
  }
1292
- .v-textarea__input{
1293
- cursor:text;
992
+ .v-control-field__adornment--start{
993
+ padding-right:.25em;
1294
994
  }
1295
- .v-textarea__input__element{
1296
- width:100%;
1297
- min-width:0;
1298
- padding:8px 0;
1299
- margin:0;
1300
- font-size:inherit;
1301
- line-height:inherit;
1302
- letter-spacing:inherit;
1303
- resize:none;
1304
- outline:0;
1305
- background:transparent;
1306
- border:0;
1307
- border-radius:0;
995
+ .v-control-field__adornment--end{
996
+ padding-left:.25em;
1308
997
  }
1309
- .v-textarea__input__element:-webkit-autofill:-webkit-autofill,.v-textarea__input__element:-webkit-autofill:-webkit-autofill:active,.v-textarea__input__element:-webkit-autofill:-webkit-autofill:focus,.v-textarea__input__element:-webkit-autofill:-webkit-autofill:hover{
1310
- color:inherit !important;
1311
- transition:background-color 5000s;
1312
- -webkit-text-fill-color:#fff !important;
998
+ .v-control-field__adornment .v-icon{
999
+ font-size:1.2em;
1313
1000
  }
1314
- .v-textarea__input__element::-ms-clear{
1315
- display:none;
1001
+ .v-pagination{
1002
+ --pagination-size:var(--pagination-item-size);
1003
+ --pagination-margin:var(--pagination-item-margin);
1004
+ --pagination-font-size:var(--pagination-item-font-size);
1005
+ --pagination-radius:var(--pagination-item-radius);
1006
+ display:flex;
1007
+ align-items:center;
1008
+ overflow:hidden;
1009
+ font-weight:700;
1010
+ line-height:1;
1316
1011
  }
1317
- .v-textarea__input__element::placeholder{
1318
- font-style:italic;
1319
- color:var(--control-disabled-color);
1012
+ .v-pagination:before{
1013
+ width:var(--pagination-size);
1014
+ margin:var(--pagination-margin);
1015
+ content:none;
1320
1016
  }
1321
- .v-card-content{
1322
- padding:var(--card-content-padding);
1017
+ .v-pagination--left{
1018
+ justify-content:flex-start;
1323
1019
  }
1324
- .v-option{
1020
+ .v-pagination--center{
1021
+ justify-content:center;
1022
+ }
1023
+ .v-pagination--right{
1024
+ justify-content:flex-end;
1025
+ }
1026
+ .v-pagination a.v-pagination__item,.v-pagination__item{
1325
1027
  -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
1326
1028
  }
1327
- .v-option::-moz-focus-inner{
1029
+ .v-pagination a.v-pagination__item::-moz-focus-inner,.v-pagination__item::-moz-focus-inner{
1328
1030
  border:0;
1329
1031
  }
1330
- .v-option{
1032
+ .v-pagination a.v-pagination__item,.v-pagination__item{
1331
1033
  padding:0;
1332
1034
  appearance:none;
1333
1035
  touch-action:manipulation;
@@ -1336,105 +1038,51 @@
1336
1038
  outline:0;
1337
1039
  border-width:0;
1338
1040
  }
1339
- .v-option,.v-option:focus,.v-option:hover{
1041
+ .v-pagination a.v-pagination__item,.v-pagination a.v-pagination__item:focus,.v-pagination a.v-pagination__item:hover,.v-pagination__item,.v-pagination__item:focus,.v-pagination__item:hover{
1340
1042
  text-decoration:none;
1341
1043
  }
1342
- .v-option{
1343
- position:relative;
1044
+ .v-pagination a.v-pagination__item,.v-pagination__item{
1344
1045
  display:flex;
1345
- width:100%;
1346
- padding:.75em 1em;
1046
+ align-items:center;
1047
+ justify-content:center;
1048
+ min-width:var(--pagination-size);
1049
+ height:var(--pagination-size);
1050
+ margin:calc(var(--pagination-margin)*.5);
1051
+ font-size:var(--pagination-font-size);
1052
+ color:inherit;
1053
+ border-radius:var(--pagination-radius);
1054
+ transition:.1s;
1347
1055
  }
1348
- .v-option input{
1349
- position:absolute;
1350
- width:1px;
1351
- height:1px;
1352
- overflow:hidden;
1353
- white-space:nowrap;
1354
- clip:rect(0 0 0 0);
1355
- clip-path:inset(100%);
1056
+ .v-pagination a.v-pagination__item:focus,.v-pagination a.v-pagination__item:hover,.v-pagination__item:focus,.v-pagination__item:hover{
1057
+ background:rgba(0,0,0,.1);
1356
1058
  }
1357
- .v-option:after,.v-option:before{
1358
- position:absolute;
1359
- inset:0;
1360
- display:block;
1059
+ .v-pagination a.v-pagination__item--active,.v-pagination a.v-pagination__item--active:active,.v-pagination a.v-pagination__item--active:focus,.v-pagination a.v-pagination__item--active:hover,.v-pagination__item--active,.v-pagination__item--active:active,.v-pagination__item--active:focus,.v-pagination__item--active:hover{
1060
+ color:var(--text-color);
1361
1061
  pointer-events:none;
1362
- content:"";
1363
- opacity:0;
1364
- transition:opacity .2s;
1365
- }
1366
- .v-option:before{
1367
- background:currentColor;
1368
- }
1369
- .v-option:after{
1370
- background:var(--palette-primary);
1371
- }
1372
- .v-option--key-focused:before,.v-option:focus-within:before,.v-option:hover:before{
1373
- opacity:.12;
1374
- }
1375
- .v-option__label{
1376
- position:relative;
1377
- display:block;
1062
+ background-color:var(--main-color);
1378
1063
  }
1379
- .v-option--selected:after{
1380
- opacity:.12;
1064
+ .v-pagination a.v-pagination__item--disabled,.v-pagination a.v-pagination__item--truncate,.v-pagination__item--disabled,.v-pagination__item--truncate{
1065
+ color:var(--palette-muted) !important;
1066
+ pointer-events:none !important;
1067
+ background:transparent !important;
1381
1068
  }
1382
- .v-option--selected .v-option__label{
1383
- font-weight:500;
1384
- color:var(--palette-primary);
1069
+ .v-pagination a.v-pagination__item .v-icon,.v-pagination__item .v-icon{
1070
+ font-size:125%;
1385
1071
  }
1386
- .v-option--has-not-value .v-option__label{
1387
- font-style:italic;
1072
+ .v-pagination--dense .v-pagination__item{
1073
+ --pagination-size:var(--pagination-item-size-dense);
1074
+ --pagination-margin:var(--pagination-item-margin-dense);
1075
+ --pagination-font-size:var(--pagination-item-font-size-dense);
1388
1076
  }
1389
- .v-option[aria-disabled=true],.v-option[disabled],.v-option[tabindex="-1"]{
1077
+ .v-pagination--disabled .v-pagination__item{
1390
1078
  color:var(--palette-muted);
1391
1079
  pointer-events:none;
1392
- opacity:.4;
1393
- }
1394
- .v-option[aria-disabled=true]:before,.v-option[disabled]:before,.v-option[tabindex="-1"]:before{
1395
- opacity:0 !important;
1396
- }
1397
- .v-select__input{
1398
- cursor:pointer;
1399
- }
1400
- .v-select__input__element{
1401
- position:absolute;
1402
- width:1px;
1403
- height:1px;
1404
- overflow:hidden;
1405
- white-space:nowrap;
1406
- clip:rect(0 0 0 0);
1407
- clip-path:inset(100%);
1408
- }
1409
- .v-select__body{
1410
- padding:.5em 0;
1411
- }
1412
- .v-select__selections{
1413
- display:table;
1414
- width:100%;
1415
- table-layout:fixed;
1416
- }
1417
- .v-select__selections__inner{
1418
- display:table-cell;
1419
- overflow:hidden;
1420
- text-overflow:ellipsis;
1421
- vertical-align:middle;
1422
- white-space:nowrap;
1423
- }
1424
- .v-select--multiple .v-select__selections{
1425
- display:block;
1426
- }
1427
- .v-select--multiple .v-select__selections__inner{
1428
- display:block;
1429
- overflow:auto;
1430
- white-space:unset;
1431
1080
  }
1432
- .v-select--multiple .v-control-field__body{
1433
- padding:.2em 0;
1081
+ .v-pagination--disabled .v-pagination__item:focus,.v-pagination--disabled .v-pagination__item:hover{
1082
+ background:transparent;
1434
1083
  }
1435
- .v-select__placeholder{
1436
- font-style:italic;
1437
- color:var(--control-disabled-color);
1084
+ .v-pagination--disabled .v-pagination__item--active{
1085
+ background:var(--palette-muted);
1438
1086
  }
1439
1087
  .v-switch{
1440
1088
  --my-pin-color:var(--palette-background);
@@ -1512,42 +1160,14 @@
1512
1160
  .v-switch:focus-within .v-switch__faux__pin:before{
1513
1161
  opacity:.1;
1514
1162
  }
1515
- .v-file-input__inner{
1516
- display:flex;
1517
- align-items:stretch;
1518
- }
1519
- .v-file-input__button{
1520
- flex:0 0 auto;
1521
- height:auto;
1522
- margin:0;
1523
- margin-bottom:1px !important;
1524
- border-top-right-radius:0;
1525
- border-bottom-right-radius:0;
1526
- }
1527
- .v-file-input__selections{
1163
+ .v-card-actions{
1528
1164
  display:flex;
1529
- flex-wrap:wrap;
1530
1165
  align-items:center;
1531
- align-self:stretch;
1532
- padding:4px 6px;
1533
- }
1534
- .v-file-input__placeholder{
1535
- color:var(--control-disabled-color);
1536
- }
1537
- .v-file-input__input{
1538
- flex:1 1 100%;
1539
- cursor:text;
1540
- border-top-left-radius:0;
1541
- border-bottom-left-radius:0;
1166
+ padding:var(--card-actions-padding);
1542
1167
  }
1543
- .v-file-input__input__element{
1544
- position:absolute;
1545
- width:1px;
1546
- height:1px;
1547
- overflow:hidden;
1548
- white-space:nowrap;
1549
- clip:rect(0 0 0 0);
1550
- clip-path:inset(100%);
1168
+ .v-card-actions .v-btn{
1169
+ margin-top:0;
1170
+ margin-bottom:0;
1551
1171
  }
1552
1172
  .v-content-switcher{
1553
1173
  position:relative;
@@ -1582,126 +1202,142 @@
1582
1202
  .v-content-switcher-next-enter-from{
1583
1203
  transform:translateX(100%);
1584
1204
  }
1585
- .v-content-switcher-next-enter-to,.v-content-switcher-next-leave{
1586
- transform:translateX(0);
1587
- }
1588
- .v-content-switcher-next-leave-active{
1589
- position:absolute;
1590
- top:0;
1591
- left:0;
1592
- }
1593
- .v-content-switcher-next-leave-to{
1594
- transform:translateX(-100%);
1595
- }
1596
- .v-toolbar-title{
1597
- display:flex;
1598
- flex-grow:1;
1599
- margin:0;
1600
- font-size:1.25rem;
1601
- font-weight:400;
1602
- line-height:1;
1603
- white-space:nowrap;
1604
- }
1605
- .v-toolbar{
1606
- --height:var(--toolbar-height);
1607
- display:flex;
1608
- align-items:center;
1609
- width:100%;
1610
- height:var(--height);
1611
- padding:0 calc(var(--root-em)*1.5);
1612
- margin:0;
1613
- border-radius:inherit;
1614
- }
1615
- .v-toolbar--plain{
1616
- --main-color:var(--palette-background);
1205
+ .v-content-switcher-next-enter-to,.v-content-switcher-next-leave{
1206
+ transform:translateX(0);
1617
1207
  }
1618
- .v-app-layout__header>.v-toolbar{
1619
- height:100%;
1208
+ .v-content-switcher-next-leave-active{
1209
+ position:absolute;
1210
+ top:0;
1211
+ left:0;
1620
1212
  }
1621
- .v-toolbar--dense{
1622
- --height:var(--toolbar-dense-height);
1213
+ .v-content-switcher-next-leave-to{
1214
+ transform:translateX(-100%);
1623
1215
  }
1624
- .v-toolbar-edge{
1625
- display:flex;
1626
- flex:0 0;
1627
- align-items:center;
1628
- align-self:stretch;
1216
+ .v-textarea__input{
1217
+ cursor:text;
1629
1218
  }
1630
- .v-toolbar-edge--empty,.v-toolbar-edge:empty{
1219
+ .v-textarea__input__element{
1220
+ width:100%;
1221
+ min-width:0;
1222
+ padding:8px 0;
1223
+ margin:0;
1224
+ font-size:inherit;
1225
+ line-height:inherit;
1226
+ letter-spacing:inherit;
1227
+ resize:none;
1228
+ outline:0;
1229
+ background:transparent;
1230
+ border:0;
1231
+ border-radius:0;
1232
+ }
1233
+ .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{
1234
+ color:inherit !important;
1235
+ transition:background-color 5000s;
1236
+ -webkit-text-fill-color:#fff !important;
1237
+ }
1238
+ .v-textarea__input__element::-ms-clear{
1631
1239
  display:none;
1632
1240
  }
1633
- .v-toolbar-edge--start{
1634
- margin-right:calc(var(--root-em)*.75);
1635
- margin-left:calc(var(--root-em)*-1*.75);
1241
+ .v-textarea__input__element::placeholder{
1242
+ font-style:italic;
1243
+ color:var(--control-disabled-color);
1636
1244
  }
1637
- .v-toolbar-edge--end{
1638
- padding-left:calc(var(--root-em)*.75);
1639
- margin-right:calc(var(--root-em)*-1*.75);
1640
- margin-left:auto;
1245
+ .v-card{
1246
+ -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
1641
1247
  }
1642
- .v-tabs{
1248
+ .v-card::-moz-focus-inner{
1249
+ border:0;
1250
+ }
1251
+ .v-card{
1643
1252
  position:relative;
1644
1253
  width:100%;
1645
- height:var(--tabs-height);
1646
- overflow:hidden;
1254
+ padding:0;
1255
+ text-align:left;
1256
+ appearance:none;
1257
+ touch-action:manipulation;
1258
+ user-select:none;
1259
+ outline:0;
1260
+ border:0;
1647
1261
  }
1648
- .v-tabs:before{
1262
+ .v-card,.v-card:focus,.v-card:hover{
1263
+ text-decoration:none;
1264
+ }
1265
+ .v-card.clickable{
1266
+ cursor:pointer;
1267
+ }
1268
+ .v-card.clickable:before{
1649
1269
  position:absolute;
1650
- right:0;
1651
- bottom:0;
1652
- left:0;
1653
- display:block;
1654
- height:2px;
1270
+ inset:0;
1655
1271
  content:"";
1656
1272
  background:currentColor;
1657
- opacity:.25;
1273
+ border-radius:inherit;
1274
+ opacity:0;
1275
+ transition:.3s cubic-bezier(.25, .8, .5, 1);
1658
1276
  }
1659
- .v-tabs__scroller{
1660
- width:100%;
1661
- height:calc(var(--tabs-height) + 30px);
1277
+ .v-card.clickable:focus:before,.v-card.clickable:hover:before{
1278
+ opacity:.125;
1662
1279
  }
1663
- .v-tabs__scroller__container{
1664
- padding-bottom:30px;
1280
+ .v-card[aria-disabled=true],.v-card[disabled]{
1281
+ pointer-events:none;
1665
1282
  }
1666
- .v-tabs__content{
1667
- position:relative;
1283
+ .v-card[aria-disabled=true]:before,.v-card[disabled]:before{
1284
+ content:none;
1285
+ }
1286
+ .v-breadcrumbs{
1287
+ display:block;
1288
+ margin:1.5em auto;
1289
+ font-size:var(--breadcrumbs-font-size);
1290
+ }
1291
+ .v-breadcrumbs__list{
1668
1292
  display:inline-flex;
1669
- align-items:stretch;
1670
- min-width:100%;
1293
+ flex-wrap:wrap;
1294
+ align-items:center;
1671
1295
  vertical-align:bottom;
1672
1296
  }
1673
- .v-pagination{
1674
- --pagination-size:var(--pagination-item-size);
1675
- --pagination-margin:var(--pagination-item-margin);
1676
- --pagination-font-size:var(--pagination-item-font-size);
1677
- --pagination-radius:var(--pagination-item-radius);
1678
- display:flex;
1297
+ .v-breadcrumbs__divider,.v-breadcrumbs__item,.v-breadcrumbs__list{
1298
+ padding:0;
1299
+ margin:0;
1300
+ list-style:none;
1301
+ }
1302
+ .v-breadcrumbs__link{
1303
+ display:inline-flex;
1679
1304
  align-items:center;
1680
- overflow:hidden;
1681
- font-weight:700;
1682
- line-height:1;
1305
+ vertical-align:middle;
1306
+ white-space:nowrap;
1307
+ text-decoration:none;
1683
1308
  }
1684
- .v-pagination:before{
1685
- width:var(--pagination-size);
1686
- margin:var(--pagination-margin);
1687
- content:none;
1309
+ .v-breadcrumbs__item--disabled .v-breadcrumbs__link{
1310
+ color:inherit;
1311
+ pointer-events:none;
1688
1312
  }
1689
- .v-pagination--left{
1690
- justify-content:flex-start;
1313
+ .v-breadcrumbs__icon{
1314
+ margin-right:.2em;
1315
+ font-size:140%;
1691
1316
  }
1692
- .v-pagination--center{
1317
+ .v-breadcrumbs__divider{
1318
+ position:relative;
1319
+ top:1px;
1320
+ display:flex;
1321
+ align-items:center;
1693
1322
  justify-content:center;
1323
+ margin:0 1.25em;
1694
1324
  }
1695
- .v-pagination--right{
1696
- justify-content:flex-end;
1325
+ .v-breadcrumbs__divider__icon{
1326
+ display:block;
1327
+ width:.5em;
1328
+ height:.5em;
1329
+ margin-left:-.25em;
1330
+ border-top:1px solid;
1331
+ border-right:1px solid;
1332
+ transform:rotate(45deg);
1697
1333
  }
1698
- .v-pagination a.v-pagination__item,.v-pagination__item{
1334
+ .v-chip{
1699
1335
  -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
1700
1336
  }
1701
- .v-pagination a.v-pagination__item::-moz-focus-inner,.v-pagination__item::-moz-focus-inner{
1337
+ .v-chip::-moz-focus-inner{
1702
1338
  border:0;
1703
1339
  }
1704
- .v-pagination a.v-pagination__item,.v-pagination__item{
1340
+ .v-chip{
1705
1341
  padding:0;
1706
1342
  appearance:none;
1707
1343
  touch-action:manipulation;
@@ -1710,92 +1346,188 @@
1710
1346
  outline:0;
1711
1347
  border-width:0;
1712
1348
  }
1713
- .v-pagination a.v-pagination__item,.v-pagination a.v-pagination__item:focus,.v-pagination a.v-pagination__item:hover,.v-pagination__item,.v-pagination__item:focus,.v-pagination__item:hover{
1349
+ .v-chip,.v-chip:focus,.v-chip:hover{
1350
+ text-decoration:none;
1351
+ }
1352
+ .v-chip{
1353
+ --chip-radius:calc(var(--chip-height)/2);
1354
+ display:inline-flex;
1355
+ align-items:center;
1356
+ justify-content:center;
1357
+ height:var(--chip-height);
1358
+ padding:0 var(--chip-padding);
1359
+ overflow:hidden;
1360
+ font-size:var(--chip-font-size);
1361
+ font-weight:var(--chip-font-weight);
1362
+ line-height:1;
1363
+ vertical-align:bottom;
1364
+ text-align:center;
1365
+ white-space:nowrap;
1366
+ cursor:default;
1367
+ border-style:solid;
1368
+ border-width:1px;
1369
+ border-radius:var(--chip-radius);
1370
+ --shadow-color:transparent !important;
1371
+ --focusShadow-color:transparent !important;
1372
+ }
1373
+ .v-chip--clickable{
1374
+ cursor:pointer;
1375
+ }
1376
+ .v-chip--xs{
1377
+ --chip-height:var(--chip-height-xs);
1378
+ --chip-font-size:var(--chip-font-size-xs);
1379
+ }
1380
+ .v-chip--sm{
1381
+ --chip-height:var(--chip-height-sm);
1382
+ --chip-font-size:var(--chip-font-size-sm);
1383
+ }
1384
+ .v-chip--md{
1385
+ --chip-height:var(--chip-height-md);
1386
+ --chip-font-size:var(--chip-font-size-md);
1387
+ }
1388
+ .v-chip--lg{
1389
+ --chip-height:var(--chip-height-lg);
1390
+ --chip-font-size:var(--chip-font-size-lg);
1391
+ }
1392
+ .v-chip--xl{
1393
+ --chip-height:var(--chip-height-xl);
1394
+ --chip-font-size:var(--chip-font-size-xl);
1395
+ }
1396
+ .v-chip--label{
1397
+ --chip-radius:4px;
1398
+ }
1399
+ .v-chip__icon--start{
1400
+ margin-right:calc(var(--chip-padding)*.5);
1401
+ margin-left:calc(var(--chip-padding)*-.5);
1402
+ }
1403
+ .v-chip__icon--end{
1404
+ margin-right:calc(var(--chip-padding)*-.5);
1405
+ margin-left:calc(var(--chip-padding)*.5);
1406
+ }
1407
+ .v-chip .v-avatar{
1408
+ --avatar-size:14px;
1409
+ }
1410
+ .v-form-control{
1411
+ display:flex;
1412
+ flex-direction:column;
1413
+ max-width:100%;
1414
+ margin:var(--control-horizontal-margin) 0;
1415
+ --my-label-color:var(--control-label-color);
1416
+ --my-message-color:var(--control-message-color);
1417
+ }
1418
+ .v-form-control--invalid:not(.v-form-control--readonly){
1419
+ --my-label-color:var(--main-color);
1420
+ --my-message-color:var(--main-color);
1421
+ }
1422
+ .v-form-control--disabled{
1423
+ --my-label-color:var(--control-disabled-color);
1424
+ --my-message-color:var(--control-disabled-color);
1425
+ }
1426
+ .v-form-control__label{
1427
+ display:flex;
1428
+ align-items:center;
1429
+ align-self:flex-start;
1430
+ font-size:var(--control-label-font-size);
1431
+ font-weight:var(--control-label-font-weight);
1432
+ line-height:var(--control-label-height);
1433
+ color:var(--my-label-color);
1434
+ letter-spacing:.00938em;
1435
+ }
1436
+ .v-form-control__label__hinttip{
1437
+ display:inline-flex;
1438
+ align-items:center;
1439
+ margin-top:-.2em;
1440
+ margin-left:.6em;
1441
+ font-size:80%;
1442
+ line-height:1;
1443
+ color:inherit;
1444
+ letter-spacing:normal;
1714
1445
  text-decoration:none;
1446
+ cursor:pointer;
1715
1447
  }
1716
- .v-pagination a.v-pagination__item,.v-pagination__item{
1448
+ .v-form-control__label__hinttip__icon{
1449
+ position:relative;
1717
1450
  display:flex;
1718
1451
  align-items:center;
1719
1452
  justify-content:center;
1720
- min-width:var(--pagination-size);
1721
- height:var(--pagination-size);
1722
- margin:calc(var(--pagination-margin)*.5);
1723
- font-size:var(--pagination-font-size);
1724
- color:inherit;
1725
- border-radius:var(--pagination-radius);
1726
- transition:.1s;
1453
+ font-size:120%;
1454
+ text-decoration:none !important;
1727
1455
  }
1728
- .v-pagination a.v-pagination__item:focus,.v-pagination a.v-pagination__item:hover,.v-pagination__item:focus,.v-pagination__item:hover{
1729
- background:rgba(0,0,0,.1);
1456
+ .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{
1457
+ opacity:.1;
1730
1458
  }
1731
- .v-pagination a.v-pagination__item--active,.v-pagination a.v-pagination__item--active:active,.v-pagination a.v-pagination__item--active:focus,.v-pagination a.v-pagination__item--active:hover,.v-pagination__item--active,.v-pagination__item--active:active,.v-pagination__item--active:focus,.v-pagination__item--active:hover{
1732
- color:var(--text-color);
1733
- pointer-events:none;
1734
- background-color:var(--main-color);
1459
+ .v-form-control__label__hinttip__hint{
1460
+ font-size:calc(var(--root-em)*.75);
1735
1461
  }
1736
- .v-pagination a.v-pagination__item--disabled,.v-pagination a.v-pagination__item--truncate,.v-pagination__item--disabled,.v-pagination__item--truncate{
1737
- color:var(--palette-muted) !important;
1738
- pointer-events:none !important;
1739
- background:transparent !important;
1462
+ .v-form-control__info{
1463
+ display:flex;
1464
+ padding-top:3px;
1740
1465
  }
1741
- .v-pagination a.v-pagination__item .v-icon,.v-pagination__item .v-icon{
1742
- font-size:125%;
1466
+ .v-form-control__appends,.v-form-control__message{
1467
+ margin:0 var(--control-message-horizontal-margin);
1468
+ font-size:var(--control-message-font-size);
1469
+ line-height:1.66;
1470
+ color:var(--my-message-color);
1743
1471
  }
1744
- .v-pagination--dense .v-pagination__item{
1745
- --pagination-size:var(--pagination-item-size-dense);
1746
- --pagination-margin:var(--pagination-item-margin-dense);
1747
- --pagination-font-size:var(--pagination-item-font-size-dense);
1472
+ .v-form-control__message{
1473
+ flex:1 0;
1748
1474
  }
1749
- .v-pagination--disabled .v-pagination__item{
1750
- color:var(--palette-muted);
1751
- pointer-events:none;
1475
+ .v-form-control__appends{
1476
+ flex:0 1;
1477
+ margin-left:auto;
1752
1478
  }
1753
- .v-pagination--disabled .v-pagination__item:focus,.v-pagination--disabled .v-pagination__item:hover{
1754
- background:transparent;
1479
+ .v-navigation__caption{
1480
+ display:block;
1481
+ padding:calc(var(--root-em)*.625) calc(var(--root-em)*1.5625);
1482
+ margin:1em 0 0;
1483
+ font-size:.75rem;
1484
+ color:var(--caption-color);
1485
+ text-transform:uppercase;
1755
1486
  }
1756
- .v-pagination--disabled .v-pagination__item--active{
1757
- background:var(--palette-muted);
1487
+ .v-navigation-item--opened{
1488
+ --tile-background:var(--tile-active-background);
1489
+ --tile-text-color:var(--tile-text-active-color);
1758
1490
  }
1759
- .v-card{
1760
- -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
1491
+ .v-navigation-item__expand{
1492
+ transition:height .2s;
1761
1493
  }
1762
- .v-card::-moz-focus-inner{
1763
- border:0;
1494
+ .v-navigation-item__expand .v-navigation-item{
1495
+ --tile-background:var(--tile-active-background);
1764
1496
  }
1765
- .v-card{
1766
- position:relative;
1767
- width:100%;
1768
- padding:0;
1769
- text-align:left;
1770
- appearance:none;
1771
- touch-action:manipulation;
1772
- user-select:none;
1773
- outline:0;
1774
- border:0;
1497
+ .v-navigation-item--depth-1{
1498
+ --depth-padding:calc(var(--list-tile-padding)*2);
1775
1499
  }
1776
- .v-card,.v-card:focus,.v-card:hover{
1777
- text-decoration:none;
1500
+ .v-navigation-item--depth-2{
1501
+ --depth-padding:calc(var(--list-tile-padding)*3);
1778
1502
  }
1779
- .v-card.clickable{
1780
- cursor:pointer;
1503
+ .v-navigation-item--depth-3{
1504
+ --depth-padding:calc(var(--list-tile-padding)*4);
1781
1505
  }
1782
- .v-card.clickable:before{
1783
- position:absolute;
1784
- inset:0;
1785
- content:"";
1786
- background:currentColor;
1787
- border-radius:inherit;
1788
- opacity:0;
1789
- transition:.3s cubic-bezier(.25, .8, .5, 1);
1506
+ .v-icon{
1507
+ display:inline-flex;
1508
+ align-items:center;
1509
+ justify-content:center;
1510
+ width:1.25em;
1511
+ aspect-ratio:1/1;
1512
+ user-select:none;
1790
1513
  }
1791
- .v-card.clickable:focus:before,.v-card.clickable:hover:before{
1792
- opacity:.125;
1514
+ .v-icon--clickable{
1515
+ cursor:pointer;
1793
1516
  }
1794
- .v-card[aria-disabled=true],.v-card[disabled]{
1795
- pointer-events:none;
1517
+ .v-icon__body{
1518
+ display:inline-flex;
1519
+ align-items:center;
1520
+ justify-content:center;
1521
+ transition:transform .15s linear;
1796
1522
  }
1797
- .v-card[aria-disabled=true]:before,.v-card[disabled]:before{
1798
- content:none;
1523
+ .v-toolbar-title{
1524
+ display:flex;
1525
+ flex-grow:1;
1526
+ margin:0;
1527
+ font-size:1.25rem;
1528
+ font-weight:400;
1529
+ line-height:1;
1530
+ white-space:nowrap;
1799
1531
  }
1800
1532
  .v-data-table{
1801
1533
  --controls-vertial-margin:0.625em;
@@ -1927,83 +1659,135 @@
1927
1659
  top:0;
1928
1660
  z-index:1;
1929
1661
  }
1930
- .v-text-counter{
1662
+ .v-toolbar{
1663
+ --height:var(--toolbar-height);
1664
+ display:flex;
1665
+ align-items:center;
1666
+ width:100%;
1667
+ height:var(--height);
1668
+ padding:0 calc(var(--root-em)*1.5);
1669
+ margin:0;
1670
+ border-radius:inherit;
1671
+ }
1672
+ .v-toolbar--plain{
1673
+ --main-color:var(--palette-background);
1674
+ }
1675
+ .v-app-layout__header>.v-toolbar{
1676
+ height:100%;
1677
+ }
1678
+ .v-toolbar--dense{
1679
+ --height:var(--toolbar-dense-height);
1680
+ }
1681
+ .v-file-input__inner{
1682
+ display:flex;
1683
+ align-items:stretch;
1684
+ }
1685
+ .v-file-input__button{
1686
+ flex:0 0 auto;
1687
+ height:auto;
1688
+ margin:0;
1689
+ margin-bottom:1px !important;
1690
+ border-top-right-radius:0;
1691
+ border-bottom-right-radius:0;
1692
+ }
1693
+ .v-file-input__selections{
1694
+ display:flex;
1695
+ flex-wrap:wrap;
1696
+ align-items:center;
1697
+ align-self:stretch;
1698
+ padding:4px 6px;
1699
+ }
1700
+ .v-file-input__placeholder{
1701
+ color:var(--control-disabled-color);
1702
+ }
1703
+ .v-file-input__input{
1704
+ flex:1 1 100%;
1705
+ cursor:text;
1706
+ border-top-left-radius:0;
1707
+ border-bottom-left-radius:0;
1708
+ }
1709
+ .v-file-input__input__element{
1710
+ position:absolute;
1711
+ width:1px;
1712
+ height:1px;
1713
+ overflow:hidden;
1931
1714
  white-space:nowrap;
1715
+ clip:rect(0 0 0 0);
1716
+ clip-path:inset(100%);
1932
1717
  }
1933
- .v-avatar{
1718
+ .v-tab{
1934
1719
  -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
1935
1720
  }
1936
- .v-avatar::-moz-focus-inner{
1721
+ .v-tab::-moz-focus-inner{
1937
1722
  border:0;
1938
1723
  }
1939
- .v-avatar{
1724
+ .v-tab{
1940
1725
  padding:0;
1941
1726
  appearance:none;
1942
1727
  touch-action:manipulation;
1943
1728
  cursor:pointer;
1944
- user-select:none;
1945
1729
  outline:0;
1946
1730
  border-width:0;
1947
1731
  }
1948
- .v-avatar,.v-avatar:focus,.v-avatar:hover{
1732
+ .v-tab,.v-tab:focus,.v-tab:hover{
1949
1733
  text-decoration:none;
1950
1734
  }
1951
- .v-avatar{
1952
- --avatar-radius:50%;
1953
- --avatar-font-weight:var(--typo-medium-weight);
1954
- --avatar-base-font-size:var(--typo-base-size);
1955
- --avatar-font-size:var(--avatar-base-font-size);
1956
- display:inline-flex;
1957
- flex-basis:var(--avatar-size);
1735
+ .v-tab{
1736
+ --tab-content-color:var(--palette-caption);
1737
+ --tab-content-focus-color:var(--main-color);
1738
+ --tab-content-opacity:0.7;
1739
+ position:relative;
1740
+ z-index:3;
1741
+ display:flex;
1958
1742
  align-items:center;
1959
1743
  justify-content:center;
1960
- width:var(--avatar-size);
1961
- min-width:var(--avatar-size);
1962
- height:var(--avatar-size);
1963
- overflow:hidden;
1964
- font-size:var(--avatar-font-size);
1965
- font-weight:var(--avatar-font-weight);
1966
- line-height:1;
1967
- vertical-align:bottom;
1968
- text-align:center;
1969
- cursor:default;
1970
- border-style:solid;
1971
- border-width:1px;
1972
- border-radius:var(--avatar-radius);
1973
- --shadow-color:transparent !important;
1974
- --focusShadow-color:transparent !important;
1975
- }
1976
- .v-avatar--clickable{
1977
- cursor:pointer;
1978
- }
1979
- .v-avatar--sm{
1980
- --avatar-size:36px;
1981
- --avatar-font-size:calc(var(--avatar-base-font-size)*0.75);
1744
+ height:var(--tabs-height);
1745
+ padding:0 1.25em;
1746
+ font:inherit;
1747
+ font-size:var(--tabs-font-size);
1748
+ white-space:nowrap;
1749
+ user-select:none;
1750
+ transition:color .6s;
1982
1751
  }
1983
- .v-avatar--md{
1984
- --avatar-size:48px;
1752
+ .v-tab:before{
1753
+ position:absolute;
1754
+ right:0;
1755
+ bottom:0;
1756
+ left:0;
1757
+ z-index:1;
1758
+ height:2px;
1759
+ content:"";
1760
+ background-color:var(--tab-content-focus-color);
1761
+ border-radius:inherit;
1762
+ transform:scaleX(0);
1763
+ transition:all .25s;
1985
1764
  }
1986
- .v-avatar--lg{
1987
- --avatar-size:62px;
1988
- --avatar-font-size:calc(var(--avatar-base-font-size)*1.25);
1765
+ .v-tab__content{
1766
+ position:relative;
1767
+ z-index:2;
1768
+ display:flex;
1769
+ align-items:center;
1770
+ line-height:1.2;
1771
+ color:var(--tab-content-color);
1772
+ text-align:center;
1773
+ opacity:var(--tab-content-opacity);
1774
+ transition:all .25s ease;
1989
1775
  }
1990
- .v-avatar--rounded{
1991
- --avatar-radius:4px;
1776
+ .v-tab__icon{
1777
+ margin-right:8px;
1778
+ font-size:120%;
1992
1779
  }
1993
- .v-avatar--tile{
1994
- --avatar-radius:0;
1780
+ .v-tab:hover{
1781
+ --tab-content-color:var(--tab-content-focus-color);
1995
1782
  }
1996
- .v-avatar img,.v-avatar__image{
1997
- display:inline-flex;
1998
- width:inherit !important;
1999
- height:inherit !important;
2000
- object-fit:cover;
2001
- border-radius:inherit;
1783
+ .v-tab--active{
1784
+ --tab-content-color:rgba(0,0,0,.87);
1785
+ pointer-events:none;
1786
+ background:var(--tabs-color);
1787
+ --tab-content-opacity:1;
2002
1788
  }
2003
- .v-toolbar-menu{
2004
- height:100%;
2005
- margin:0;
2006
- box-shadow:none;
1789
+ .v-tab--active:before{
1790
+ transform:scaleX(1);
2007
1791
  }
2008
1792
  .v-checkable{
2009
1793
  --outer-size:var(--control-checkable-outer-size);
@@ -2085,132 +1869,348 @@
2085
1869
  .v-checkable--disabled .v-checkable__label{
2086
1870
  color:var(--color);
2087
1871
  }
2088
- .v-tab{
1872
+ .v-option{
2089
1873
  -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
2090
1874
  }
2091
- .v-tab::-moz-focus-inner{
1875
+ .v-option::-moz-focus-inner{
2092
1876
  border:0;
2093
1877
  }
2094
- .v-tab{
1878
+ .v-option{
2095
1879
  padding:0;
2096
1880
  appearance:none;
2097
1881
  touch-action:manipulation;
2098
1882
  cursor:pointer;
1883
+ user-select:none;
2099
1884
  outline:0;
2100
1885
  border-width:0;
2101
1886
  }
2102
- .v-tab,.v-tab:focus,.v-tab:hover{
1887
+ .v-option,.v-option:focus,.v-option:hover{
2103
1888
  text-decoration:none;
2104
1889
  }
2105
- .v-tab{
2106
- --tab-content-color:var(--palette-caption);
2107
- --tab-content-focus-color:var(--main-color);
2108
- --tab-content-opacity:0.7;
1890
+ .v-option{
2109
1891
  position:relative;
2110
- z-index:3;
2111
1892
  display:flex;
1893
+ width:100%;
1894
+ padding:.75em 1em;
1895
+ }
1896
+ .v-option input{
1897
+ position:absolute;
1898
+ width:1px;
1899
+ height:1px;
1900
+ overflow:hidden;
1901
+ white-space:nowrap;
1902
+ clip:rect(0 0 0 0);
1903
+ clip-path:inset(100%);
1904
+ }
1905
+ .v-option:after,.v-option:before{
1906
+ position:absolute;
1907
+ inset:0;
1908
+ display:block;
1909
+ pointer-events:none;
1910
+ content:"";
1911
+ opacity:0;
1912
+ transition:opacity .2s;
1913
+ }
1914
+ .v-option:before{
1915
+ background:currentColor;
1916
+ }
1917
+ .v-option:after{
1918
+ background:var(--palette-primary);
1919
+ }
1920
+ .v-option--key-focused:before,.v-option:focus-within:before,.v-option:hover:before{
1921
+ opacity:.12;
1922
+ }
1923
+ .v-option__label{
1924
+ position:relative;
1925
+ display:block;
1926
+ }
1927
+ .v-option--selected:after{
1928
+ opacity:.12;
1929
+ }
1930
+ .v-option--selected .v-option__label{
1931
+ font-weight:500;
1932
+ color:var(--palette-primary);
1933
+ }
1934
+ .v-option--has-not-value .v-option__label{
1935
+ font-style:italic;
1936
+ }
1937
+ .v-option[aria-disabled=true],.v-option[disabled],.v-option[tabindex="-1"]{
1938
+ color:var(--palette-muted);
1939
+ pointer-events:none;
1940
+ opacity:.4;
1941
+ }
1942
+ .v-option[aria-disabled=true]:before,.v-option[disabled]:before,.v-option[tabindex="-1"]:before{
1943
+ opacity:0 !important;
1944
+ }
1945
+ .v-avatar{
1946
+ -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
1947
+ }
1948
+ .v-avatar::-moz-focus-inner{
1949
+ border:0;
1950
+ }
1951
+ .v-avatar{
1952
+ padding:0;
1953
+ appearance:none;
1954
+ touch-action:manipulation;
1955
+ cursor:pointer;
1956
+ user-select:none;
1957
+ outline:0;
1958
+ border-width:0;
1959
+ }
1960
+ .v-avatar,.v-avatar:focus,.v-avatar:hover{
1961
+ text-decoration:none;
1962
+ }
1963
+ .v-avatar{
1964
+ --avatar-radius:50%;
1965
+ --avatar-font-weight:var(--typo-medium-weight);
1966
+ --avatar-base-font-size:var(--typo-base-size);
1967
+ --avatar-font-size:var(--avatar-base-font-size);
1968
+ display:inline-flex;
1969
+ flex-basis:var(--avatar-size);
2112
1970
  align-items:center;
2113
1971
  justify-content:center;
1972
+ width:var(--avatar-size);
1973
+ min-width:var(--avatar-size);
1974
+ height:var(--avatar-size);
1975
+ overflow:hidden;
1976
+ font-size:var(--avatar-font-size);
1977
+ font-weight:var(--avatar-font-weight);
1978
+ line-height:1;
1979
+ vertical-align:bottom;
1980
+ text-align:center;
1981
+ cursor:default;
1982
+ border-style:solid;
1983
+ border-width:1px;
1984
+ border-radius:var(--avatar-radius);
1985
+ --shadow-color:transparent !important;
1986
+ --focusShadow-color:transparent !important;
1987
+ }
1988
+ .v-avatar--clickable{
1989
+ cursor:pointer;
1990
+ }
1991
+ .v-avatar--sm{
1992
+ --avatar-size:36px;
1993
+ --avatar-font-size:calc(var(--avatar-base-font-size)*0.75);
1994
+ }
1995
+ .v-avatar--md{
1996
+ --avatar-size:48px;
1997
+ }
1998
+ .v-avatar--lg{
1999
+ --avatar-size:62px;
2000
+ --avatar-font-size:calc(var(--avatar-base-font-size)*1.25);
2001
+ }
2002
+ .v-avatar--rounded{
2003
+ --avatar-radius:4px;
2004
+ }
2005
+ .v-avatar--tile{
2006
+ --avatar-radius:0;
2007
+ }
2008
+ .v-avatar img,.v-avatar__image{
2009
+ display:inline-flex;
2010
+ width:inherit !important;
2011
+ height:inherit !important;
2012
+ object-fit:cover;
2013
+ border-radius:inherit;
2014
+ }
2015
+ .v-tabs{
2016
+ position:relative;
2017
+ width:100%;
2114
2018
  height:var(--tabs-height);
2115
- padding:0 1.25em;
2116
- font:inherit;
2117
- font-size:var(--tabs-font-size);
2118
- white-space:nowrap;
2119
- user-select:none;
2120
- transition:color .6s;
2019
+ overflow:hidden;
2121
2020
  }
2122
- .v-tab:before{
2021
+ .v-tabs:before{
2123
2022
  position:absolute;
2124
2023
  right:0;
2125
2024
  bottom:0;
2126
2025
  left:0;
2127
- z-index:1;
2026
+ display:block;
2128
2027
  height:2px;
2129
2028
  content:"";
2130
- background-color:var(--tab-content-focus-color);
2131
- border-radius:inherit;
2132
- transform:scaleX(0);
2133
- transition:all .25s;
2029
+ background:currentColor;
2030
+ opacity:.25;
2031
+ }
2032
+ .v-tabs__scroller{
2033
+ width:100%;
2034
+ height:calc(var(--tabs-height) + 30px);
2035
+ }
2036
+ .v-tabs__scroller__container{
2037
+ padding-bottom:30px;
2038
+ }
2039
+ .v-tabs__content{
2040
+ position:relative;
2041
+ display:inline-flex;
2042
+ align-items:stretch;
2043
+ min-width:100%;
2044
+ vertical-align:bottom;
2045
+ }
2046
+ .v-list-tile{
2047
+ --tile-background:var(--main-color, transparent);
2048
+ --tile-active-background:var(--deep-color, transparent);
2049
+ --tile-text-color:var(--text-color);
2050
+ --tile-text-active-color:var(--text-color);
2051
+ --tile-pin-color:transparent;
2052
+ --paper-link-color:var(--tile-text-color);
2053
+ --depth-padding:var(--list-tile-padding);
2054
+ display:flex;
2055
+ align-items:center;
2056
+ width:100%;
2057
+ padding:var(--list-tile-padding);
2058
+ padding-left:var(--depth-padding);
2059
+ color:var(--tile-text-color) !important;
2060
+ text-align:left;
2061
+ text-decoration:none;
2062
+ appearance:none;
2063
+ user-select:none;
2064
+ outline:0;
2065
+ background:var(--tile-background);
2066
+ border:0;
2067
+ border-left:3px solid var(--tile-pin-color);
2068
+ border-radius:0;
2069
+ transition:color .15s cubic-bezier(.4, 0, .2, 1) 0s,background-color .15s cubic-bezier(.4, 0, .2, 1) 0s;
2070
+ }
2071
+ .v-list-tile--clickable{
2072
+ cursor:pointer;
2073
+ --tile-text-color:var(--nav-color);
2074
+ --tile-text-active-color:var(--navActive-color, var(--nav-color));
2075
+ }
2076
+ .v-list-tile--clickable:focus,.v-list-tile--clickable:hover{
2077
+ --tile-background:var(--tile-active-background);
2078
+ --tile-text-color:var(--tile-text-active-color);
2079
+ }
2080
+ .v-list-tile--active{
2081
+ --tile-pin-color:var(--pin-color);
2082
+ --tile-text-color:var(--tile-text-active-color);
2083
+ --tile-background:var(--tile-active-background);
2084
+ }
2085
+ .v-list-tile__body{
2086
+ font-size:.8125rem;
2087
+ font-weight:500;
2088
+ line-height:1.5;
2089
+ }
2090
+ .v-list-tile__icon{
2091
+ min-width:2em;
2092
+ }
2093
+ .v-list-tile__icon--end{
2094
+ margin-left:auto;
2095
+ text-align:right;
2134
2096
  }
2135
- .v-tab__content{
2136
- position:relative;
2137
- z-index:2;
2097
+ .v-toolbar-edge{
2138
2098
  display:flex;
2099
+ flex:0 0;
2139
2100
  align-items:center;
2140
- line-height:1.2;
2141
- color:var(--tab-content-color);
2142
- text-align:center;
2143
- opacity:var(--tab-content-opacity);
2144
- transition:all .25s ease;
2101
+ align-self:stretch;
2145
2102
  }
2146
- .v-tab__icon{
2147
- margin-right:8px;
2148
- font-size:120%;
2103
+ .v-toolbar-edge--empty,.v-toolbar-edge:empty{
2104
+ display:none;
2149
2105
  }
2150
- .v-tab:hover{
2151
- --tab-content-color:var(--tab-content-focus-color);
2106
+ .v-toolbar-edge--start{
2107
+ margin-right:calc(var(--root-em)*.75);
2108
+ margin-left:calc(var(--root-em)*-1*.75);
2152
2109
  }
2153
- .v-tab--active{
2154
- --tab-content-color:rgba(0,0,0,.87);
2155
- pointer-events:none;
2156
- background:var(--tabs-color);
2157
- --tab-content-opacity:1;
2110
+ .v-toolbar-edge--end{
2111
+ padding-left:calc(var(--root-em)*.75);
2112
+ margin-right:calc(var(--root-em)*-1*.75);
2113
+ margin-left:auto;
2158
2114
  }
2159
- .v-tab--active:before{
2160
- transform:scaleX(1);
2115
+ .v-toolbar-menu{
2116
+ height:100%;
2117
+ margin:0;
2118
+ box-shadow:none;
2119
+ }
2120
+ .v-select__input{
2121
+ cursor:pointer;
2122
+ }
2123
+ .v-select__input__element{
2124
+ position:absolute;
2125
+ width:1px;
2126
+ height:1px;
2127
+ overflow:hidden;
2128
+ white-space:nowrap;
2129
+ clip:rect(0 0 0 0);
2130
+ clip-path:inset(100%);
2131
+ }
2132
+ .v-select__body{
2133
+ padding:.5em 0;
2134
+ }
2135
+ .v-select__selections{
2136
+ display:table;
2137
+ width:100%;
2138
+ table-layout:fixed;
2139
+ }
2140
+ .v-select__selections__inner{
2141
+ display:table-cell;
2142
+ overflow:hidden;
2143
+ text-overflow:ellipsis;
2144
+ vertical-align:middle;
2145
+ white-space:nowrap;
2146
+ }
2147
+ .v-select--multiple .v-select__selections{
2148
+ display:block;
2149
+ }
2150
+ .v-select--multiple .v-select__selections__inner{
2151
+ display:block;
2152
+ overflow:auto;
2153
+ white-space:unset;
2154
+ }
2155
+ .v-select--multiple .v-control-field__body{
2156
+ padding:.2em 0;
2157
+ }
2158
+ .v-select__placeholder{
2159
+ font-style:italic;
2160
+ color:var(--control-disabled-color);
2161
2161
  }
2162
2162
  @media screen and (width >= 320px){
2163
2163
  .v-data-table__controls__pagination{
2164
2164
  flex:0 0 50%;
2165
2165
  width:50%;
2166
2166
  }}
2167
- }.v-menu{
2168
- border-radius:2px;
2169
- box-shadow:var(--menu-shadow);
2170
- }.v-sheet-modal{
2171
- --v-sheet-modal-width:90vw;
2172
- --v-sheet-modal-max-width:none;
2173
- --v-sheet-background:var(--palette-foundation);
2174
- position:fixed;
2175
- top:0;
2176
- right:0;
2177
- bottom:0;
2178
- box-sizing:border-box;
2179
- display:flex;
2180
- flex-direction:column;
2181
- width:var(--v-sheet-modal-width);
2182
- max-width:var(--v-sheet-modal-max-width);
2183
- padding:0;
2184
- outline:0;
2185
- box-shadow:var(--dialog-shadow);
2186
- transition:transform var(--v-stack-transition-slowly);
2167
+ }.v-tooltip{
2168
+ --menu-shadow:var(--tooltip-shadow);
2169
+ --v-stack-slide-amount:10px;
2170
+ font-size:var(--tooltip-font-size);
2171
+ border-radius:var(--tooltip-radius);
2187
2172
  }
2188
2173
 
2189
- .v-sheet-modal__header{
2190
- position:relative;
2191
- z-index:1;
2192
- flex:0 0;
2193
- background-color:var(--v-sheet-background);
2174
+ .v-tooltip .v-menu__body{
2175
+ color:var(--tooltip-color) !important;
2176
+ background:var(--tooltip-background) !important;
2194
2177
  }
2195
2178
 
2196
- .v-sheet-modal__scroller{
2197
- flex:1 1;
2198
- -webkit-overflow-scrolling:touch;
2199
- height:100%;
2200
- overflow-y:auto;
2201
- background-color:var(--v-sheet-background);
2179
+ .v-tooltip__inner{
2180
+ display:inline-block;
2181
+ padding:var(--tooltip-padding);
2182
+ }.v-snackbar{
2183
+ font-size:14px;
2184
+ box-shadow:var(--snackbar-shadow);
2202
2185
  }
2203
2186
 
2204
- .v-sheet-modal--has-active-child{
2205
- transform:translateX(calc(-100vw + var(--v-sheet-modal-width)));
2187
+ .v-snackbar__inner{
2188
+ display:flex;
2189
+ align-items:center;
2190
+ justify-content:space-between;
2191
+ width:auto;
2192
+ min-width:288px;
2193
+ max-width:calc(100vw - 96px);
2194
+ padding:8px 4px 8px 16px;
2195
+ color:var(--text-color);
2196
+ background-color:var(--main-color);
2197
+ border-color:var(--border-color);
2198
+ border-radius:inherit;
2206
2199
  }
2207
2200
 
2208
- .v-sheet-modal-enter-active,.v-sheet-modal-leave-active{
2209
- transition:transform var(--v-stack-transition-slowly);
2201
+ .v-snackbar__body{
2202
+ flex:1 1 100%;
2203
+ word-break:break-all;
2210
2204
  }
2211
2205
 
2212
- .v-sheet-modal-enter-from,.v-sheet-modal-leave-to{
2213
- transform:translateX(var(--v-sheet-modal-width));
2206
+ .v-snackbar__actions{
2207
+ flex:0 0 auto;
2208
+ padding-left:20px;
2209
+ white-space:nowrap;
2210
+ }
2211
+
2212
+ .v-snackbar__close{
2213
+ margin:0;
2214
2214
  }.v-dialog{
2215
2215
  position:relative;
2216
2216
  display:inline-block;
@@ -2252,6 +2252,58 @@
2252
2252
 
2253
2253
  .v-dialog--dense .v-dialog__actions{
2254
2254
  padding-top:0;
2255
+ }.v-menu{
2256
+ border-radius:2px;
2257
+ box-shadow:var(--menu-shadow);
2258
+ }.v-sheet-modal{
2259
+ --v-sheet-modal-width:90vw;
2260
+ --v-sheet-modal-max-width:none;
2261
+ --v-sheet-background:var(--palette-foundation);
2262
+ position:fixed;
2263
+ top:0;
2264
+ right:0;
2265
+ bottom:0;
2266
+ box-sizing:border-box;
2267
+ display:flex;
2268
+ flex-direction:column;
2269
+ width:var(--v-sheet-modal-width);
2270
+ max-width:var(--v-sheet-modal-max-width);
2271
+ padding:0;
2272
+ outline:0;
2273
+ box-shadow:var(--dialog-shadow);
2274
+ transition:transform var(--v-stack-transition-slowly);
2275
+ }
2276
+
2277
+ .v-sheet-modal__header{
2278
+ position:relative;
2279
+ z-index:1;
2280
+ flex:0 0;
2281
+ background-color:var(--v-sheet-background);
2282
+ }
2283
+
2284
+ .v-sheet-modal__scroller{
2285
+ flex:1 1;
2286
+ -webkit-overflow-scrolling:touch;
2287
+ height:100%;
2288
+ overflow-y:auto;
2289
+ background-color:var(--v-sheet-background);
2290
+ }
2291
+
2292
+ .v-sheet-modal--has-active-child{
2293
+ transform:translateX(calc(-100vw + var(--v-sheet-modal-width)));
2294
+ }
2295
+
2296
+ .v-sheet-modal-enter-active,.v-sheet-modal-leave-active{
2297
+ transition:transform var(--v-stack-transition-slowly);
2298
+ }
2299
+
2300
+ .v-sheet-modal-enter-from,.v-sheet-modal-leave-to{
2301
+ transform:translateX(var(--v-sheet-modal-width));
2302
+ }
2303
+ @keyframes v-skelton-loader-bone-loading{
2304
+ to{
2305
+ transform:translateX(100%);
2306
+ }
2255
2307
  }@layer vui-normalize, vui-color-scheme, vue-disabled-reason, vue-loading, vue-app-layout, vui;
2256
2308
  @layer vui-normalize{
2257
2309
  /*!
@@ -2384,56 +2436,4 @@
2384
2436
  button{
2385
2437
  background-color:transparent;
2386
2438
  }
2387
- }.v-snackbar{
2388
- font-size:14px;
2389
- box-shadow:var(--snackbar-shadow);
2390
- }
2391
-
2392
- .v-snackbar__inner{
2393
- display:flex;
2394
- align-items:center;
2395
- justify-content:space-between;
2396
- width:auto;
2397
- min-width:288px;
2398
- max-width:calc(100vw - 96px);
2399
- padding:8px 4px 8px 16px;
2400
- color:var(--text-color);
2401
- background-color:var(--main-color);
2402
- border-color:var(--border-color);
2403
- border-radius:inherit;
2404
- }
2405
-
2406
- .v-snackbar__body{
2407
- flex:1 1 100%;
2408
- word-break:break-all;
2409
- }
2410
-
2411
- .v-snackbar__actions{
2412
- flex:0 0 auto;
2413
- padding-left:20px;
2414
- white-space:nowrap;
2415
- }
2416
-
2417
- .v-snackbar__close{
2418
- margin:0;
2419
- }.v-tooltip{
2420
- --menu-shadow:var(--tooltip-shadow);
2421
- --v-stack-slide-amount:10px;
2422
- font-size:var(--tooltip-font-size);
2423
- border-radius:var(--tooltip-radius);
2424
- }
2425
-
2426
- .v-tooltip .v-menu__body{
2427
- color:var(--tooltip-color) !important;
2428
- background:var(--tooltip-background) !important;
2429
- }
2430
-
2431
- .v-tooltip__inner{
2432
- display:inline-block;
2433
- padding:var(--tooltip-padding);
2434
- }
2435
- @keyframes v-skelton-loader-bone-loading{
2436
- to{
2437
- transform:translateX(100%);
2438
- }
2439
2439
  }