@omnia/runtime 8.0.11-vnext → 8.0.13-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.vuetify.chip_6c32c2f0-cce6-4c71-b376-9fb68d0d508e.css +396 -1
- package/dist/bundles/omnia.fx.ux.vuetify.common_798d6494-70cc-47eb-9054-30b047beab19.css +589 -88
- package/dist/bundles/omnia.fx.ux.vuetify.dialog_0bf6198c-32c6-4cec-90bd-7988a979c9b0.css +77 -0
- package/dist/bundles/omnia.fx.ux.vuetify.select_6d5f3edc-0fc0-4765-804b-b6583381f25d.css +63 -1
- package/dist/bundles/omnia.fx.ux.vuetify.selection_df97a94b-b41b-45e0-883c-6e577a1634a1.css +3 -0
- package/dist/bundles/omnia.fx.ux.vuetify.shared_8769dc42-712d-4ce2-8d32-4b8604b92ae6.css +18522 -0
- package/dist/bundles/omnia.fx.ux.vuetify.textinput_181ff5d3-896f-4471-b516-3a347fe9e35d.css +70 -1
- package/dist/bundles/omnia.fx.ux_dee030cc-4ab3-4158-bb06-8049f5c67542.css +681 -20319
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_manifests.json +1 -1
- package/package.json +5 -5
- package/dist/bundles/omnia.fx.ux.vuetify.calendar_dfcf39df-10c2-43df-99bc-8c5657e6efa1.css +0 -5
- package/dist/bundles/omnia.fx.ux.vuetify.datepicker_0ab2c44b-d945-40f8-8042-0800a52d7c86.css +0 -5
- package/dist/bundles/omnia.fx.ux.vuetify.divider_e6c8262c-da1a-456c-8566-5d0b72334f63.css +0 -2
- package/dist/bundles/omnia.fx.ux.vuetify.timepicker_1d5e348d-5ff7-475e-a115-fc83e3ab9482.css +0 -3
- package/dist/bundles/omnia.fx.ux.vuetify.treeview_6d7b7ee9-0839-49fd-885e-513b17b6b023.css +0 -2
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
.v-dialog {
|
|
2
|
+
align-items: center;
|
|
3
|
+
justify-content: center;
|
|
4
|
+
margin: auto;
|
|
5
|
+
}
|
|
6
|
+
.v-dialog .v-overlay__content {
|
|
7
|
+
max-height: calc(100% - 48px);
|
|
8
|
+
width: calc(100% - 48px);
|
|
9
|
+
max-width: calc(100% - 48px);
|
|
10
|
+
margin: 24px;
|
|
11
|
+
display: flex;
|
|
12
|
+
flex-direction: column;
|
|
13
|
+
}
|
|
14
|
+
.v-dialog .v-overlay__content > .v-card,
|
|
15
|
+
.v-dialog .v-overlay__content > .v-sheet {
|
|
16
|
+
--v-scrollbar-offset: 0px;
|
|
17
|
+
border-radius: 4px;
|
|
18
|
+
overflow-y: auto;
|
|
19
|
+
box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
20
|
+
}
|
|
21
|
+
.v-dialog .v-overlay__content > .v-card {
|
|
22
|
+
display: flex;
|
|
23
|
+
flex-direction: column;
|
|
24
|
+
}
|
|
25
|
+
.v-dialog .v-overlay__content > .v-card > .v-card-item {
|
|
26
|
+
padding: 14px 24px 0;
|
|
27
|
+
}
|
|
28
|
+
.v-dialog .v-overlay__content > .v-card > .v-card-item + .v-card-text {
|
|
29
|
+
padding-top: 10px;
|
|
30
|
+
}
|
|
31
|
+
.v-dialog .v-overlay__content > .v-card > .v-card-text {
|
|
32
|
+
font-size: inherit;
|
|
33
|
+
letter-spacing: 0.03125em;
|
|
34
|
+
line-height: inherit;
|
|
35
|
+
padding: 16px 24px 10px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.v-dialog--fullscreen {
|
|
39
|
+
--v-scrollbar-offset: 0px;
|
|
40
|
+
}
|
|
41
|
+
.v-dialog--fullscreen .v-overlay__content {
|
|
42
|
+
border-radius: 0;
|
|
43
|
+
margin: 0;
|
|
44
|
+
padding: 0;
|
|
45
|
+
width: 100%;
|
|
46
|
+
height: 100%;
|
|
47
|
+
max-width: 100%;
|
|
48
|
+
max-height: 100%;
|
|
49
|
+
overflow-y: auto;
|
|
50
|
+
top: 0;
|
|
51
|
+
left: 0;
|
|
52
|
+
}
|
|
53
|
+
.v-dialog--fullscreen .v-overlay__content > .v-card,
|
|
54
|
+
.v-dialog--fullscreen .v-overlay__content > .v-sheet {
|
|
55
|
+
min-height: 100%;
|
|
56
|
+
min-width: 100%;
|
|
57
|
+
border-radius: 0;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.v-dialog--scrollable .v-overlay__content,
|
|
61
|
+
.v-dialog--scrollable .v-overlay__content > form {
|
|
62
|
+
display: flex;
|
|
63
|
+
}
|
|
64
|
+
.v-dialog--scrollable .v-overlay__content > .v-card,
|
|
65
|
+
.v-dialog--scrollable .v-overlay__content > form > .v-card {
|
|
66
|
+
display: flex;
|
|
67
|
+
flex: 1 1 100%;
|
|
68
|
+
flex-direction: column;
|
|
69
|
+
max-height: 100%;
|
|
70
|
+
max-width: 100%;
|
|
71
|
+
}
|
|
72
|
+
.v-dialog--scrollable .v-overlay__content > .v-card > .v-card-text,
|
|
73
|
+
.v-dialog--scrollable .v-overlay__content > form > .v-card > .v-card-text {
|
|
74
|
+
backface-visibility: hidden;
|
|
75
|
+
overflow-y: auto;
|
|
76
|
+
}
|
|
77
|
+
|
|
@@ -1,2 +1,64 @@
|
|
|
1
|
-
html .theme--light.v-select .v-select__selections{color:rgba(0,0,0,.87)}html .theme--light.v-select.v-input--is-disabled .v-select__selections{color:rgba(0,0,0,.38)}html .theme--light.v-select .v-select__selection--disabled{color:rgba(0,0,0,.38)}html .theme--light.v-select.v-text-field--solo-inverted.v-input--is-focused .v-select__selections{color:#fff}html .theme--dark.v-select .v-select__selections{color:#fff}html .theme--dark.v-select.v-input--is-disabled .v-select__selections{color:rgba(255,255,255,.5)}html .theme--dark.v-select .v-select__selection--disabled{color:rgba(255,255,255,.5)}html .theme--dark.v-select.v-text-field--solo-inverted.v-input--is-focused .v-select__selections{color:rgba(0,0,0,.87)}[data-omfx] .v-select, .v-menu__content .v-select, .v-tooltip__content .v-select, .v-dialog__content .v-select{position:relative}[data-omfx] .v-select:not(.v-select--is-multi).v-text-field--single-line .v-select__selections, .v-menu__content .v-select:not(.v-select--is-multi).v-text-field--single-line .v-select__selections, .v-tooltip__content .v-select:not(.v-select--is-multi).v-text-field--single-line .v-select__selections, .v-dialog__content .v-select:not(.v-select--is-multi).v-text-field--single-line .v-select__selections{flex-wrap:nowrap}[data-omfx] .v-select>.v-input__control>.v-input__slot, .v-menu__content .v-select>.v-input__control>.v-input__slot, .v-tooltip__content .v-select>.v-input__control>.v-input__slot, .v-dialog__content .v-select>.v-input__control>.v-input__slot{cursor:pointer}[data-omfx] .v-select .v-chip, .v-menu__content .v-select .v-chip, .v-tooltip__content .v-select .v-chip, .v-dialog__content .v-select .v-chip{flex:0 1 auto;margin:4px}[data-omfx] .v-select .v-chip--selected:after, .v-menu__content .v-select .v-chip--selected:after, .v-tooltip__content .v-select .v-chip--selected:after, .v-dialog__content .v-select .v-chip--selected:after{opacity:.22}[data-omfx] .v-select .fade-transition-leave-active, .v-menu__content .v-select .fade-transition-leave-active, .v-tooltip__content .v-select .fade-transition-leave-active, .v-dialog__content .v-select .fade-transition-leave-active{position:absolute;left:0}[data-omfx] .v-select.v-input--is-dirty ::-ms-input-placeholder, .v-menu__content .v-select.v-input--is-dirty ::-ms-input-placeholder, .v-tooltip__content .v-select.v-input--is-dirty ::-ms-input-placeholder, .v-dialog__content .v-select.v-input--is-dirty ::-ms-input-placeholder{color:transparent !important}[data-omfx] .v-select.v-input--is-dirty ::placeholder, .v-menu__content .v-select.v-input--is-dirty ::placeholder, .v-tooltip__content .v-select.v-input--is-dirty ::placeholder, .v-dialog__content .v-select.v-input--is-dirty ::placeholder{color:transparent !important}[data-omfx] .v-select:not(.v-input--is-dirty):not(.v-input--is-focused) .v-text-field__prefix, .v-menu__content .v-select:not(.v-input--is-dirty):not(.v-input--is-focused) .v-text-field__prefix, .v-tooltip__content .v-select:not(.v-input--is-dirty):not(.v-input--is-focused) .v-text-field__prefix, .v-dialog__content .v-select:not(.v-input--is-dirty):not(.v-input--is-focused) .v-text-field__prefix{line-height:20px;top:7px;transition:.3s cubic-bezier(0.25, 0.8, 0.5, 1)}[data-omfx] .v-select.v-text-field--enclosed:not(.v-text-field--single-line):not(.v-text-field--outlined) .v-select__selections, .v-menu__content .v-select.v-text-field--enclosed:not(.v-text-field--single-line):not(.v-text-field--outlined) .v-select__selections, .v-tooltip__content .v-select.v-text-field--enclosed:not(.v-text-field--single-line):not(.v-text-field--outlined) .v-select__selections, .v-dialog__content .v-select.v-text-field--enclosed:not(.v-text-field--single-line):not(.v-text-field--outlined) .v-select__selections{padding-top:20px}[data-omfx] .v-select.v-text-field--outlined:not(.v-text-field--single-line) .v-select__selections, .v-menu__content .v-select.v-text-field--outlined:not(.v-text-field--single-line) .v-select__selections, .v-tooltip__content .v-select.v-text-field--outlined:not(.v-text-field--single-line) .v-select__selections, .v-dialog__content .v-select.v-text-field--outlined:not(.v-text-field--single-line) .v-select__selections{padding:8px 0}[data-omfx] .v-select.v-text-field--outlined:not(.v-text-field--single-line).v-input--dense .v-select__selections, .v-menu__content .v-select.v-text-field--outlined:not(.v-text-field--single-line).v-input--dense .v-select__selections, .v-tooltip__content .v-select.v-text-field--outlined:not(.v-text-field--single-line).v-input--dense .v-select__selections, .v-dialog__content .v-select.v-text-field--outlined:not(.v-text-field--single-line).v-input--dense .v-select__selections{padding:4px 0}[data-omfx] .v-select.v-text-field input, .v-menu__content .v-select.v-text-field input, .v-tooltip__content .v-select.v-text-field input, .v-dialog__content .v-select.v-text-field input{flex:1 1;min-width:0;position:relative}[data-omfx] .v-select.v-text-field:not(.v-text-field--single-line) input, .v-menu__content .v-select.v-text-field:not(.v-text-field--single-line) input, .v-tooltip__content .v-select.v-text-field:not(.v-text-field--single-line) input, .v-dialog__content .v-select.v-text-field:not(.v-text-field--single-line) input{margin-top:0}[data-omfx] .v-select.v-select--is-menu-active .v-input__icon--append .v-icon, .v-menu__content .v-select.v-select--is-menu-active .v-input__icon--append .v-icon, .v-tooltip__content .v-select.v-select--is-menu-active .v-input__icon--append .v-icon, .v-dialog__content .v-select.v-select--is-menu-active .v-input__icon--append .v-icon{transform:rotate(180deg)}[data-omfx] .v-select.v-select--chips input, .v-menu__content .v-select.v-select--chips input, .v-tooltip__content .v-select.v-select--chips input, .v-dialog__content .v-select.v-select--chips input{margin:0}[data-omfx] .v-select.v-select--chips .v-select__selections, .v-menu__content .v-select.v-select--chips .v-select__selections, .v-tooltip__content .v-select.v-select--chips .v-select__selections, .v-dialog__content .v-select.v-select--chips .v-select__selections{min-height:42px}[data-omfx] .v-select.v-select--chips.v-input--dense .v-select__selections, .v-menu__content .v-select.v-select--chips.v-input--dense .v-select__selections, .v-tooltip__content .v-select.v-select--chips.v-input--dense .v-select__selections, .v-dialog__content .v-select.v-select--chips.v-input--dense .v-select__selections{min-height:40px}[data-omfx] .v-select.v-select--chips .v-chip--select.v-chip--active::before, .v-menu__content .v-select.v-select--chips .v-chip--select.v-chip--active::before, .v-tooltip__content .v-select.v-select--chips .v-chip--select.v-chip--active::before, .v-dialog__content .v-select.v-select--chips .v-chip--select.v-chip--active::before{opacity:.2}[data-omfx] .v-select.v-select--chips.v-select--chips--small .v-select__selections, .v-menu__content .v-select.v-select--chips.v-select--chips--small .v-select__selections, .v-tooltip__content .v-select.v-select--chips.v-select--chips--small .v-select__selections, .v-dialog__content .v-select.v-select--chips.v-select--chips--small .v-select__selections{min-height:26px}[data-omfx] .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box .v-select__selections, .v-menu__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box .v-select__selections, .v-tooltip__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box .v-select__selections, .v-dialog__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box .v-select__selections,[data-omfx] .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed .v-select__selections, .v-menu__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed .v-select__selections, .v-tooltip__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed .v-select__selections, .v-dialog__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed .v-select__selections{min-height:68px}[data-omfx] .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-input--dense .v-select__selections, .v-menu__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-input--dense .v-select__selections, .v-tooltip__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-input--dense .v-select__selections, .v-dialog__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-input--dense .v-select__selections,[data-omfx] .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-input--dense .v-select__selections, .v-menu__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-input--dense .v-select__selections, .v-tooltip__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-input--dense .v-select__selections, .v-dialog__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-input--dense .v-select__selections{min-height:40px}[data-omfx] .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small .v-select__selections, .v-menu__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small .v-select__selections, .v-tooltip__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small .v-select__selections, .v-dialog__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small .v-select__selections,[data-omfx] .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small .v-select__selections, .v-menu__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small .v-select__selections, .v-tooltip__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small .v-select__selections, .v-dialog__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small .v-select__selections{min-height:26px}[data-omfx] .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small.v-input--dense .v-select__selections, .v-menu__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small.v-input--dense .v-select__selections, .v-tooltip__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small.v-input--dense .v-select__selections, .v-dialog__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small.v-input--dense .v-select__selections,[data-omfx] .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small.v-input--dense .v-select__selections, .v-menu__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small.v-input--dense .v-select__selections, .v-tooltip__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small.v-input--dense .v-select__selections, .v-dialog__content .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small.v-input--dense .v-select__selections{min-height:38px}[data-omfx] .v-select.v-text-field--reverse .v-select__slot, .v-menu__content .v-select.v-text-field--reverse .v-select__slot, .v-tooltip__content .v-select.v-text-field--reverse .v-select__slot, .v-dialog__content .v-select.v-text-field--reverse .v-select__slot,[data-omfx] .v-select.v-text-field--reverse .v-select__selections, .v-menu__content .v-select.v-text-field--reverse .v-select__selections, .v-tooltip__content .v-select.v-text-field--reverse .v-select__selections, .v-dialog__content .v-select.v-text-field--reverse .v-select__selections{flex-direction:row-reverse}[data-omfx] .v-select.v-input--is-disabled:not(.v-input--is-readonly):not(.v-autocomplete), .v-menu__content .v-select.v-input--is-disabled:not(.v-input--is-readonly):not(.v-autocomplete), .v-tooltip__content .v-select.v-input--is-disabled:not(.v-input--is-readonly):not(.v-autocomplete), .v-dialog__content .v-select.v-input--is-disabled:not(.v-input--is-readonly):not(.v-autocomplete){pointer-events:none}[data-omfx] .v-select__selections, .v-menu__content .v-select__selections, .v-tooltip__content .v-select__selections, .v-dialog__content .v-select__selections{align-items:center;display:flex;flex:1 1;flex-wrap:wrap;line-height:18px;max-width:100%;min-width:0}[data-omfx] .v-select__selection, .v-menu__content .v-select__selection, .v-tooltip__content .v-select__selection, .v-dialog__content .v-select__selection{max-width:90%}[data-omfx] .v-select__selection--comma, .v-menu__content .v-select__selection--comma, .v-tooltip__content .v-select__selection--comma, .v-dialog__content .v-select__selection--comma{margin:7px 4px 7px 0;min-height:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}[data-omfx] .v-select.v-input--dense .v-select__selection--comma, .v-menu__content .v-select.v-input--dense .v-select__selection--comma, .v-tooltip__content .v-select.v-input--dense .v-select__selection--comma, .v-dialog__content .v-select.v-input--dense .v-select__selection--comma{margin:5px 4px 3px 0}[data-omfx] .v-select.v-input--dense .v-chip, .v-menu__content .v-select.v-input--dense .v-chip, .v-tooltip__content .v-select.v-input--dense .v-chip, .v-dialog__content .v-select.v-input--dense .v-chip{margin:0 4px 0 4px}[data-omfx] .v-select__slot, .v-menu__content .v-select__slot, .v-tooltip__content .v-select__slot, .v-dialog__content .v-select__slot{position:relative;align-items:center;display:flex;max-width:100%;min-width:0;width:100%}[data-omfx] .v-select:not(.v-text-field--single-line):not(.v-text-field--outlined) .v-select__slot>input, .v-menu__content .v-select:not(.v-text-field--single-line):not(.v-text-field--outlined) .v-select__slot>input, .v-tooltip__content .v-select:not(.v-text-field--single-line):not(.v-text-field--outlined) .v-select__slot>input, .v-dialog__content .v-select:not(.v-text-field--single-line):not(.v-text-field--outlined) .v-select__slot>input{align-self:flex-end}
|
|
1
|
+
.v-input--density-default {
|
|
2
|
+
--select-chips-margin-bottom: 0px;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.v-input--density-comfortable {
|
|
6
|
+
--select-chips-margin-bottom: 2px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.v-input--density-compact {
|
|
10
|
+
--select-chips-margin-bottom: 4px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.v-select .v-field .v-text-field__prefix,
|
|
14
|
+
.v-select .v-field .v-text-field__suffix,
|
|
15
|
+
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
|
16
|
+
cursor: pointer;
|
|
17
|
+
}
|
|
18
|
+
.v-select .v-field .v-field__input > input {
|
|
19
|
+
align-self: flex-start;
|
|
20
|
+
opacity: 1;
|
|
21
|
+
flex: 0 0;
|
|
22
|
+
position: absolute;
|
|
23
|
+
width: 100%;
|
|
24
|
+
transition: none;
|
|
25
|
+
pointer-events: none;
|
|
26
|
+
}
|
|
27
|
+
.v-select .v-field .v-field__append-inner > .v-icon {
|
|
28
|
+
margin-inline-start: 4px;
|
|
29
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
30
|
+
}
|
|
31
|
+
.v-select .v-field--dirty .v-select__selection {
|
|
32
|
+
margin-inline-end: 2px;
|
|
33
|
+
}
|
|
34
|
+
.v-select .v-field--single-line .v-select__selection-text {
|
|
35
|
+
overflow: hidden;
|
|
36
|
+
text-overflow: ellipsis;
|
|
37
|
+
white-space: nowrap;
|
|
38
|
+
}
|
|
39
|
+
.v-select__content {
|
|
40
|
+
overflow: hidden;
|
|
41
|
+
box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
42
|
+
border-radius: 4px;
|
|
43
|
+
}
|
|
44
|
+
.v-select__selection {
|
|
45
|
+
display: inline-flex;
|
|
46
|
+
letter-spacing: inherit;
|
|
47
|
+
line-height: inherit;
|
|
48
|
+
max-width: 100%;
|
|
49
|
+
}
|
|
50
|
+
.v-select--active-menu .v-field__append-inner > .v-icon {
|
|
51
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
52
|
+
transform: rotate(180deg);
|
|
53
|
+
}
|
|
54
|
+
.v-select--chips .v-select__selection {
|
|
55
|
+
margin-top: 2px;
|
|
56
|
+
margin-bottom: var(--select-chips-margin-bottom);
|
|
57
|
+
}
|
|
58
|
+
.v-select--chips .v-select__selection:first-child {
|
|
59
|
+
margin-inline-start: 0;
|
|
60
|
+
}
|
|
61
|
+
.v-select--selected .v-field .v-field__input > input {
|
|
62
|
+
opacity: 0;
|
|
63
|
+
}
|
|
2
64
|
|