@omnia/runtime 8.0.30-vnext → 8.0.32-vnext
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.autocomplete_5d79340e-c1ce-4006-b88b-ad101d2e031e.css +24 -13
- package/dist/bundles/omnia.fx.ux.richtexteditor.component_7474e750-42e3-47b4-821b-bafdb1cb4ee0.css +26 -0
- package/dist/bundles/omnia.fx.ux.vuetify.chip_6c32c2f0-cce6-4c71-b376-9fb68d0d508e.css +9 -0
- package/dist/bundles/omnia.fx.ux.vuetify.combobox_0edad567-65c0-433f-a871-a59e460d70f0.css +16 -10
- package/dist/bundles/omnia.fx.ux.vuetify.common_798d6494-70cc-47eb-9054-30b047beab19.css +24 -1
- package/dist/bundles/omnia.fx.ux.vuetify.datatable_188aee53-149a-4bc0-9039-59ffd918df2c.css +1 -0
- package/dist/bundles/omnia.fx.ux.vuetify.rating_98f2c51f-7725-4a0e-91f5-f2631149737c.css +0 -4
- package/dist/bundles/omnia.fx.ux.vuetify.select_6d5f3edc-0fc0-4765-804b-b6583381f25d.css +15 -9
- package/dist/bundles/omnia.fx.ux.vuetify.shared_8769dc42-712d-4ce2-8d32-4b8604b92ae6.css +403 -152
- package/dist/bundles/omnia.fx.ux.vuetify.slider_969bbd01-9190-41fe-8af8-60cf35045f84.css +5 -4
- package/dist/bundles/omnia.fx.ux.vuetify.switch_81d8f551-1b9f-4f75-90c3-2fe5f25e4015.css +3 -3
- package/dist/bundles/omnia.fx.ux.vuetify.textinput_181ff5d3-896f-4471-b516-3a347fe9e35d.css +9 -1
- package/dist/localizations/bb000000-0000-bbbb-0000-0000000000bb_localized.loc.public.en-us.json +1 -0
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_admin_manifests.json +1 -0
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_docs_manifests.json +1 -0
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_editor_manifests.json +1 -0
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_public_manifests.json +1 -0
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_servicemanifest.json +1 -1
- package/package.json +5 -5
- package/dist/localizations/bb000000-0000-bbbb-0000-0000000000bb_localized.loc.en-us.json +0 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_manifests.json +0 -1
|
@@ -2292,10 +2292,8 @@
|
|
|
2292
2292
|
.v-img__gradient,
|
|
2293
2293
|
.v-img__placeholder,
|
|
2294
2294
|
.v-img__error {
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
top: 0;
|
|
2298
|
-
left: 0;
|
|
2295
|
+
grid-row-start: 1;
|
|
2296
|
+
grid-column-start: 1;
|
|
2299
2297
|
width: 100%;
|
|
2300
2298
|
height: 100%;
|
|
2301
2299
|
}
|
|
@@ -2314,28 +2312,37 @@
|
|
|
2314
2312
|
background-repeat: no-repeat;
|
|
2315
2313
|
}
|
|
2316
2314
|
.v-responsive {
|
|
2317
|
-
display:
|
|
2315
|
+
display: grid;
|
|
2316
|
+
grid-template-rows: minmax(100%, 1fr);
|
|
2317
|
+
grid-template-columns: 1fr;
|
|
2318
2318
|
flex: 1 0 auto;
|
|
2319
2319
|
max-height: 100%;
|
|
2320
2320
|
max-width: 100%;
|
|
2321
2321
|
overflow: hidden;
|
|
2322
2322
|
position: relative;
|
|
2323
2323
|
}
|
|
2324
|
+
.v-responsive--inline {
|
|
2325
|
+
display: inline-grid;
|
|
2326
|
+
flex: 0 0 auto;
|
|
2327
|
+
}
|
|
2324
2328
|
|
|
2325
2329
|
.v-responsive__content {
|
|
2326
2330
|
flex: 1 0 0px;
|
|
2327
2331
|
max-width: 100%;
|
|
2328
2332
|
}
|
|
2329
2333
|
|
|
2330
|
-
.v-responsive__sizer ~ .v-responsive__content {
|
|
2331
|
-
margin-inline-start: -100%;
|
|
2332
|
-
}
|
|
2333
|
-
|
|
2334
2334
|
.v-responsive__sizer {
|
|
2335
2335
|
flex: 1 0 0px;
|
|
2336
2336
|
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
2337
2337
|
pointer-events: none;
|
|
2338
2338
|
}
|
|
2339
|
+
|
|
2340
|
+
.v-responsive__sizer,
|
|
2341
|
+
.v-responsive__content {
|
|
2342
|
+
position: relative;
|
|
2343
|
+
grid-row-start: 1;
|
|
2344
|
+
grid-column-start: 1;
|
|
2345
|
+
}
|
|
2339
2346
|
.v-item-group {
|
|
2340
2347
|
flex: 0 1 auto;
|
|
2341
2348
|
max-width: 100%;
|
|
@@ -2377,6 +2384,12 @@
|
|
|
2377
2384
|
.v-sheet--fixed {
|
|
2378
2385
|
position: fixed;
|
|
2379
2386
|
}
|
|
2387
|
+
.v-sheet--relative {
|
|
2388
|
+
position: relative;
|
|
2389
|
+
}
|
|
2390
|
+
.v-sheet--sticky {
|
|
2391
|
+
position: sticky;
|
|
2392
|
+
}
|
|
2380
2393
|
.v-sheet--rounded {
|
|
2381
2394
|
border-radius: 4px;
|
|
2382
2395
|
}
|
|
@@ -2490,24 +2503,24 @@ html.v-overlay-scroll-blocked {
|
|
|
2490
2503
|
flex: 1 1 auto;
|
|
2491
2504
|
font-size: 1rem;
|
|
2492
2505
|
font-weight: 400;
|
|
2493
|
-
line-height: 1.
|
|
2506
|
+
line-height: 1.625;
|
|
2494
2507
|
}
|
|
2495
2508
|
.v-input--disabled {
|
|
2496
2509
|
pointer-events: none;
|
|
2497
2510
|
}
|
|
2498
2511
|
.v-input--density-default {
|
|
2499
2512
|
--v-input-control-height: 56px;
|
|
2500
|
-
--v-input-padding-top:
|
|
2513
|
+
--v-input-padding-top: 15px;
|
|
2501
2514
|
}
|
|
2502
2515
|
|
|
2503
2516
|
.v-input--density-comfortable {
|
|
2504
2517
|
--v-input-control-height: 48px;
|
|
2505
|
-
--v-input-padding-top:
|
|
2518
|
+
--v-input-padding-top: 11px;
|
|
2506
2519
|
}
|
|
2507
2520
|
|
|
2508
2521
|
.v-input--density-compact {
|
|
2509
2522
|
--v-input-control-height: 40px;
|
|
2510
|
-
--v-input-padding-top:
|
|
2523
|
+
--v-input-padding-top: 7px;
|
|
2511
2524
|
}
|
|
2512
2525
|
|
|
2513
2526
|
.v-input--vertical {
|
|
@@ -2583,8 +2596,14 @@ html.v-overlay-scroll-blocked {
|
|
|
2583
2596
|
.v-input__prepend,
|
|
2584
2597
|
.v-input__append {
|
|
2585
2598
|
display: flex;
|
|
2599
|
+
align-items: flex-start;
|
|
2586
2600
|
padding-top: var(--v-input-padding-top);
|
|
2587
2601
|
}
|
|
2602
|
+
.v-input--center-affix .v-input__prepend,
|
|
2603
|
+
.v-input--center-affix .v-input__append {
|
|
2604
|
+
align-items: center;
|
|
2605
|
+
padding-top: 0;
|
|
2606
|
+
}
|
|
2588
2607
|
|
|
2589
2608
|
.v-input__prepend {
|
|
2590
2609
|
grid-area: prepend;
|
|
@@ -2747,7 +2766,9 @@ html.v-overlay-scroll-blocked {
|
|
|
2747
2766
|
--v-field-padding-start: 16px;
|
|
2748
2767
|
--v-field-padding-end: 16px;
|
|
2749
2768
|
--v-field-padding-top: 10px;
|
|
2750
|
-
--v-field-padding-bottom:
|
|
2769
|
+
--v-field-padding-bottom: 5px;
|
|
2770
|
+
--v-field-input-padding-top: calc(var(--v-field-padding-top, 10px) + var(--v-input-padding-top, 0));
|
|
2771
|
+
--v-field-input-padding-bottom: var(--v-field-padding-bottom, 5px);
|
|
2751
2772
|
}
|
|
2752
2773
|
.v-field--disabled {
|
|
2753
2774
|
opacity: var(--v-disabled-opacity);
|
|
@@ -2762,44 +2783,53 @@ html.v-overlay-scroll-blocked {
|
|
|
2762
2783
|
.v-field--appended {
|
|
2763
2784
|
padding-inline-end: 12px;
|
|
2764
2785
|
}
|
|
2765
|
-
.v-field--variant-solo {
|
|
2786
|
+
.v-field--variant-solo, .v-field--variant-solo-filled {
|
|
2787
|
+
background: rgb(var(--v-theme-surface));
|
|
2788
|
+
border-color: transparent;
|
|
2789
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
2790
|
+
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
2791
|
+
}
|
|
2792
|
+
.v-field--variant-solo-inverted {
|
|
2766
2793
|
background: rgb(var(--v-theme-surface));
|
|
2767
2794
|
border-color: transparent;
|
|
2768
2795
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
2769
2796
|
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
2770
2797
|
}
|
|
2798
|
+
.v-field--variant-solo-inverted.v-field--focused {
|
|
2799
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
2800
|
+
}
|
|
2771
2801
|
.v-field--variant-filled {
|
|
2772
2802
|
border-bottom-left-radius: 0;
|
|
2773
2803
|
border-bottom-right-radius: 0;
|
|
2774
2804
|
}
|
|
2775
|
-
.v-input--density-default .v-field--variant-solo, .v-input--density-default .v-field--variant-filled {
|
|
2805
|
+
.v-input--density-default .v-field--variant-solo, .v-input--density-default .v-field--variant-solo-inverted, .v-input--density-default .v-field--variant-solo-filled, .v-input--density-default .v-field--variant-filled {
|
|
2776
2806
|
--v-input-control-height: 56px;
|
|
2777
|
-
--v-field-padding-bottom:
|
|
2807
|
+
--v-field-padding-bottom: 5px;
|
|
2778
2808
|
}
|
|
2779
2809
|
|
|
2780
|
-
.v-input--density-comfortable .v-field--variant-solo, .v-input--density-comfortable .v-field--variant-filled {
|
|
2810
|
+
.v-input--density-comfortable .v-field--variant-solo, .v-input--density-comfortable .v-field--variant-solo-inverted, .v-input--density-comfortable .v-field--variant-solo-filled, .v-input--density-comfortable .v-field--variant-filled {
|
|
2781
2811
|
--v-input-control-height: 48px;
|
|
2782
|
-
--v-field-padding-bottom:
|
|
2812
|
+
--v-field-padding-bottom: 1px;
|
|
2783
2813
|
}
|
|
2784
2814
|
|
|
2785
|
-
.v-input--density-compact .v-field--variant-solo, .v-input--density-compact .v-field--variant-filled {
|
|
2815
|
+
.v-input--density-compact .v-field--variant-solo, .v-input--density-compact .v-field--variant-solo-inverted, .v-input--density-compact .v-field--variant-solo-filled, .v-input--density-compact .v-field--variant-filled {
|
|
2786
2816
|
--v-input-control-height: 40px;
|
|
2787
|
-
--v-field-padding-bottom:
|
|
2817
|
+
--v-field-padding-bottom: 0px;
|
|
2788
2818
|
}
|
|
2789
2819
|
|
|
2790
2820
|
.v-field--variant-outlined, .v-field--single-line, .v-field--no-label {
|
|
2791
2821
|
--v-field-padding-top: 0px;
|
|
2792
2822
|
}
|
|
2793
2823
|
.v-input--density-default .v-field--variant-outlined, .v-input--density-default .v-field--single-line, .v-input--density-default .v-field--no-label {
|
|
2794
|
-
--v-field-padding-bottom:
|
|
2824
|
+
--v-field-padding-bottom: 15px;
|
|
2795
2825
|
}
|
|
2796
2826
|
|
|
2797
2827
|
.v-input--density-comfortable .v-field--variant-outlined, .v-input--density-comfortable .v-field--single-line, .v-input--density-comfortable .v-field--no-label {
|
|
2798
|
-
--v-field-padding-bottom:
|
|
2828
|
+
--v-field-padding-bottom: 11px;
|
|
2799
2829
|
}
|
|
2800
2830
|
|
|
2801
2831
|
.v-input--density-compact .v-field--variant-outlined, .v-input--density-compact .v-field--single-line, .v-input--density-compact .v-field--no-label {
|
|
2802
|
-
--v-field-padding-bottom:
|
|
2832
|
+
--v-field-padding-bottom: 7px;
|
|
2803
2833
|
}
|
|
2804
2834
|
|
|
2805
2835
|
.v-field--variant-plain, .v-field--variant-underlined {
|
|
@@ -2809,21 +2839,29 @@ html.v-overlay-scroll-blocked {
|
|
|
2809
2839
|
.v-field--variant-plain.v-field, .v-field--variant-underlined.v-field {
|
|
2810
2840
|
--v-field-padding-start: 0px;
|
|
2811
2841
|
--v-field-padding-end: 0px;
|
|
2812
|
-
--v-field-padding-top: 6px;
|
|
2813
|
-
--v-field-padding-bottom: 2px;
|
|
2842
|
+
--v-field-padding-top: var(--v-field-padding-top--plain-underlined, 6px);
|
|
2814
2843
|
}
|
|
2815
2844
|
.v-input--density-default .v-field--variant-plain, .v-input--density-default .v-field--variant-underlined {
|
|
2816
2845
|
--v-input-control-height: 48px;
|
|
2846
|
+
--v-field-padding-bottom: 5px;
|
|
2817
2847
|
}
|
|
2818
2848
|
|
|
2819
2849
|
.v-input--density-comfortable .v-field--variant-plain, .v-input--density-comfortable .v-field--variant-underlined {
|
|
2820
2850
|
--v-input-control-height: 40px;
|
|
2851
|
+
--v-field-padding-bottom: 1px;
|
|
2821
2852
|
}
|
|
2822
2853
|
|
|
2823
2854
|
.v-input--density-compact .v-field--variant-plain, .v-input--density-compact .v-field--variant-underlined {
|
|
2824
2855
|
--v-input-control-height: 32px;
|
|
2856
|
+
--v-field-padding-bottom: 0px;
|
|
2825
2857
|
}
|
|
2826
2858
|
|
|
2859
|
+
.v-field--flat {
|
|
2860
|
+
box-shadow: none;
|
|
2861
|
+
}
|
|
2862
|
+
.v-field--rounded {
|
|
2863
|
+
border-radius: 9999px;
|
|
2864
|
+
}
|
|
2827
2865
|
.v-field.v-field--prepended {
|
|
2828
2866
|
--v-field-padding-start: 6px;
|
|
2829
2867
|
}
|
|
@@ -2839,12 +2877,13 @@ html.v-overlay-scroll-blocked {
|
|
|
2839
2877
|
flex-wrap: wrap;
|
|
2840
2878
|
letter-spacing: 0.009375em;
|
|
2841
2879
|
opacity: var(--v-high-emphasis-opacity);
|
|
2842
|
-
min-height: var(--v-input-
|
|
2880
|
+
min-height: var(--v-field-input-min-height);
|
|
2843
2881
|
padding-inline-start: var(--v-field-padding-start);
|
|
2844
2882
|
padding-inline-end: var(--v-field-padding-end);
|
|
2845
|
-
padding-top:
|
|
2846
|
-
padding-bottom: var(--v-field-padding-bottom
|
|
2883
|
+
padding-top: var(--v-field-input-padding-top);
|
|
2884
|
+
padding-bottom: var(--v-field-input-padding-bottom);
|
|
2847
2885
|
width: 100%;
|
|
2886
|
+
--v-field-input-min-height: max(var(--v-input-control-height, 56px), 1.625rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
|
|
2848
2887
|
}
|
|
2849
2888
|
.v-field__input input {
|
|
2850
2889
|
letter-spacing: inherit;
|
|
@@ -2887,13 +2926,30 @@ textarea.v-field__input::placeholder {
|
|
|
2887
2926
|
padding-inline-start: var(--v-field-padding-after);
|
|
2888
2927
|
}
|
|
2889
2928
|
|
|
2890
|
-
.v-field__prepend-inner,
|
|
2891
2929
|
.v-field__append-inner,
|
|
2892
|
-
.v-field__clearable
|
|
2893
|
-
|
|
2930
|
+
.v-field__clearable,
|
|
2931
|
+
.v-field__prepend-inner {
|
|
2894
2932
|
display: flex;
|
|
2933
|
+
align-items: flex-start;
|
|
2895
2934
|
padding-top: var(--v-input-padding-top, 10px);
|
|
2896
2935
|
}
|
|
2936
|
+
.v-field--center-affix .v-field__append-inner,
|
|
2937
|
+
.v-field--center-affix .v-field__clearable,
|
|
2938
|
+
.v-field--center-affix .v-field__prepend-inner {
|
|
2939
|
+
align-items: center;
|
|
2940
|
+
padding-top: 0;
|
|
2941
|
+
}
|
|
2942
|
+
|
|
2943
|
+
.v-field.v-field--variant-underlined .v-field__append-inner,
|
|
2944
|
+
.v-field.v-field--variant-underlined .v-field__clearable,
|
|
2945
|
+
.v-field.v-field--variant-underlined .v-field__prepend-inner,
|
|
2946
|
+
.v-field.v-field--variant-plain .v-field__append-inner,
|
|
2947
|
+
.v-field.v-field--variant-plain .v-field__clearable,
|
|
2948
|
+
.v-field.v-field--variant-plain .v-field__prepend-inner {
|
|
2949
|
+
align-items: flex-start;
|
|
2950
|
+
padding-top: calc(var(--v-field-padding-top, 10px) + var(--v-input-padding-top, 0));
|
|
2951
|
+
padding-bottom: var(--v-field-padding-bottom, 5px);
|
|
2952
|
+
}
|
|
2897
2953
|
|
|
2898
2954
|
.v-field--focused .v-field__prepend-inner,
|
|
2899
2955
|
.v-field--focused .v-field__append-inner {
|
|
@@ -2944,11 +3000,18 @@ textarea.v-field__input::placeholder {
|
|
|
2944
3000
|
max-width: calc(100% - var(--v-field-padding-start) - var(--v-field-padding-end));
|
|
2945
3001
|
pointer-events: none;
|
|
2946
3002
|
position: absolute;
|
|
2947
|
-
top: var(--v-input-padding-top
|
|
3003
|
+
top: var(--v-input-padding-top);
|
|
2948
3004
|
transform-origin: left center;
|
|
2949
3005
|
transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
|
|
2950
3006
|
transition-property: opacity, transform;
|
|
2951
3007
|
}
|
|
3008
|
+
.v-field--variant-underlined .v-label.v-field-label, .v-field--variant-plain .v-label.v-field-label {
|
|
3009
|
+
top: calc(var(--v-input-padding-top) + var(--v-field-padding-top));
|
|
3010
|
+
}
|
|
3011
|
+
.v-field--center-affix .v-label.v-field-label {
|
|
3012
|
+
top: 50%;
|
|
3013
|
+
transform: translateY(-50%);
|
|
3014
|
+
}
|
|
2952
3015
|
.v-field--active .v-label.v-field-label {
|
|
2953
3016
|
visibility: hidden;
|
|
2954
3017
|
}
|
|
@@ -2964,24 +3027,28 @@ textarea.v-field__input::placeholder {
|
|
|
2964
3027
|
visibility: hidden;
|
|
2965
3028
|
max-width: 100%;
|
|
2966
3029
|
}
|
|
3030
|
+
.v-field--center-affix .v-label.v-field-label--floating {
|
|
3031
|
+
transform: none;
|
|
3032
|
+
}
|
|
2967
3033
|
.v-field.v-field--active .v-label.v-field-label--floating {
|
|
2968
3034
|
visibility: visible;
|
|
2969
3035
|
}
|
|
2970
|
-
.v-input--density-default .v-field--variant-solo .v-label.v-field-label--floating, .v-input--density-default .v-field--variant-filled .v-label.v-field-label--floating {
|
|
3036
|
+
.v-input--density-default .v-field--variant-solo .v-label.v-field-label--floating, .v-input--density-default .v-field--variant-solo-inverted .v-label.v-field-label--floating, .v-input--density-default .v-field--variant-filled .v-label.v-field-label--floating, .v-input--density-default .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
2971
3037
|
top: 7px;
|
|
2972
3038
|
}
|
|
2973
3039
|
|
|
2974
|
-
.v-input--density-comfortable .v-field--variant-solo .v-label.v-field-label--floating, .v-input--density-comfortable .v-field--variant-filled .v-label.v-field-label--floating {
|
|
3040
|
+
.v-input--density-comfortable .v-field--variant-solo .v-label.v-field-label--floating, .v-input--density-comfortable .v-field--variant-solo-inverted .v-label.v-field-label--floating, .v-input--density-comfortable .v-field--variant-filled .v-label.v-field-label--floating, .v-input--density-comfortable .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
2975
3041
|
top: 5px;
|
|
2976
3042
|
}
|
|
2977
3043
|
|
|
2978
|
-
.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating, .v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating {
|
|
3044
|
+
.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating, .v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating, .v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating, .v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
2979
3045
|
top: 3px;
|
|
2980
3046
|
}
|
|
2981
3047
|
|
|
2982
3048
|
.v-field--variant-plain .v-label.v-field-label--floating, .v-field--variant-underlined .v-label.v-field-label--floating {
|
|
2983
3049
|
transform: translateY(-16px);
|
|
2984
3050
|
margin: 0;
|
|
3051
|
+
top: var(--v-input-padding-top);
|
|
2985
3052
|
}
|
|
2986
3053
|
.v-field--variant-outlined .v-label.v-field-label--floating {
|
|
2987
3054
|
transform: translateY(-50%);
|
|
@@ -3071,7 +3138,6 @@ textarea.v-field__input::placeholder {
|
|
|
3071
3138
|
.v-field--variant-outlined .v-field__outline__notch {
|
|
3072
3139
|
flex: none;
|
|
3073
3140
|
position: relative;
|
|
3074
|
-
border-width: 0 0 var(--v-field-border-width);
|
|
3075
3141
|
}
|
|
3076
3142
|
.v-field--variant-outlined .v-field__outline__notch::before, .v-field--variant-outlined .v-field__outline__notch::after {
|
|
3077
3143
|
opacity: var(--v-field-border-opacity);
|
|
@@ -3119,18 +3185,21 @@ textarea.v-field__input::placeholder {
|
|
|
3119
3185
|
|
|
3120
3186
|
/* endregion */
|
|
3121
3187
|
/* region OVERLAY */
|
|
3122
|
-
.v-
|
|
3123
|
-
background-color: currentColor;
|
|
3188
|
+
.v-field__overlay {
|
|
3124
3189
|
border-radius: inherit;
|
|
3125
|
-
opacity: 0.04;
|
|
3126
3190
|
pointer-events: none;
|
|
3127
|
-
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
3128
3191
|
position: absolute;
|
|
3129
3192
|
top: 0;
|
|
3130
3193
|
left: 0;
|
|
3131
3194
|
width: 100%;
|
|
3132
3195
|
height: 100%;
|
|
3133
3196
|
}
|
|
3197
|
+
|
|
3198
|
+
.v-field--variant-filled .v-field__overlay {
|
|
3199
|
+
background-color: currentColor;
|
|
3200
|
+
opacity: 0.04;
|
|
3201
|
+
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
3202
|
+
}
|
|
3134
3203
|
.v-field--variant-filled.v-field--has-background .v-field__overlay {
|
|
3135
3204
|
opacity: 0;
|
|
3136
3205
|
}
|
|
@@ -3143,6 +3212,36 @@ textarea.v-field__input::placeholder {
|
|
|
3143
3212
|
opacity: calc((0.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
3144
3213
|
}
|
|
3145
3214
|
|
|
3215
|
+
.v-field--variant-solo-filled .v-field__overlay {
|
|
3216
|
+
background-color: currentColor;
|
|
3217
|
+
opacity: 0.04;
|
|
3218
|
+
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
3219
|
+
}
|
|
3220
|
+
@media (hover: hover) {
|
|
3221
|
+
.v-field--variant-solo-filled:hover .v-field__overlay {
|
|
3222
|
+
opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
3223
|
+
}
|
|
3224
|
+
}
|
|
3225
|
+
.v-field--variant-solo-filled.v-field--focused .v-field__overlay {
|
|
3226
|
+
opacity: calc((0.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
3227
|
+
}
|
|
3228
|
+
|
|
3229
|
+
.v-field--variant-solo-inverted .v-field__overlay {
|
|
3230
|
+
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
3231
|
+
}
|
|
3232
|
+
.v-field--variant-solo-inverted.v-field--has-background .v-field__overlay {
|
|
3233
|
+
opacity: 0;
|
|
3234
|
+
}
|
|
3235
|
+
@media (hover: hover) {
|
|
3236
|
+
.v-field--variant-solo-inverted:hover .v-field__overlay {
|
|
3237
|
+
opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
3238
|
+
}
|
|
3239
|
+
}
|
|
3240
|
+
.v-field--variant-solo-inverted.v-field--focused .v-field__overlay {
|
|
3241
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
|
3242
|
+
opacity: 1;
|
|
3243
|
+
}
|
|
3244
|
+
|
|
3146
3245
|
/* endregion */
|
|
3147
3246
|
/* region MODIFIERS */
|
|
3148
3247
|
.v-field--reverse .v-field__input.v-locale--is-ltr, .v-locale--is-ltr .v-field--reverse .v-field__input {
|
|
@@ -3163,117 +3262,6 @@ textarea.v-field__input::placeholder {
|
|
|
3163
3262
|
}
|
|
3164
3263
|
|
|
3165
3264
|
/* endregion */
|
|
3166
|
-
.v-selection-control {
|
|
3167
|
-
align-items: center;
|
|
3168
|
-
contain: layout;
|
|
3169
|
-
display: flex;
|
|
3170
|
-
flex: 1 0;
|
|
3171
|
-
grid-area: control;
|
|
3172
|
-
position: relative;
|
|
3173
|
-
user-select: none;
|
|
3174
|
-
}
|
|
3175
|
-
.v-selection-control .v-label {
|
|
3176
|
-
white-space: normal;
|
|
3177
|
-
word-break: break-word;
|
|
3178
|
-
height: 100%;
|
|
3179
|
-
width: 100%;
|
|
3180
|
-
}
|
|
3181
|
-
.v-selection-control--disabled {
|
|
3182
|
-
opacity: var(--v-disabled-opacity);
|
|
3183
|
-
pointer-events: none;
|
|
3184
|
-
}
|
|
3185
|
-
.v-selection-control--error .v-label, .v-selection-control--disabled .v-label {
|
|
3186
|
-
opacity: 1;
|
|
3187
|
-
}
|
|
3188
|
-
.v-selection-control--error:not(.v-selection-control--disabled) .v-label {
|
|
3189
|
-
color: rgb(var(--v-theme-error));
|
|
3190
|
-
}
|
|
3191
|
-
.v-selection-control--inline {
|
|
3192
|
-
display: inline-flex;
|
|
3193
|
-
flex: 0 0 auto;
|
|
3194
|
-
min-width: 0;
|
|
3195
|
-
max-width: 100%;
|
|
3196
|
-
}
|
|
3197
|
-
.v-selection-control--inline .v-label {
|
|
3198
|
-
width: auto;
|
|
3199
|
-
}
|
|
3200
|
-
.v-selection-control--density-default {
|
|
3201
|
-
--v-selection-control-size: 40px;
|
|
3202
|
-
}
|
|
3203
|
-
|
|
3204
|
-
.v-selection-control--density-comfortable {
|
|
3205
|
-
--v-selection-control-size: 36px;
|
|
3206
|
-
}
|
|
3207
|
-
|
|
3208
|
-
.v-selection-control--density-compact {
|
|
3209
|
-
--v-selection-control-size: 28px;
|
|
3210
|
-
}
|
|
3211
|
-
|
|
3212
|
-
.v-selection-control__wrapper {
|
|
3213
|
-
width: var(--v-selection-control-size);
|
|
3214
|
-
height: var(--v-selection-control-size);
|
|
3215
|
-
display: inline-flex;
|
|
3216
|
-
align-items: center;
|
|
3217
|
-
position: relative;
|
|
3218
|
-
justify-content: center;
|
|
3219
|
-
flex: none;
|
|
3220
|
-
}
|
|
3221
|
-
|
|
3222
|
-
.v-selection-control__input {
|
|
3223
|
-
width: var(--v-selection-control-size);
|
|
3224
|
-
height: var(--v-selection-control-size);
|
|
3225
|
-
align-items: center;
|
|
3226
|
-
display: flex;
|
|
3227
|
-
flex: none;
|
|
3228
|
-
justify-content: center;
|
|
3229
|
-
position: relative;
|
|
3230
|
-
border-radius: 50%;
|
|
3231
|
-
}
|
|
3232
|
-
.v-selection-control__input input {
|
|
3233
|
-
cursor: pointer;
|
|
3234
|
-
position: absolute;
|
|
3235
|
-
left: 0;
|
|
3236
|
-
top: 0;
|
|
3237
|
-
width: 100%;
|
|
3238
|
-
height: 100%;
|
|
3239
|
-
opacity: 0;
|
|
3240
|
-
}
|
|
3241
|
-
.v-selection-control__input::before {
|
|
3242
|
-
content: "";
|
|
3243
|
-
position: absolute;
|
|
3244
|
-
top: 0;
|
|
3245
|
-
left: 0;
|
|
3246
|
-
width: 100%;
|
|
3247
|
-
height: 100%;
|
|
3248
|
-
border-radius: 100%;
|
|
3249
|
-
background-color: currentColor;
|
|
3250
|
-
opacity: 0;
|
|
3251
|
-
pointer-events: none;
|
|
3252
|
-
}
|
|
3253
|
-
.v-selection-control__input:hover::before {
|
|
3254
|
-
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
3255
|
-
}
|
|
3256
|
-
.v-selection-control__input > .v-icon {
|
|
3257
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
3258
|
-
}
|
|
3259
|
-
.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 {
|
|
3260
|
-
opacity: 1;
|
|
3261
|
-
}
|
|
3262
|
-
.v-selection-control--error:not(.v-selection-control--disabled) .v-selection-control__input > .v-icon {
|
|
3263
|
-
color: rgb(var(--v-theme-error));
|
|
3264
|
-
}
|
|
3265
|
-
.v-selection-control--focus-visible .v-selection-control__input::before {
|
|
3266
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
3267
|
-
}
|
|
3268
|
-
.v-selection-control-group {
|
|
3269
|
-
grid-area: control;
|
|
3270
|
-
display: flex;
|
|
3271
|
-
flex-direction: column;
|
|
3272
|
-
}
|
|
3273
|
-
.v-selection-control-group--inline {
|
|
3274
|
-
flex-direction: row;
|
|
3275
|
-
flex-wrap: wrap;
|
|
3276
|
-
}
|
|
3277
3265
|
@keyframes v-shake {
|
|
3278
3266
|
59% {
|
|
3279
3267
|
margin-left: 0;
|
|
@@ -6725,6 +6713,38 @@ html.overflow-y-hidden {
|
|
|
6725
6713
|
flex: 1 1 auto !important;
|
|
6726
6714
|
}
|
|
6727
6715
|
|
|
6716
|
+
.flex-1-1 {
|
|
6717
|
+
flex: 1 1 auto !important;
|
|
6718
|
+
}
|
|
6719
|
+
|
|
6720
|
+
.flex-1-0 {
|
|
6721
|
+
flex: 1 0 auto !important;
|
|
6722
|
+
}
|
|
6723
|
+
|
|
6724
|
+
.flex-0-1 {
|
|
6725
|
+
flex: 0 1 auto !important;
|
|
6726
|
+
}
|
|
6727
|
+
|
|
6728
|
+
.flex-0-0 {
|
|
6729
|
+
flex: 0 0 auto !important;
|
|
6730
|
+
}
|
|
6731
|
+
|
|
6732
|
+
.flex-1-1-100 {
|
|
6733
|
+
flex: 1 1 100% !important;
|
|
6734
|
+
}
|
|
6735
|
+
|
|
6736
|
+
.flex-1-0-100 {
|
|
6737
|
+
flex: 1 0 100% !important;
|
|
6738
|
+
}
|
|
6739
|
+
|
|
6740
|
+
.flex-0-1-100 {
|
|
6741
|
+
flex: 0 1 100% !important;
|
|
6742
|
+
}
|
|
6743
|
+
|
|
6744
|
+
.flex-0-0-100 {
|
|
6745
|
+
flex: 0 0 100% !important;
|
|
6746
|
+
}
|
|
6747
|
+
|
|
6728
6748
|
.flex-row {
|
|
6729
6749
|
flex-direction: row !important;
|
|
6730
6750
|
}
|
|
@@ -10003,6 +10023,30 @@ html.overflow-y-hidden {
|
|
|
10003
10023
|
.flex-sm-fill {
|
|
10004
10024
|
flex: 1 1 auto !important;
|
|
10005
10025
|
}
|
|
10026
|
+
.flex-sm-1-1 {
|
|
10027
|
+
flex: 1 1 auto !important;
|
|
10028
|
+
}
|
|
10029
|
+
.flex-sm-1-0 {
|
|
10030
|
+
flex: 1 0 auto !important;
|
|
10031
|
+
}
|
|
10032
|
+
.flex-sm-0-1 {
|
|
10033
|
+
flex: 0 1 auto !important;
|
|
10034
|
+
}
|
|
10035
|
+
.flex-sm-0-0 {
|
|
10036
|
+
flex: 0 0 auto !important;
|
|
10037
|
+
}
|
|
10038
|
+
.flex-sm-1-1-100 {
|
|
10039
|
+
flex: 1 1 100% !important;
|
|
10040
|
+
}
|
|
10041
|
+
.flex-sm-1-0-100 {
|
|
10042
|
+
flex: 1 0 100% !important;
|
|
10043
|
+
}
|
|
10044
|
+
.flex-sm-0-1-100 {
|
|
10045
|
+
flex: 0 1 100% !important;
|
|
10046
|
+
}
|
|
10047
|
+
.flex-sm-0-0-100 {
|
|
10048
|
+
flex: 0 0 100% !important;
|
|
10049
|
+
}
|
|
10006
10050
|
.flex-sm-row {
|
|
10007
10051
|
flex-direction: row !important;
|
|
10008
10052
|
}
|
|
@@ -11807,6 +11851,30 @@ html.overflow-y-hidden {
|
|
|
11807
11851
|
.flex-md-fill {
|
|
11808
11852
|
flex: 1 1 auto !important;
|
|
11809
11853
|
}
|
|
11854
|
+
.flex-md-1-1 {
|
|
11855
|
+
flex: 1 1 auto !important;
|
|
11856
|
+
}
|
|
11857
|
+
.flex-md-1-0 {
|
|
11858
|
+
flex: 1 0 auto !important;
|
|
11859
|
+
}
|
|
11860
|
+
.flex-md-0-1 {
|
|
11861
|
+
flex: 0 1 auto !important;
|
|
11862
|
+
}
|
|
11863
|
+
.flex-md-0-0 {
|
|
11864
|
+
flex: 0 0 auto !important;
|
|
11865
|
+
}
|
|
11866
|
+
.flex-md-1-1-100 {
|
|
11867
|
+
flex: 1 1 100% !important;
|
|
11868
|
+
}
|
|
11869
|
+
.flex-md-1-0-100 {
|
|
11870
|
+
flex: 1 0 100% !important;
|
|
11871
|
+
}
|
|
11872
|
+
.flex-md-0-1-100 {
|
|
11873
|
+
flex: 0 1 100% !important;
|
|
11874
|
+
}
|
|
11875
|
+
.flex-md-0-0-100 {
|
|
11876
|
+
flex: 0 0 100% !important;
|
|
11877
|
+
}
|
|
11810
11878
|
.flex-md-row {
|
|
11811
11879
|
flex-direction: row !important;
|
|
11812
11880
|
}
|
|
@@ -13611,6 +13679,30 @@ html.overflow-y-hidden {
|
|
|
13611
13679
|
.flex-lg-fill {
|
|
13612
13680
|
flex: 1 1 auto !important;
|
|
13613
13681
|
}
|
|
13682
|
+
.flex-lg-1-1 {
|
|
13683
|
+
flex: 1 1 auto !important;
|
|
13684
|
+
}
|
|
13685
|
+
.flex-lg-1-0 {
|
|
13686
|
+
flex: 1 0 auto !important;
|
|
13687
|
+
}
|
|
13688
|
+
.flex-lg-0-1 {
|
|
13689
|
+
flex: 0 1 auto !important;
|
|
13690
|
+
}
|
|
13691
|
+
.flex-lg-0-0 {
|
|
13692
|
+
flex: 0 0 auto !important;
|
|
13693
|
+
}
|
|
13694
|
+
.flex-lg-1-1-100 {
|
|
13695
|
+
flex: 1 1 100% !important;
|
|
13696
|
+
}
|
|
13697
|
+
.flex-lg-1-0-100 {
|
|
13698
|
+
flex: 1 0 100% !important;
|
|
13699
|
+
}
|
|
13700
|
+
.flex-lg-0-1-100 {
|
|
13701
|
+
flex: 0 1 100% !important;
|
|
13702
|
+
}
|
|
13703
|
+
.flex-lg-0-0-100 {
|
|
13704
|
+
flex: 0 0 100% !important;
|
|
13705
|
+
}
|
|
13614
13706
|
.flex-lg-row {
|
|
13615
13707
|
flex-direction: row !important;
|
|
13616
13708
|
}
|
|
@@ -15415,6 +15507,30 @@ html.overflow-y-hidden {
|
|
|
15415
15507
|
.flex-xl-fill {
|
|
15416
15508
|
flex: 1 1 auto !important;
|
|
15417
15509
|
}
|
|
15510
|
+
.flex-xl-1-1 {
|
|
15511
|
+
flex: 1 1 auto !important;
|
|
15512
|
+
}
|
|
15513
|
+
.flex-xl-1-0 {
|
|
15514
|
+
flex: 1 0 auto !important;
|
|
15515
|
+
}
|
|
15516
|
+
.flex-xl-0-1 {
|
|
15517
|
+
flex: 0 1 auto !important;
|
|
15518
|
+
}
|
|
15519
|
+
.flex-xl-0-0 {
|
|
15520
|
+
flex: 0 0 auto !important;
|
|
15521
|
+
}
|
|
15522
|
+
.flex-xl-1-1-100 {
|
|
15523
|
+
flex: 1 1 100% !important;
|
|
15524
|
+
}
|
|
15525
|
+
.flex-xl-1-0-100 {
|
|
15526
|
+
flex: 1 0 100% !important;
|
|
15527
|
+
}
|
|
15528
|
+
.flex-xl-0-1-100 {
|
|
15529
|
+
flex: 0 1 100% !important;
|
|
15530
|
+
}
|
|
15531
|
+
.flex-xl-0-0-100 {
|
|
15532
|
+
flex: 0 0 100% !important;
|
|
15533
|
+
}
|
|
15418
15534
|
.flex-xl-row {
|
|
15419
15535
|
flex-direction: row !important;
|
|
15420
15536
|
}
|
|
@@ -17219,6 +17335,30 @@ html.overflow-y-hidden {
|
|
|
17219
17335
|
.flex-xxl-fill {
|
|
17220
17336
|
flex: 1 1 auto !important;
|
|
17221
17337
|
}
|
|
17338
|
+
.flex-xxl-1-1 {
|
|
17339
|
+
flex: 1 1 auto !important;
|
|
17340
|
+
}
|
|
17341
|
+
.flex-xxl-1-0 {
|
|
17342
|
+
flex: 1 0 auto !important;
|
|
17343
|
+
}
|
|
17344
|
+
.flex-xxl-0-1 {
|
|
17345
|
+
flex: 0 1 auto !important;
|
|
17346
|
+
}
|
|
17347
|
+
.flex-xxl-0-0 {
|
|
17348
|
+
flex: 0 0 auto !important;
|
|
17349
|
+
}
|
|
17350
|
+
.flex-xxl-1-1-100 {
|
|
17351
|
+
flex: 1 1 100% !important;
|
|
17352
|
+
}
|
|
17353
|
+
.flex-xxl-1-0-100 {
|
|
17354
|
+
flex: 1 0 100% !important;
|
|
17355
|
+
}
|
|
17356
|
+
.flex-xxl-0-1-100 {
|
|
17357
|
+
flex: 0 1 100% !important;
|
|
17358
|
+
}
|
|
17359
|
+
.flex-xxl-0-0-100 {
|
|
17360
|
+
flex: 0 0 100% !important;
|
|
17361
|
+
}
|
|
17222
17362
|
.flex-xxl-row {
|
|
17223
17363
|
flex-direction: row !important;
|
|
17224
17364
|
}
|
|
@@ -19021,3 +19161,114 @@ html.overflow-y-hidden {
|
|
|
19021
19161
|
float: left !important;
|
|
19022
19162
|
}
|
|
19023
19163
|
}
|
|
19164
|
+
.v-selection-control {
|
|
19165
|
+
align-items: center;
|
|
19166
|
+
contain: layout;
|
|
19167
|
+
display: flex;
|
|
19168
|
+
flex: 1 0;
|
|
19169
|
+
grid-area: control;
|
|
19170
|
+
position: relative;
|
|
19171
|
+
user-select: none;
|
|
19172
|
+
}
|
|
19173
|
+
.v-selection-control .v-label {
|
|
19174
|
+
white-space: normal;
|
|
19175
|
+
word-break: break-word;
|
|
19176
|
+
height: 100%;
|
|
19177
|
+
width: 100%;
|
|
19178
|
+
}
|
|
19179
|
+
.v-selection-control--disabled {
|
|
19180
|
+
opacity: var(--v-disabled-opacity);
|
|
19181
|
+
pointer-events: none;
|
|
19182
|
+
}
|
|
19183
|
+
.v-selection-control--error .v-label, .v-selection-control--disabled .v-label {
|
|
19184
|
+
opacity: 1;
|
|
19185
|
+
}
|
|
19186
|
+
.v-selection-control--error:not(.v-selection-control--disabled) .v-label {
|
|
19187
|
+
color: rgb(var(--v-theme-error));
|
|
19188
|
+
}
|
|
19189
|
+
.v-selection-control--inline {
|
|
19190
|
+
display: inline-flex;
|
|
19191
|
+
flex: 0 0 auto;
|
|
19192
|
+
min-width: 0;
|
|
19193
|
+
max-width: 100%;
|
|
19194
|
+
}
|
|
19195
|
+
.v-selection-control--inline .v-label {
|
|
19196
|
+
width: auto;
|
|
19197
|
+
}
|
|
19198
|
+
.v-selection-control--density-default {
|
|
19199
|
+
--v-selection-control-size: 40px;
|
|
19200
|
+
}
|
|
19201
|
+
|
|
19202
|
+
.v-selection-control--density-comfortable {
|
|
19203
|
+
--v-selection-control-size: 36px;
|
|
19204
|
+
}
|
|
19205
|
+
|
|
19206
|
+
.v-selection-control--density-compact {
|
|
19207
|
+
--v-selection-control-size: 28px;
|
|
19208
|
+
}
|
|
19209
|
+
|
|
19210
|
+
.v-selection-control__wrapper {
|
|
19211
|
+
width: var(--v-selection-control-size);
|
|
19212
|
+
height: var(--v-selection-control-size);
|
|
19213
|
+
display: inline-flex;
|
|
19214
|
+
align-items: center;
|
|
19215
|
+
position: relative;
|
|
19216
|
+
justify-content: center;
|
|
19217
|
+
flex: none;
|
|
19218
|
+
}
|
|
19219
|
+
|
|
19220
|
+
.v-selection-control__input {
|
|
19221
|
+
width: var(--v-selection-control-size);
|
|
19222
|
+
height: var(--v-selection-control-size);
|
|
19223
|
+
align-items: center;
|
|
19224
|
+
display: flex;
|
|
19225
|
+
flex: none;
|
|
19226
|
+
justify-content: center;
|
|
19227
|
+
position: relative;
|
|
19228
|
+
border-radius: 50%;
|
|
19229
|
+
}
|
|
19230
|
+
.v-selection-control__input input {
|
|
19231
|
+
cursor: pointer;
|
|
19232
|
+
position: absolute;
|
|
19233
|
+
left: 0;
|
|
19234
|
+
top: 0;
|
|
19235
|
+
width: 100%;
|
|
19236
|
+
height: 100%;
|
|
19237
|
+
opacity: 0;
|
|
19238
|
+
}
|
|
19239
|
+
.v-selection-control__input::before {
|
|
19240
|
+
content: "";
|
|
19241
|
+
position: absolute;
|
|
19242
|
+
top: 0;
|
|
19243
|
+
left: 0;
|
|
19244
|
+
width: 100%;
|
|
19245
|
+
height: 100%;
|
|
19246
|
+
border-radius: 100%;
|
|
19247
|
+
background-color: currentColor;
|
|
19248
|
+
opacity: 0;
|
|
19249
|
+
pointer-events: none;
|
|
19250
|
+
}
|
|
19251
|
+
.v-selection-control__input:hover::before {
|
|
19252
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
19253
|
+
}
|
|
19254
|
+
.v-selection-control__input > .v-icon {
|
|
19255
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
19256
|
+
}
|
|
19257
|
+
.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 {
|
|
19258
|
+
opacity: 1;
|
|
19259
|
+
}
|
|
19260
|
+
.v-selection-control--error:not(.v-selection-control--disabled) .v-selection-control__input > .v-icon {
|
|
19261
|
+
color: rgb(var(--v-theme-error));
|
|
19262
|
+
}
|
|
19263
|
+
.v-selection-control--focus-visible .v-selection-control__input::before {
|
|
19264
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
19265
|
+
}
|
|
19266
|
+
.v-selection-control-group {
|
|
19267
|
+
grid-area: control;
|
|
19268
|
+
display: flex;
|
|
19269
|
+
flex-direction: column;
|
|
19270
|
+
}
|
|
19271
|
+
.v-selection-control-group--inline {
|
|
19272
|
+
flex-direction: row;
|
|
19273
|
+
flex-wrap: wrap;
|
|
19274
|
+
}
|