@omnia/runtime 8.0.320-dev → 8.0.322-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundles/omnia.fx.ux.vuetify.core_8769dc42-712d-4ce2-8d32-4b8604b92ae6.css +237 -236
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_admin_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_docs_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_editor_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_public_manifests.json +1 -1
- package/package.json +5 -5
|
@@ -120,6 +120,130 @@
|
|
|
120
120
|
}
|
|
121
121
|
|
|
122
122
|
|
|
123
|
+
.v-ripple__container {
|
|
124
|
+
color: inherit;
|
|
125
|
+
border-radius: inherit;
|
|
126
|
+
position: absolute;
|
|
127
|
+
width: 100%;
|
|
128
|
+
height: 100%;
|
|
129
|
+
left: 0;
|
|
130
|
+
top: 0;
|
|
131
|
+
overflow: hidden;
|
|
132
|
+
z-index: 0;
|
|
133
|
+
pointer-events: none;
|
|
134
|
+
contain: strict;
|
|
135
|
+
}
|
|
136
|
+
.v-ripple__animation {
|
|
137
|
+
color: inherit;
|
|
138
|
+
position: absolute;
|
|
139
|
+
top: 0;
|
|
140
|
+
left: 0;
|
|
141
|
+
border-radius: 50%;
|
|
142
|
+
background: currentColor;
|
|
143
|
+
opacity: 0;
|
|
144
|
+
pointer-events: none;
|
|
145
|
+
overflow: hidden;
|
|
146
|
+
will-change: transform, opacity;
|
|
147
|
+
}
|
|
148
|
+
.v-ripple__animation--enter {
|
|
149
|
+
transition: none;
|
|
150
|
+
opacity: 0;
|
|
151
|
+
}
|
|
152
|
+
.v-ripple__animation--in {
|
|
153
|
+
transition: transform 0.25s cubic-bezier(0, 0, 0.2, 1), opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
|
|
154
|
+
opacity: calc(0.25 * var(--v-theme-overlay-multiplier));
|
|
155
|
+
}
|
|
156
|
+
.v-ripple__animation--out {
|
|
157
|
+
transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
|
|
158
|
+
opacity: 0;
|
|
159
|
+
}
|
|
160
|
+
.v-tooltip > .v-overlay__content {
|
|
161
|
+
background: rgb(var(--v-theme-surface-variant));
|
|
162
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
163
|
+
border-radius: 4px;
|
|
164
|
+
font-size: 0.875rem;
|
|
165
|
+
line-height: 1.6;
|
|
166
|
+
display: inline-block;
|
|
167
|
+
padding: 5px 16px;
|
|
168
|
+
text-transform: initial;
|
|
169
|
+
width: auto;
|
|
170
|
+
opacity: 1;
|
|
171
|
+
pointer-events: none;
|
|
172
|
+
transition-property: opacity, transform;
|
|
173
|
+
overflow-wrap: break-word;
|
|
174
|
+
}
|
|
175
|
+
.v-tooltip > .v-overlay__content[class*=enter-active] {
|
|
176
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
177
|
+
transition-duration: 150ms;
|
|
178
|
+
}
|
|
179
|
+
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
|
180
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
181
|
+
transition-duration: 75ms;
|
|
182
|
+
}
|
|
183
|
+
.v-overlay-container {
|
|
184
|
+
contain: layout;
|
|
185
|
+
left: 0;
|
|
186
|
+
pointer-events: none;
|
|
187
|
+
position: absolute;
|
|
188
|
+
top: 0;
|
|
189
|
+
display: contents;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.v-overlay-scroll-blocked {
|
|
193
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
|
194
|
+
}
|
|
195
|
+
.v-overlay-scroll-blocked:not(html) {
|
|
196
|
+
overflow-y: hidden !important;
|
|
197
|
+
}
|
|
198
|
+
html.v-overlay-scroll-blocked {
|
|
199
|
+
position: fixed;
|
|
200
|
+
top: var(--v-body-scroll-y);
|
|
201
|
+
left: var(--v-body-scroll-x);
|
|
202
|
+
width: 100%;
|
|
203
|
+
height: 100%;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.v-overlay {
|
|
207
|
+
border-radius: inherit;
|
|
208
|
+
display: flex;
|
|
209
|
+
left: 0;
|
|
210
|
+
pointer-events: none;
|
|
211
|
+
position: fixed;
|
|
212
|
+
top: 0;
|
|
213
|
+
bottom: 0;
|
|
214
|
+
right: 0;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.v-overlay__content {
|
|
218
|
+
outline: none;
|
|
219
|
+
position: absolute;
|
|
220
|
+
pointer-events: auto;
|
|
221
|
+
contain: layout;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.v-overlay__scrim {
|
|
225
|
+
pointer-events: auto;
|
|
226
|
+
background: rgb(var(--v-theme-on-surface));
|
|
227
|
+
border-radius: inherit;
|
|
228
|
+
bottom: 0;
|
|
229
|
+
left: 0;
|
|
230
|
+
opacity: var(--v-overlay-opacity, 0.32);
|
|
231
|
+
position: fixed;
|
|
232
|
+
right: 0;
|
|
233
|
+
top: 0;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.v-overlay--absolute {
|
|
237
|
+
position: absolute;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.v-overlay--contained .v-overlay__scrim {
|
|
241
|
+
position: absolute;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.v-overlay--scroll-blocked {
|
|
245
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
|
246
|
+
}
|
|
123
247
|
.v-badge {
|
|
124
248
|
display: inline-block;
|
|
125
249
|
line-height: 1;
|
|
@@ -663,43 +787,6 @@
|
|
|
663
787
|
.v-chip--label {
|
|
664
788
|
border-radius: 4px;
|
|
665
789
|
}
|
|
666
|
-
.v-ripple__container {
|
|
667
|
-
color: inherit;
|
|
668
|
-
border-radius: inherit;
|
|
669
|
-
position: absolute;
|
|
670
|
-
width: 100%;
|
|
671
|
-
height: 100%;
|
|
672
|
-
left: 0;
|
|
673
|
-
top: 0;
|
|
674
|
-
overflow: hidden;
|
|
675
|
-
z-index: 0;
|
|
676
|
-
pointer-events: none;
|
|
677
|
-
contain: strict;
|
|
678
|
-
}
|
|
679
|
-
.v-ripple__animation {
|
|
680
|
-
color: inherit;
|
|
681
|
-
position: absolute;
|
|
682
|
-
top: 0;
|
|
683
|
-
left: 0;
|
|
684
|
-
border-radius: 50%;
|
|
685
|
-
background: currentColor;
|
|
686
|
-
opacity: 0;
|
|
687
|
-
pointer-events: none;
|
|
688
|
-
overflow: hidden;
|
|
689
|
-
will-change: transform, opacity;
|
|
690
|
-
}
|
|
691
|
-
.v-ripple__animation--enter {
|
|
692
|
-
transition: none;
|
|
693
|
-
opacity: 0;
|
|
694
|
-
}
|
|
695
|
-
.v-ripple__animation--in {
|
|
696
|
-
transition: transform 0.25s cubic-bezier(0, 0, 0.2, 1), opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
|
|
697
|
-
opacity: calc(0.25 * var(--v-theme-overlay-multiplier));
|
|
698
|
-
}
|
|
699
|
-
.v-ripple__animation--out {
|
|
700
|
-
transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
|
|
701
|
-
opacity: 0;
|
|
702
|
-
}
|
|
703
790
|
.v-chip-group {
|
|
704
791
|
display: flex;
|
|
705
792
|
max-width: 100%;
|
|
@@ -2027,70 +2114,6 @@
|
|
|
2027
2114
|
.v-menu > .v-overlay__content > .v-list {
|
|
2028
2115
|
box-shadow: 0px 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
2029
2116
|
}
|
|
2030
|
-
.v-overlay-container {
|
|
2031
|
-
contain: layout;
|
|
2032
|
-
left: 0;
|
|
2033
|
-
pointer-events: none;
|
|
2034
|
-
position: absolute;
|
|
2035
|
-
top: 0;
|
|
2036
|
-
display: contents;
|
|
2037
|
-
}
|
|
2038
|
-
|
|
2039
|
-
.v-overlay-scroll-blocked {
|
|
2040
|
-
padding-inline-end: var(--v-scrollbar-offset);
|
|
2041
|
-
}
|
|
2042
|
-
.v-overlay-scroll-blocked:not(html) {
|
|
2043
|
-
overflow-y: hidden !important;
|
|
2044
|
-
}
|
|
2045
|
-
html.v-overlay-scroll-blocked {
|
|
2046
|
-
position: fixed;
|
|
2047
|
-
top: var(--v-body-scroll-y);
|
|
2048
|
-
left: var(--v-body-scroll-x);
|
|
2049
|
-
width: 100%;
|
|
2050
|
-
height: 100%;
|
|
2051
|
-
}
|
|
2052
|
-
|
|
2053
|
-
.v-overlay {
|
|
2054
|
-
border-radius: inherit;
|
|
2055
|
-
display: flex;
|
|
2056
|
-
left: 0;
|
|
2057
|
-
pointer-events: none;
|
|
2058
|
-
position: fixed;
|
|
2059
|
-
top: 0;
|
|
2060
|
-
bottom: 0;
|
|
2061
|
-
right: 0;
|
|
2062
|
-
}
|
|
2063
|
-
|
|
2064
|
-
.v-overlay__content {
|
|
2065
|
-
outline: none;
|
|
2066
|
-
position: absolute;
|
|
2067
|
-
pointer-events: auto;
|
|
2068
|
-
contain: layout;
|
|
2069
|
-
}
|
|
2070
|
-
|
|
2071
|
-
.v-overlay__scrim {
|
|
2072
|
-
pointer-events: auto;
|
|
2073
|
-
background: rgb(var(--v-theme-on-surface));
|
|
2074
|
-
border-radius: inherit;
|
|
2075
|
-
bottom: 0;
|
|
2076
|
-
left: 0;
|
|
2077
|
-
opacity: var(--v-overlay-opacity, 0.32);
|
|
2078
|
-
position: fixed;
|
|
2079
|
-
right: 0;
|
|
2080
|
-
top: 0;
|
|
2081
|
-
}
|
|
2082
|
-
|
|
2083
|
-
.v-overlay--absolute {
|
|
2084
|
-
position: absolute;
|
|
2085
|
-
}
|
|
2086
|
-
|
|
2087
|
-
.v-overlay--contained .v-overlay__scrim {
|
|
2088
|
-
position: absolute;
|
|
2089
|
-
}
|
|
2090
|
-
|
|
2091
|
-
.v-overlay--scroll-blocked {
|
|
2092
|
-
padding-inline-end: var(--v-scrollbar-offset);
|
|
2093
|
-
}
|
|
2094
2117
|
.v-speed-dial__content {
|
|
2095
2118
|
gap: 8px;
|
|
2096
2119
|
}
|
|
@@ -2133,29 +2156,6 @@ html.v-overlay-scroll-blocked {
|
|
|
2133
2156
|
.v-speed-dial__content > *:nth-child(10) {
|
|
2134
2157
|
transition-delay: 0.45s;
|
|
2135
2158
|
}
|
|
2136
|
-
.v-tooltip > .v-overlay__content {
|
|
2137
|
-
background: rgb(var(--v-theme-surface-variant));
|
|
2138
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
|
2139
|
-
border-radius: 4px;
|
|
2140
|
-
font-size: 0.875rem;
|
|
2141
|
-
line-height: 1.6;
|
|
2142
|
-
display: inline-block;
|
|
2143
|
-
padding: 5px 16px;
|
|
2144
|
-
text-transform: initial;
|
|
2145
|
-
width: auto;
|
|
2146
|
-
opacity: 1;
|
|
2147
|
-
pointer-events: none;
|
|
2148
|
-
transition-property: opacity, transform;
|
|
2149
|
-
overflow-wrap: break-word;
|
|
2150
|
-
}
|
|
2151
|
-
.v-tooltip > .v-overlay__content[class*=enter-active] {
|
|
2152
|
-
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
2153
|
-
transition-duration: 150ms;
|
|
2154
|
-
}
|
|
2155
|
-
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
|
2156
|
-
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
2157
|
-
transition-duration: 75ms;
|
|
2158
|
-
}
|
|
2159
2159
|
.v-fab {
|
|
2160
2160
|
align-items: center;
|
|
2161
2161
|
display: inline-flex;
|
|
@@ -22228,6 +22228,119 @@ html.overflow-y-hidden {
|
|
|
22228
22228
|
float: left !important;
|
|
22229
22229
|
}
|
|
22230
22230
|
}
|
|
22231
|
+
.v-selection-control {
|
|
22232
|
+
align-items: center;
|
|
22233
|
+
contain: layout;
|
|
22234
|
+
display: flex;
|
|
22235
|
+
flex: 1 0;
|
|
22236
|
+
grid-area: control;
|
|
22237
|
+
position: relative;
|
|
22238
|
+
user-select: none;
|
|
22239
|
+
}
|
|
22240
|
+
.v-selection-control .v-label {
|
|
22241
|
+
white-space: normal;
|
|
22242
|
+
word-break: break-word;
|
|
22243
|
+
height: 100%;
|
|
22244
|
+
}
|
|
22245
|
+
.v-selection-control--disabled {
|
|
22246
|
+
opacity: var(--v-disabled-opacity);
|
|
22247
|
+
pointer-events: none;
|
|
22248
|
+
}
|
|
22249
|
+
.v-selection-control--error .v-label, .v-selection-control--disabled .v-label {
|
|
22250
|
+
opacity: 1;
|
|
22251
|
+
}
|
|
22252
|
+
.v-selection-control--error:not(.v-selection-control--disabled) .v-label {
|
|
22253
|
+
color: rgb(var(--v-theme-error));
|
|
22254
|
+
}
|
|
22255
|
+
.v-selection-control--inline {
|
|
22256
|
+
display: inline-flex;
|
|
22257
|
+
flex: 0 0 auto;
|
|
22258
|
+
min-width: 0;
|
|
22259
|
+
max-width: 100%;
|
|
22260
|
+
}
|
|
22261
|
+
.v-selection-control--inline .v-label {
|
|
22262
|
+
width: auto;
|
|
22263
|
+
}
|
|
22264
|
+
.v-selection-control--density-default {
|
|
22265
|
+
--v-selection-control-size: 40px;
|
|
22266
|
+
}
|
|
22267
|
+
|
|
22268
|
+
.v-selection-control--density-comfortable {
|
|
22269
|
+
--v-selection-control-size: 36px;
|
|
22270
|
+
}
|
|
22271
|
+
|
|
22272
|
+
.v-selection-control--density-compact {
|
|
22273
|
+
--v-selection-control-size: 28px;
|
|
22274
|
+
}
|
|
22275
|
+
|
|
22276
|
+
.v-selection-control__wrapper {
|
|
22277
|
+
width: var(--v-selection-control-size);
|
|
22278
|
+
height: var(--v-selection-control-size);
|
|
22279
|
+
display: inline-flex;
|
|
22280
|
+
align-items: center;
|
|
22281
|
+
position: relative;
|
|
22282
|
+
justify-content: center;
|
|
22283
|
+
flex: none;
|
|
22284
|
+
}
|
|
22285
|
+
|
|
22286
|
+
.v-selection-control__input {
|
|
22287
|
+
width: var(--v-selection-control-size);
|
|
22288
|
+
height: var(--v-selection-control-size);
|
|
22289
|
+
align-items: center;
|
|
22290
|
+
display: flex;
|
|
22291
|
+
flex: none;
|
|
22292
|
+
justify-content: center;
|
|
22293
|
+
position: relative;
|
|
22294
|
+
border-radius: 50%;
|
|
22295
|
+
}
|
|
22296
|
+
.v-selection-control__input input {
|
|
22297
|
+
cursor: pointer;
|
|
22298
|
+
position: absolute;
|
|
22299
|
+
left: 0;
|
|
22300
|
+
top: 0;
|
|
22301
|
+
width: 100%;
|
|
22302
|
+
height: 100%;
|
|
22303
|
+
opacity: 0;
|
|
22304
|
+
}
|
|
22305
|
+
.v-selection-control__input::before {
|
|
22306
|
+
border-radius: 100%;
|
|
22307
|
+
background-color: currentColor;
|
|
22308
|
+
opacity: 0;
|
|
22309
|
+
pointer-events: none;
|
|
22310
|
+
}
|
|
22311
|
+
.v-selection-control__input::before {
|
|
22312
|
+
content: "";
|
|
22313
|
+
position: absolute;
|
|
22314
|
+
top: 0;
|
|
22315
|
+
left: 0;
|
|
22316
|
+
width: 100%;
|
|
22317
|
+
height: 100%;
|
|
22318
|
+
}
|
|
22319
|
+
.v-selection-control__input:hover::before {
|
|
22320
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
22321
|
+
}
|
|
22322
|
+
.v-selection-control__input > .v-icon {
|
|
22323
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
22324
|
+
}
|
|
22325
|
+
.v-selection-control--disabled .v-selection-control__input > .v-icon, .v-selection-control--dirty .v-selection-control__input > .v-icon, .v-selection-control--error .v-selection-control__input > .v-icon {
|
|
22326
|
+
opacity: 1;
|
|
22327
|
+
}
|
|
22328
|
+
.v-selection-control--error:not(.v-selection-control--disabled) .v-selection-control__input > .v-icon {
|
|
22329
|
+
color: rgb(var(--v-theme-error));
|
|
22330
|
+
}
|
|
22331
|
+
.v-selection-control--focus-visible .v-selection-control__input::before {
|
|
22332
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
22333
|
+
}
|
|
22334
|
+
.v-selection-control-group {
|
|
22335
|
+
grid-area: control;
|
|
22336
|
+
display: flex;
|
|
22337
|
+
flex-direction: column;
|
|
22338
|
+
}
|
|
22339
|
+
.v-selection-control-group--inline {
|
|
22340
|
+
flex-direction: row;
|
|
22341
|
+
flex-wrap: wrap;
|
|
22342
|
+
}
|
|
22343
|
+
|
|
22231
22344
|
.v-data-table {
|
|
22232
22345
|
width: 100%;
|
|
22233
22346
|
}
|
|
@@ -25514,115 +25627,3 @@ html.overflow-y-hidden {
|
|
|
25514
25627
|
height: 100%;
|
|
25515
25628
|
}
|
|
25516
25629
|
|
|
25517
|
-
.v-selection-control {
|
|
25518
|
-
align-items: center;
|
|
25519
|
-
contain: layout;
|
|
25520
|
-
display: flex;
|
|
25521
|
-
flex: 1 0;
|
|
25522
|
-
grid-area: control;
|
|
25523
|
-
position: relative;
|
|
25524
|
-
user-select: none;
|
|
25525
|
-
}
|
|
25526
|
-
.v-selection-control .v-label {
|
|
25527
|
-
white-space: normal;
|
|
25528
|
-
word-break: break-word;
|
|
25529
|
-
height: 100%;
|
|
25530
|
-
}
|
|
25531
|
-
.v-selection-control--disabled {
|
|
25532
|
-
opacity: var(--v-disabled-opacity);
|
|
25533
|
-
pointer-events: none;
|
|
25534
|
-
}
|
|
25535
|
-
.v-selection-control--error .v-label, .v-selection-control--disabled .v-label {
|
|
25536
|
-
opacity: 1;
|
|
25537
|
-
}
|
|
25538
|
-
.v-selection-control--error:not(.v-selection-control--disabled) .v-label {
|
|
25539
|
-
color: rgb(var(--v-theme-error));
|
|
25540
|
-
}
|
|
25541
|
-
.v-selection-control--inline {
|
|
25542
|
-
display: inline-flex;
|
|
25543
|
-
flex: 0 0 auto;
|
|
25544
|
-
min-width: 0;
|
|
25545
|
-
max-width: 100%;
|
|
25546
|
-
}
|
|
25547
|
-
.v-selection-control--inline .v-label {
|
|
25548
|
-
width: auto;
|
|
25549
|
-
}
|
|
25550
|
-
.v-selection-control--density-default {
|
|
25551
|
-
--v-selection-control-size: 40px;
|
|
25552
|
-
}
|
|
25553
|
-
|
|
25554
|
-
.v-selection-control--density-comfortable {
|
|
25555
|
-
--v-selection-control-size: 36px;
|
|
25556
|
-
}
|
|
25557
|
-
|
|
25558
|
-
.v-selection-control--density-compact {
|
|
25559
|
-
--v-selection-control-size: 28px;
|
|
25560
|
-
}
|
|
25561
|
-
|
|
25562
|
-
.v-selection-control__wrapper {
|
|
25563
|
-
width: var(--v-selection-control-size);
|
|
25564
|
-
height: var(--v-selection-control-size);
|
|
25565
|
-
display: inline-flex;
|
|
25566
|
-
align-items: center;
|
|
25567
|
-
position: relative;
|
|
25568
|
-
justify-content: center;
|
|
25569
|
-
flex: none;
|
|
25570
|
-
}
|
|
25571
|
-
|
|
25572
|
-
.v-selection-control__input {
|
|
25573
|
-
width: var(--v-selection-control-size);
|
|
25574
|
-
height: var(--v-selection-control-size);
|
|
25575
|
-
align-items: center;
|
|
25576
|
-
display: flex;
|
|
25577
|
-
flex: none;
|
|
25578
|
-
justify-content: center;
|
|
25579
|
-
position: relative;
|
|
25580
|
-
border-radius: 50%;
|
|
25581
|
-
}
|
|
25582
|
-
.v-selection-control__input input {
|
|
25583
|
-
cursor: pointer;
|
|
25584
|
-
position: absolute;
|
|
25585
|
-
left: 0;
|
|
25586
|
-
top: 0;
|
|
25587
|
-
width: 100%;
|
|
25588
|
-
height: 100%;
|
|
25589
|
-
opacity: 0;
|
|
25590
|
-
}
|
|
25591
|
-
.v-selection-control__input::before {
|
|
25592
|
-
border-radius: 100%;
|
|
25593
|
-
background-color: currentColor;
|
|
25594
|
-
opacity: 0;
|
|
25595
|
-
pointer-events: none;
|
|
25596
|
-
}
|
|
25597
|
-
.v-selection-control__input::before {
|
|
25598
|
-
content: "";
|
|
25599
|
-
position: absolute;
|
|
25600
|
-
top: 0;
|
|
25601
|
-
left: 0;
|
|
25602
|
-
width: 100%;
|
|
25603
|
-
height: 100%;
|
|
25604
|
-
}
|
|
25605
|
-
.v-selection-control__input:hover::before {
|
|
25606
|
-
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
25607
|
-
}
|
|
25608
|
-
.v-selection-control__input > .v-icon {
|
|
25609
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
25610
|
-
}
|
|
25611
|
-
.v-selection-control--disabled .v-selection-control__input > .v-icon, .v-selection-control--dirty .v-selection-control__input > .v-icon, .v-selection-control--error .v-selection-control__input > .v-icon {
|
|
25612
|
-
opacity: 1;
|
|
25613
|
-
}
|
|
25614
|
-
.v-selection-control--error:not(.v-selection-control--disabled) .v-selection-control__input > .v-icon {
|
|
25615
|
-
color: rgb(var(--v-theme-error));
|
|
25616
|
-
}
|
|
25617
|
-
.v-selection-control--focus-visible .v-selection-control__input::before {
|
|
25618
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
25619
|
-
}
|
|
25620
|
-
.v-selection-control-group {
|
|
25621
|
-
grid-area: control;
|
|
25622
|
-
display: flex;
|
|
25623
|
-
flex-direction: column;
|
|
25624
|
-
}
|
|
25625
|
-
.v-selection-control-group--inline {
|
|
25626
|
-
flex-direction: row;
|
|
25627
|
-
flex-wrap: wrap;
|
|
25628
|
-
}
|