vgapp 0.2.4 → 0.2.6

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.
@@ -1,256 +1,256 @@
1
- @charset "UTF-8";
2
- /**
3
- *--------------------------------------------------------------------------
4
- * Модуль: VGSELECT
5
- * Автор: Vegas DEV
6
- * Лицензия: смотри LICENSE
7
- *--------------------------------------------------------------------------
8
- **/
9
- select.vg-select {
10
- position: absolute;
11
- left: 0;
12
- top: 0;
13
- opacity: 0;
14
- z-index: -1000;
15
- width: 100%;
16
- height: 100%;
17
- display: inline-block;
18
- visibility: hidden;
19
- }
20
-
21
- .vg-select {
22
- --vg-select-current-background-color: white ;
23
- --vg-select-current-color: black ;
24
- --vg-select-current-border-width: 1px ;
25
- --vg-select-current-border-style: solid ;
26
- --vg-select-current-border-color: #dddddd ;
27
- --vg-select-current-border-radius: 5px ;
28
- --vg-select-current-padding-left: 16px ;
29
- --vg-select-current-padding-right: 40px ;
30
- --vg-select-current-padding-top: 16px ;
31
- --vg-select-current-padding-bottom: 16px ;
32
- --vg-select-current-line-height: 1.1 ;
33
- --vg-select-current-font-size: 16px ;
34
- --vg-select-current-z-index: 10 ;
35
- --vg-select-current-placehoder-color: rgba(0, 0, 0, 0.32) ;
36
- --vg-select-current-placehoder-font-size: 16px ;
37
- --vg-select-dropdown-background-color: white ;
38
- --vg-select-dropdown-color: black ;
39
- --vg-select-dropdown-border-width: 1px ;
40
- --vg-select-dropdown-border-style: solid ;
41
- --vg-select-dropdown-border-color: #dddddd ;
42
- --vg-select-dropdown-border-radius: 0.375rem ;
43
- --vg-select-dropdown-box-shadow: 0 7px 12px 1px rgba(68, 68, 68, 0.11) ;
44
- --vg-select-dropdown-z-index: 15 ;
45
- --vg-select-list-background-color: transparent ;
46
- --vg-select-list-color: black ;
47
- --vg-select-list-padding-left: 8px ;
48
- --vg-select-list-padding-right: 8px ;
49
- --vg-select-list-padding-top: 8px ;
50
- --vg-select-list-padding-bottom: 8px ;
51
- --vg-select-list-border-bottom-width: 1px ;
52
- --vg-select-list-border-bottom-style: solid ;
53
- --vg-select-list-border-bottom-color: #f5f5f5 ;
54
- --vg-select-optgroup-background-color: transparent ;
55
- --vg-select-optgroup-color: #000 ;
56
- --vg-select-optgroup-padding-left: 8px ;
57
- --vg-select-optgroup-padding-right: 8px ;
58
- --vg-select-optgroup-padding-top: 8px ;
59
- --vg-select-optgroup-padding-bottom: 8px ;
60
- --vg-select-optgroup-border-bottom-width: 1px ;
61
- --vg-select-optgroup-border-bottom-style: solid ;
62
- --vg-select-optgroup-border-bottom-color: #838383 ;
63
- --vg-select-optgroup-font-weight: 500 ;
64
- --vg-select-optgroup-hover-background-color: #f7f7f7 ;
65
- --vg-select-optgroup-hover-color: black ;
66
- --vg-select-optgroup-hover-border-bottom-color: #f5f5f5 ;
67
- --vg-select-list-hover-background-color: #f7f7f7 ;
68
- --vg-select-list-hover-color: black ;
69
- --vg-select-list-hover-border-bottom-color: #f5f5f5 ;
70
- --vg-select-search-background-color: #f2f2f2 ;
71
- --vg-select-search-color: #000000 ;
72
- --vg-select-list-max-height: 286px;
73
- --vg-select-list-scrollbar-width: 6px;
74
- --vg-select-list-scrollbar-bg: #F5F5F5;
75
- --vg-select-list-scrollbar-thumb: #999;
76
- position: relative;
77
- }
78
- .vg-select:not(.show) .vg-select-dropdown {
79
- display: none;
80
- }
81
- .vg-select-current {
82
- background-color: var(--vg-select-current-background-color);
83
- color: var(--vg-select-current-color);
84
- border-width: var(--vg-select-current-border-width);
85
- border-style: var(--vg-select-current-border-style);
86
- border-color: var(--vg-select-current-border-color);
87
- border-radius: var(--vg-select-current-border-radius);
88
- padding-left: var(--vg-select-current-padding-left);
89
- padding-right: var(--vg-select-current-padding-right);
90
- padding-top: var(--vg-select-current-padding-top);
91
- padding-bottom: var(--vg-select-current-padding-bottom);
92
- line-height: var(--vg-select-current-line-height);
93
- font-size: var(--vg-select-current-font-size);
94
- z-index: var(--vg-select-current-z-index);
95
- box-sizing: border-box;
96
- cursor: pointer;
97
- outline: none;
98
- position: relative;
99
- white-space: nowrap;
100
- overflow: hidden;
101
- text-overflow: ellipsis;
102
- }
103
- .vg-select-current:after {
104
- content: "";
105
- position: absolute;
106
- right: 16px;
107
- top: 50%;
108
- transform: translateY(-50%);
109
- transition: all 0.4s ease-in-out;
110
- background-image: url('data:image/svg+xml, <svg aria-hidden="true" focusable="false" data-prefix="fa-light" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M4 181C7 178 12 176 16 176C20 176 24 177 27 180L224 362L421 180C428 174 438 175 444 181C450 188 449 198 443 204L235 396C229 401 219 401 213 396L5 204C-1 198 -2 188 4 181Z" fill="gray"/></svg>');
111
- background-repeat: no-repeat;
112
- width: 16px;
113
- height: 16px;
114
- }
115
- .vg-select-current--placeholder {
116
- color: var(--vg-select-current-placehoder-color);
117
- font-size: var(--vg-select-current-font-size);
118
- }
119
- .vg-select-dropdown {
120
- background-color: var(--vg-select-dropdown-background-color);
121
- color: var(--vg-select-dropdown-color);
122
- border-width: var(--vg-select-dropdown-border-width);
123
- border-style: var(--vg-select-dropdown-border-style);
124
- border-color: var(--vg-select-dropdown-border-color);
125
- border-radius: var(--vg-select-dropdown-border-radius);
126
- box-shadow: var(--vg-select-dropdown-box-shadow);
127
- z-index: var(--vg-select-dropdown-z-index);
128
- position: absolute;
129
- box-sizing: border-box;
130
- opacity: 0;
131
- overflow: hidden;
132
- padding: 0;
133
- top: 100%;
134
- left: 0;
135
- width: 100%;
136
- height: 0;
137
- pointer-events: auto;
138
- transform-origin: 50% 0;
139
- transform: scale(0.75) translateY(-11px);
140
- transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
141
- z-index: var(--vg-select-dropdown-z-index);
142
- margin-top: 0.25rem;
143
- }
144
- .vg-select-list {
145
- margin: 0;
146
- padding: 0;
147
- list-style: none;
148
- display: flex;
149
- flex-direction: column;
150
- max-height: var(--vg-select-list-max-height);
151
- overflow-y: auto;
152
- }
153
- .vg-select-list::-webkit-scrollbar-track {
154
- -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
155
- background-color: var(--vg-select-list-scrollbar-bg);
156
- }
157
- .vg-select-list::-webkit-scrollbar {
158
- width: var(--vg-select-list-scrollbar-width);
159
- background-color: var(--vg-select-list-scrollbar-bg);
160
- }
161
- .vg-select-list::-webkit-scrollbar-thumb {
162
- background-color: var(--vg-select-list-scrollbar-thumb);
163
- }
164
- .vg-select-list--option {
165
- background-color: var(--vg-select-list-background-color);
166
- color: var(--vg-select-list-color);
167
- padding-left: var(--vg-select-list-padding-left);
168
- padding-right: var(--vg-select-list-padding-right);
169
- padding-top: var(--vg-select-list-padding-top);
170
- padding-bottom: var(--vg-select-list-padding-bottom);
171
- border-bottom-width: var(--vg-select-list-border-bottom-width);
172
- border-bottom-style: var(--vg-select-list-border-bottom-style);
173
- border-bottom-color: var(--vg-select-list-border-bottom-color);
174
- display: block;
175
- width: 100%;
176
- cursor: pointer;
177
- transition: all 0.4s ease-in-out;
178
- }
179
- .vg-select-list--option:last-child {
180
- border: none;
181
- }
182
- .vg-select-list--option:hover, .vg-select-list--option.selected {
183
- background-color: var(--vg-select-list-hover-background-color);
184
- color: var(--vg-select-list-hover-color);
185
- border-bottom-color: var(--vg-select-list-hover-border-bottom-color);
186
- }
187
- .vg-select-list--option.disabled {
188
- opacity: 0.6;
189
- cursor: not-allowed;
190
- }
191
- .vg-select-list--option.hidden {
192
- display: none !important;
193
- }
194
- .vg-select-list--optgroup {
195
- list-style: none;
196
- padding: 0;
197
- }
198
- .vg-select-list--optgroup + .vg-select-list--optgroup {
199
- border-top-width: var(--vg-select-optgroup-border-bottom-width);
200
- border-top-style: var(--vg-select-optgroup-border-bottom-style);
201
- border-top-color: var(--vg-select-optgroup-border-bottom-color);
202
- }
203
- .vg-select-list--optgroup > li {
204
- --vg-select-list-padding-left: 16px;
205
- }
206
- .vg-select-list--optgroup-title {
207
- background-color: var(--vg-select-optgroup-background-color);
208
- color: var(--vg-select-optgroup-color);
209
- padding-left: var(--vg-select-optgroup-padding-left);
210
- padding-right: var(--vg-select-optgroup-padding-right);
211
- padding-top: var(--vg-select-optgroup-padding-top);
212
- padding-bottom: var(--vg-select-optgroup-padding-bottom);
213
- border-bottom-width: var(--vg-select-optgroup-border-bottom-width);
214
- border-bottom-style: var(--vg-select-optgroup-border-bottom-style);
215
- border-bottom-color: var(--vg-select-optgroup-border-bottom-color);
216
- font-weight: var(--vg-select-optgroup-font-weight);
217
- }
218
- .vg-select-search input {
219
- background-color: var(--vg-select-search-background-color);
220
- color: var(--vg-select-search-color);
221
- padding: 8px;
222
- border: none;
223
- outline: none;
224
- width: 100%;
225
- }
226
- .vg-select.show .vg-select-current:after {
227
- transform: translateY(-50%) rotate(180deg);
228
- }
229
- .vg-select.show .vg-select-dropdown {
230
- display: block;
231
- }
232
- .vg-select.active .vg-select-dropdown {
233
- transform: scale(1) translateY(0);
234
- opacity: 1;
235
- box-sizing: border-box;
236
- height: auto;
237
- }
238
- .vg-select.is-invalid .vg-select-current {
239
- background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
240
- background-repeat: no-repeat;
241
- background-position: right calc(1.975em + 0.1875rem) center;
242
- background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
243
- --vg-select-current-padding-right: 55px;
244
- }
245
- .vg-select.disabled:before {
246
- content: "";
247
- position: absolute;
248
- width: 100%;
249
- height: 100%;
250
- z-index: 12;
251
- }
252
- .vg-select.disabled > .vg-select-current {
253
- opacity: 0.75;
254
- }
255
-
256
- /*# sourceMappingURL=vgselect.css.map */
1
+ @charset "UTF-8";
2
+ /**
3
+ *--------------------------------------------------------------------------
4
+ * Модуль: VGSELECT
5
+ * Автор: Vegas DEV
6
+ * Лицензия: смотри LICENSE
7
+ *--------------------------------------------------------------------------
8
+ **/
9
+ select.vg-select {
10
+ position: absolute;
11
+ left: 0;
12
+ top: 0;
13
+ opacity: 0;
14
+ z-index: -1000;
15
+ width: 100%;
16
+ height: 100%;
17
+ display: inline-block;
18
+ visibility: hidden;
19
+ }
20
+
21
+ .vg-select {
22
+ --vg-select-current-background-color: white ;
23
+ --vg-select-current-color: black ;
24
+ --vg-select-current-border-width: 1px ;
25
+ --vg-select-current-border-style: solid ;
26
+ --vg-select-current-border-color: #dddddd ;
27
+ --vg-select-current-border-radius: 5px ;
28
+ --vg-select-current-padding-left: 16px ;
29
+ --vg-select-current-padding-right: 40px ;
30
+ --vg-select-current-padding-top: 16px ;
31
+ --vg-select-current-padding-bottom: 16px ;
32
+ --vg-select-current-line-height: 1.1 ;
33
+ --vg-select-current-font-size: 16px ;
34
+ --vg-select-current-z-index: 10 ;
35
+ --vg-select-current-placehoder-color: rgba(0, 0, 0, 0.32) ;
36
+ --vg-select-current-placehoder-font-size: 16px ;
37
+ --vg-select-dropdown-background-color: white ;
38
+ --vg-select-dropdown-color: black ;
39
+ --vg-select-dropdown-border-width: 1px ;
40
+ --vg-select-dropdown-border-style: solid ;
41
+ --vg-select-dropdown-border-color: #dddddd ;
42
+ --vg-select-dropdown-border-radius: 0.375rem ;
43
+ --vg-select-dropdown-box-shadow: 0 7px 12px 1px rgba(68, 68, 68, 0.11) ;
44
+ --vg-select-dropdown-z-index: 15 ;
45
+ --vg-select-list-background-color: transparent ;
46
+ --vg-select-list-color: black ;
47
+ --vg-select-list-padding-left: 8px ;
48
+ --vg-select-list-padding-right: 8px ;
49
+ --vg-select-list-padding-top: 8px ;
50
+ --vg-select-list-padding-bottom: 8px ;
51
+ --vg-select-list-border-bottom-width: 1px ;
52
+ --vg-select-list-border-bottom-style: solid ;
53
+ --vg-select-list-border-bottom-color: #f5f5f5 ;
54
+ --vg-select-optgroup-background-color: transparent ;
55
+ --vg-select-optgroup-color: #000 ;
56
+ --vg-select-optgroup-padding-left: 8px ;
57
+ --vg-select-optgroup-padding-right: 8px ;
58
+ --vg-select-optgroup-padding-top: 8px ;
59
+ --vg-select-optgroup-padding-bottom: 8px ;
60
+ --vg-select-optgroup-border-bottom-width: 1px ;
61
+ --vg-select-optgroup-border-bottom-style: solid ;
62
+ --vg-select-optgroup-border-bottom-color: #838383 ;
63
+ --vg-select-optgroup-font-weight: 500 ;
64
+ --vg-select-optgroup-hover-background-color: #f7f7f7 ;
65
+ --vg-select-optgroup-hover-color: black ;
66
+ --vg-select-optgroup-hover-border-bottom-color: #f5f5f5 ;
67
+ --vg-select-list-hover-background-color: #f7f7f7 ;
68
+ --vg-select-list-hover-color: black ;
69
+ --vg-select-list-hover-border-bottom-color: #f5f5f5 ;
70
+ --vg-select-search-background-color: #f2f2f2 ;
71
+ --vg-select-search-color: #000000 ;
72
+ --vg-select-list-max-height: 286px;
73
+ --vg-select-list-scrollbar-width: 6px;
74
+ --vg-select-list-scrollbar-bg: #F5F5F5;
75
+ --vg-select-list-scrollbar-thumb: #999;
76
+ position: relative;
77
+ }
78
+ .vg-select:not(.show) .vg-select-dropdown {
79
+ display: none;
80
+ }
81
+ .vg-select-current {
82
+ background-color: var(--vg-select-current-background-color);
83
+ color: var(--vg-select-current-color);
84
+ border-width: var(--vg-select-current-border-width);
85
+ border-style: var(--vg-select-current-border-style);
86
+ border-color: var(--vg-select-current-border-color);
87
+ border-radius: var(--vg-select-current-border-radius);
88
+ padding-left: var(--vg-select-current-padding-left);
89
+ padding-right: var(--vg-select-current-padding-right);
90
+ padding-top: var(--vg-select-current-padding-top);
91
+ padding-bottom: var(--vg-select-current-padding-bottom);
92
+ line-height: var(--vg-select-current-line-height);
93
+ font-size: var(--vg-select-current-font-size);
94
+ z-index: var(--vg-select-current-z-index);
95
+ box-sizing: border-box;
96
+ cursor: pointer;
97
+ outline: none;
98
+ position: relative;
99
+ white-space: nowrap;
100
+ overflow: hidden;
101
+ text-overflow: ellipsis;
102
+ }
103
+ .vg-select-current:after {
104
+ content: "";
105
+ position: absolute;
106
+ right: 16px;
107
+ top: 50%;
108
+ transform: translateY(-50%);
109
+ transition: all 0.4s ease-in-out;
110
+ background-image: url('data:image/svg+xml, <svg aria-hidden="true" focusable="false" data-prefix="fa-light" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M4 181C7 178 12 176 16 176C20 176 24 177 27 180L224 362L421 180C428 174 438 175 444 181C450 188 449 198 443 204L235 396C229 401 219 401 213 396L5 204C-1 198 -2 188 4 181Z" fill="gray"/></svg>');
111
+ background-repeat: no-repeat;
112
+ width: 16px;
113
+ height: 16px;
114
+ }
115
+ .vg-select-current--placeholder {
116
+ color: var(--vg-select-current-placehoder-color);
117
+ font-size: var(--vg-select-current-font-size);
118
+ }
119
+ .vg-select-dropdown {
120
+ background-color: var(--vg-select-dropdown-background-color);
121
+ color: var(--vg-select-dropdown-color);
122
+ border-width: var(--vg-select-dropdown-border-width);
123
+ border-style: var(--vg-select-dropdown-border-style);
124
+ border-color: var(--vg-select-dropdown-border-color);
125
+ border-radius: var(--vg-select-dropdown-border-radius);
126
+ box-shadow: var(--vg-select-dropdown-box-shadow);
127
+ z-index: var(--vg-select-dropdown-z-index);
128
+ position: absolute;
129
+ box-sizing: border-box;
130
+ opacity: 0;
131
+ overflow: hidden;
132
+ padding: 0;
133
+ top: 100%;
134
+ left: 0;
135
+ width: 100%;
136
+ height: 0;
137
+ pointer-events: auto;
138
+ transform-origin: 50% 0;
139
+ transform: scale(0.75) translateY(-11px);
140
+ transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
141
+ z-index: var(--vg-select-dropdown-z-index);
142
+ margin-top: 0.25rem;
143
+ }
144
+ .vg-select-list {
145
+ margin: 0;
146
+ padding: 0;
147
+ list-style: none;
148
+ display: flex;
149
+ flex-direction: column;
150
+ max-height: var(--vg-select-list-max-height);
151
+ overflow-y: auto;
152
+ }
153
+ .vg-select-list::-webkit-scrollbar-track {
154
+ -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
155
+ background-color: var(--vg-select-list-scrollbar-bg);
156
+ }
157
+ .vg-select-list::-webkit-scrollbar {
158
+ width: var(--vg-select-list-scrollbar-width);
159
+ background-color: var(--vg-select-list-scrollbar-bg);
160
+ }
161
+ .vg-select-list::-webkit-scrollbar-thumb {
162
+ background-color: var(--vg-select-list-scrollbar-thumb);
163
+ }
164
+ .vg-select-list--option {
165
+ background-color: var(--vg-select-list-background-color);
166
+ color: var(--vg-select-list-color);
167
+ padding-left: var(--vg-select-list-padding-left);
168
+ padding-right: var(--vg-select-list-padding-right);
169
+ padding-top: var(--vg-select-list-padding-top);
170
+ padding-bottom: var(--vg-select-list-padding-bottom);
171
+ border-bottom-width: var(--vg-select-list-border-bottom-width);
172
+ border-bottom-style: var(--vg-select-list-border-bottom-style);
173
+ border-bottom-color: var(--vg-select-list-border-bottom-color);
174
+ display: block;
175
+ width: 100%;
176
+ cursor: pointer;
177
+ transition: all 0.4s ease-in-out;
178
+ }
179
+ .vg-select-list--option:last-child {
180
+ border: none;
181
+ }
182
+ .vg-select-list--option:hover, .vg-select-list--option.selected {
183
+ background-color: var(--vg-select-list-hover-background-color);
184
+ color: var(--vg-select-list-hover-color);
185
+ border-bottom-color: var(--vg-select-list-hover-border-bottom-color);
186
+ }
187
+ .vg-select-list--option.disabled {
188
+ opacity: 0.6;
189
+ cursor: not-allowed;
190
+ }
191
+ .vg-select-list--option.hidden {
192
+ display: none !important;
193
+ }
194
+ .vg-select-list--optgroup {
195
+ list-style: none;
196
+ padding: 0;
197
+ }
198
+ .vg-select-list--optgroup + .vg-select-list--optgroup {
199
+ border-top-width: var(--vg-select-optgroup-border-bottom-width);
200
+ border-top-style: var(--vg-select-optgroup-border-bottom-style);
201
+ border-top-color: var(--vg-select-optgroup-border-bottom-color);
202
+ }
203
+ .vg-select-list--optgroup > li {
204
+ --vg-select-list-padding-left: 16px;
205
+ }
206
+ .vg-select-list--optgroup-title {
207
+ background-color: var(--vg-select-optgroup-background-color);
208
+ color: var(--vg-select-optgroup-color);
209
+ padding-left: var(--vg-select-optgroup-padding-left);
210
+ padding-right: var(--vg-select-optgroup-padding-right);
211
+ padding-top: var(--vg-select-optgroup-padding-top);
212
+ padding-bottom: var(--vg-select-optgroup-padding-bottom);
213
+ border-bottom-width: var(--vg-select-optgroup-border-bottom-width);
214
+ border-bottom-style: var(--vg-select-optgroup-border-bottom-style);
215
+ border-bottom-color: var(--vg-select-optgroup-border-bottom-color);
216
+ font-weight: var(--vg-select-optgroup-font-weight);
217
+ }
218
+ .vg-select-search input {
219
+ background-color: var(--vg-select-search-background-color);
220
+ color: var(--vg-select-search-color);
221
+ padding: 8px;
222
+ border: none;
223
+ outline: none;
224
+ width: 100%;
225
+ }
226
+ .vg-select.show .vg-select-current:after {
227
+ transform: translateY(-50%) rotate(180deg);
228
+ }
229
+ .vg-select.show .vg-select-dropdown {
230
+ display: block;
231
+ }
232
+ .vg-select.active .vg-select-dropdown {
233
+ transform: scale(1) translateY(0);
234
+ opacity: 1;
235
+ box-sizing: border-box;
236
+ height: auto;
237
+ }
238
+ .vg-select.is-invalid .vg-select-current {
239
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
240
+ background-repeat: no-repeat;
241
+ background-position: right calc(1.975em + 0.1875rem) center;
242
+ background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
243
+ --vg-select-current-padding-right: 55px;
244
+ }
245
+ .vg-select.disabled:before {
246
+ content: "";
247
+ position: absolute;
248
+ width: 100%;
249
+ height: 100%;
250
+ z-index: 12;
251
+ }
252
+ .vg-select.disabled > .vg-select-current {
253
+ opacity: 0.75;
254
+ }
255
+
256
+ /*# sourceMappingURL=vgselect.css.map */
@@ -36,7 +36,7 @@ class VGSidebar extends BaseModule {
36
36
  backdrop: true,
37
37
  overflow: true,
38
38
  keyboard: true,
39
- hash: true,
39
+ hash: false,
40
40
  animation: {
41
41
  enable: false,
42
42
  in: 'animate__rollIn',