@appscode/design-system 1.0.43-alpha.26 → 1.0.43-alpha.27
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.
|
@@ -63,7 +63,7 @@ $dark-bg-light: var(--dark-bg-light);
|
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
h6.wizard-title.has-line:after {
|
|
66
|
-
--ac-input-bg-color:
|
|
66
|
+
--ac-input-bg-color: $ac-color-value;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
.ac-payment-card,
|
|
@@ -143,11 +143,13 @@ $dark-bg-light: var(--dark-bg-light);
|
|
|
143
143
|
|
|
144
144
|
.multiselect__content-wrapper {
|
|
145
145
|
background: var(--dark-bg-light);
|
|
146
|
+
|
|
146
147
|
.multiselect__option--selected {
|
|
147
148
|
background: var(--dark-bg);
|
|
148
149
|
color: var(--ac-white-text);
|
|
149
150
|
}
|
|
150
151
|
}
|
|
152
|
+
|
|
151
153
|
.multi-select-wrapper {
|
|
152
154
|
background: var(--dark-bg-light);
|
|
153
155
|
|
|
@@ -155,6 +157,77 @@ $dark-bg-light: var(--dark-bg-light);
|
|
|
155
157
|
background-color: var(--dark-bg-light);
|
|
156
158
|
background: var(--dark-bg-light);
|
|
157
159
|
|
|
160
|
+
// scroll
|
|
161
|
+
&::-webkit-scrollbar {
|
|
162
|
+
border-radius: 50px;
|
|
163
|
+
width: 3px;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
&::-moz-scrollbar {
|
|
167
|
+
border-radius: 50px;
|
|
168
|
+
width: 3px;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
&::-ms-scrollbar {
|
|
172
|
+
border-radius: 50px;
|
|
173
|
+
width: 3px;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
&::-webkit-scrollbar:hover {
|
|
177
|
+
width: 7px;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
&::-moz-scrollbar:hover {
|
|
181
|
+
width: 7px;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
&::-ms-scrollbar:hover {
|
|
185
|
+
width: 7px;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
&::-webkit-scrollbar-thumb {
|
|
189
|
+
background-color: $dark-bg-light;
|
|
190
|
+
border-radius: 50px;
|
|
191
|
+
height: 2px !important;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
&::-moz-scrollbar-thumb {
|
|
195
|
+
background-color: $dark-bg-light;
|
|
196
|
+
border-radius: 50px;
|
|
197
|
+
height: 2px !important;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
&::-ms-scrollbar-thumb {
|
|
201
|
+
background-color: $dark-bg-light;
|
|
202
|
+
border-radius: 50px;
|
|
203
|
+
height: 2px !important;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
&::-webkit-scrollbar-thumb:hover {
|
|
207
|
+
background-color: $dark-bg-light;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
&::-moz-scrollbar-thumb:hover {
|
|
211
|
+
background-color: $dark-bg-light;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
&::-ms-scrollbar-thumb:hover {
|
|
215
|
+
background-color: $dark-bg-light;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
&:hover::-webkit-scrollbar-corner {
|
|
219
|
+
height: 40px;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
&:hover::-moz-scrollbar-corner {
|
|
223
|
+
height: 40px;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
&:hover::-ms-scrollbar-corner {
|
|
227
|
+
height: 40px;
|
|
228
|
+
}
|
|
229
|
+
// scroll
|
|
230
|
+
|
|
158
231
|
.multiselect__content .multiselect__element .multiselect__option {
|
|
159
232
|
color: var(--ac-white-text);
|
|
160
233
|
}
|
|
@@ -359,11 +359,13 @@
|
|
|
359
359
|
.ac-options.is-right {
|
|
360
360
|
.option-dots {
|
|
361
361
|
transition: 0.3s;
|
|
362
|
+
|
|
362
363
|
i.fa {
|
|
363
364
|
&.fa-angle-left {
|
|
364
365
|
font-size: 18px;
|
|
365
366
|
}
|
|
366
367
|
}
|
|
368
|
+
|
|
367
369
|
&:active {
|
|
368
370
|
i.fa {
|
|
369
371
|
background-color: $ac-white-lighter;
|
|
@@ -374,52 +376,63 @@
|
|
|
374
376
|
border-radius: 50%;
|
|
375
377
|
}
|
|
376
378
|
}
|
|
379
|
+
|
|
377
380
|
&:hover {
|
|
378
381
|
color: $ac-primary !important;
|
|
379
382
|
transform: scale(1.2);
|
|
380
383
|
}
|
|
381
384
|
}
|
|
382
385
|
}
|
|
386
|
+
|
|
383
387
|
.is-cluster-logo {
|
|
384
388
|
display: flex;
|
|
385
389
|
align-items: center;
|
|
386
390
|
margin-left: -8px;
|
|
387
391
|
padding: 5px;
|
|
388
392
|
}
|
|
393
|
+
|
|
389
394
|
.multiselect {
|
|
390
395
|
height: 50px;
|
|
391
396
|
width: 234px;
|
|
392
397
|
left: 0px;
|
|
393
398
|
top: -5px;
|
|
399
|
+
|
|
394
400
|
.multiselect__select {
|
|
395
401
|
height: 50px;
|
|
396
402
|
top: 4px;
|
|
397
403
|
}
|
|
404
|
+
|
|
398
405
|
.multiselect__tags {
|
|
399
406
|
border: none !important;
|
|
400
407
|
background-color: $ac-bg-light-gray;
|
|
401
408
|
min-height: 54px;
|
|
402
409
|
border-radius: 0;
|
|
410
|
+
|
|
403
411
|
.multiselect__placeholder {
|
|
404
412
|
padding-top: 12px !important;
|
|
405
413
|
font-size: 14px;
|
|
406
414
|
}
|
|
415
|
+
|
|
407
416
|
.multiselect__input {
|
|
408
417
|
background-color: $ac-bg-light-gray !important;
|
|
409
418
|
top: 13px;
|
|
419
|
+
|
|
410
420
|
&::placeholder {
|
|
411
421
|
font-size: 12px;
|
|
412
422
|
font-weight: 500;
|
|
413
423
|
}
|
|
414
424
|
}
|
|
415
425
|
}
|
|
426
|
+
|
|
416
427
|
.multiselect__single {
|
|
417
428
|
background-color: $ac-bg-light-gray !important;
|
|
418
429
|
top: 14px !important;
|
|
430
|
+
|
|
419
431
|
img {
|
|
420
432
|
width: 20px;
|
|
421
433
|
margin-right: 8px;
|
|
422
434
|
}
|
|
435
|
+
|
|
423
436
|
span {
|
|
424
437
|
span {
|
|
425
438
|
overflow: hidden;
|
|
@@ -433,19 +446,25 @@
|
|
|
433
446
|
}
|
|
434
447
|
}
|
|
435
448
|
}
|
|
449
|
+
|
|
436
450
|
.multiselect__content-wrapper {
|
|
451
|
+
border: 1px solid $ac-white-light;
|
|
452
|
+
|
|
437
453
|
.multiselect__content {
|
|
438
454
|
.multiselect__element {
|
|
439
455
|
.multiselect__option {
|
|
440
456
|
display: flex;
|
|
441
457
|
align-items: center;
|
|
442
458
|
font-size: 14px;
|
|
459
|
+
|
|
443
460
|
img {
|
|
444
461
|
width: 25px;
|
|
445
462
|
}
|
|
463
|
+
|
|
446
464
|
p {
|
|
447
465
|
font-weight: 500;
|
|
448
466
|
}
|
|
467
|
+
|
|
449
468
|
.location {
|
|
450
469
|
font-weight: 400;
|
|
451
470
|
opacity: 0.8;
|
|
@@ -455,6 +474,7 @@
|
|
|
455
474
|
}
|
|
456
475
|
}
|
|
457
476
|
}
|
|
477
|
+
|
|
458
478
|
// cluster switcher end
|
|
459
479
|
/****************************************
|
|
460
480
|
Responsive Classes
|