@appscode/design-system 1.0.43-alpha.21 → 1.0.43-alpha.211

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.
Files changed (132) hide show
  1. package/base/utilities/_all.scss +7 -0
  2. package/base/utilities/_customize-bulma.scss +191 -0
  3. package/base/utilities/_default.scss +313 -67
  4. package/base/utilities/_derived-variables.scss +6 -1
  5. package/base/utilities/_grid.scss +29 -0
  6. package/base/utilities/_initial-variables.scss +27 -17
  7. package/base/utilities/_mixin.scss +1 -17
  8. package/base/utilities/_typography.scss +18 -14
  9. package/base/utilities/dark-theme.scss +9 -145
  10. package/components/_ac-accordion.scss +14 -5
  11. package/components/_ac-alert-box.scss +41 -7
  12. package/components/_ac-card.scss +48 -10
  13. package/components/_ac-code-highlight.scss +5 -1
  14. package/components/_ac-content-layout.scss +2 -2
  15. package/components/_ac-drag.scss +2 -0
  16. package/components/_ac-input.scss +64 -23
  17. package/components/_ac-modal.scss +1 -1
  18. package/components/_ac-multi-select.scss +247 -9
  19. package/components/_ac-options.scss +24 -9
  20. package/components/_ac-select-box.scss +13 -3
  21. package/components/_ac-table.scss +7 -5
  22. package/components/_ac-tabs.scss +46 -5
  23. package/components/_ac-terminal.scss +270 -0
  24. package/components/_all.scss +27 -0
  25. package/components/_app-drawer.scss +2 -2
  26. package/components/_breadcumb.scss +2 -0
  27. package/components/_buttons.scss +50 -37
  28. package/components/_card-body-wrapper.scss +2 -2
  29. package/components/_dashboard-header.scss +32 -0
  30. package/components/_direct-deploy.scss +69 -0
  31. package/components/_go-to-top.scss +1 -1
  32. package/components/_graph.scss +45 -0
  33. package/components/_image-upload.scss +5 -3
  34. package/components/_left-sidebar-menu.scss +124 -73
  35. package/components/_monaco-editor.scss +1 -1
  36. package/components/_navbar.scss +170 -10
  37. package/components/_overview-info.scss +3 -3
  38. package/components/_pagination.scss +8 -0
  39. package/components/_payment-card.scss +10 -1
  40. package/components/_preview-modal.scss +18 -5
  41. package/components/_pricing-table.scss +1 -1
  42. package/components/_progress-bar.scss +4 -4
  43. package/components/_subscription-card.scss +11 -4
  44. package/components/_table-of-content.scss +1 -1
  45. package/components/_tfa.scss +69 -0
  46. package/components/_transitions.scss +261 -0
  47. package/components/_wizard.scss +16 -3
  48. package/components/bbum/_all.scss +9 -0
  49. package/components/bbum/_card-team.scss +1 -1
  50. package/components/bbum/_information-center.scss +15 -1
  51. package/components/bbum/_sign-up-notification.scss +1 -1
  52. package/components/bbum/_single-post-preview.scss +2 -2
  53. package/components/bbum/_user-profile.scss +2 -3
  54. package/components/ui-builder/_ui-builder.scss +76 -1
  55. package/components/ui-builder/_vue-open-api.scss +104 -0
  56. package/layouts/_all.scss +2 -0
  57. package/layouts/_code-preview.scss +5 -2
  58. package/main.scss +6 -54
  59. package/package.json +2 -7
  60. package/plugins/theme.js +4 -0
  61. package/plugins/time-convert.js +49 -0
  62. package/plugins/vue-toaster.js +3 -0
  63. package/vue-components/v2/banner/Banner.vue +2 -2
  64. package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
  65. package/vue-components/v2/button/Button.vue +5 -0
  66. package/vue-components/v2/button/DownloadBtn.vue +45 -0
  67. package/vue-components/v2/card/Card.vue +1 -0
  68. package/vue-components/v2/card/PaymentCards.vue +11 -2
  69. package/vue-components/v2/content/ContentTable.vue +12 -7
  70. package/vue-components/v2/editor/Editor.vue +43 -24
  71. package/vue-components/v2/editor/FilteredFileEditor.vue +189 -0
  72. package/vue-components/v2/editor/MonacoEditor.vue +125 -0
  73. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
  74. package/vue-components/v2/form-fields/Input.vue +1 -1
  75. package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
  76. package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
  77. package/vue-components/v2/modal/Modal.vue +38 -4
  78. package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
  79. package/vue-components/v2/modals/JsonShowModal.vue +12 -2
  80. package/vue-components/v2/navbar/Appdrawer.vue +10 -9
  81. package/vue-components/v2/navbar/ThemeMode.vue +50 -44
  82. package/vue-components/v2/navbar/User.vue +229 -17
  83. package/vue-components/v2/notification/Notification.vue +101 -0
  84. package/vue-components/v2/notification/NotificationItem.vue +44 -0
  85. package/vue-components/v2/pagination/Pagination.vue +16 -3
  86. package/vue-components/v2/preloader/Preloader.vue +5 -5
  87. package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
  88. package/vue-components/v2/sidebar/SidebarItem.vue +23 -1
  89. package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
  90. package/vue-components/v2/tab/TabItem.vue +1 -1
  91. package/vue-components/v2/table/Table.vue +44 -8
  92. package/vue-components/v2/table/TableRow.vue +12 -2
  93. package/vue-components/v2/table/table-cell/CellValue.vue +33 -4
  94. package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
  95. package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
  96. package/vue-components/v2/tabs/EditorTabs.vue +1 -1
  97. package/vue-components/v3/button/Button.vue +6 -1
  98. package/vue-components/v3/content/ContentTable.vue +17 -2
  99. package/vue-components/v3/editor/Editor.vue +42 -33
  100. package/vue-components/v3/editor/FilteredFileEditor.vue +186 -0
  101. package/vue-components/v3/editor/MonacoEditor.vue +131 -0
  102. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +125 -0
  103. package/vue-components/v3/form/Form.vue +63 -0
  104. package/vue-components/v3/form-fields/Input.vue +11 -10
  105. package/vue-components/v3/header/HeaderItem.vue +5 -0
  106. package/vue-components/v3/header/HeaderItems.vue +5 -0
  107. package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
  108. package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
  109. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +92 -0
  110. package/vue-components/v3/modal/Modal.vue +38 -6
  111. package/vue-components/v3/modals/DeleteConfirmationModal.vue +85 -0
  112. package/vue-components/v3/modals/JsonShowModal.vue +25 -16
  113. package/vue-components/v3/modals/LongRunningTasksModal.vue +337 -0
  114. package/vue-components/v3/navbar/Appdrawer.vue +12 -7
  115. package/vue-components/v3/navbar/ThemeMode.vue +49 -47
  116. package/vue-components/v3/navbar/User.vue +242 -18
  117. package/vue-components/v3/notification/Notification.vue +98 -0
  118. package/vue-components/v3/notification/NotificationItem.vue +52 -0
  119. package/vue-components/v3/pagination/Pagination.vue +16 -3
  120. package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
  121. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
  122. package/vue-components/v3/tab/TabItem.vue +1 -1
  123. package/vue-components/v3/table/MultiInfoTable.vue +143 -0
  124. package/vue-components/v3/table/Table.vue +40 -12
  125. package/vue-components/v3/table/TableContainer.vue +34 -0
  126. package/vue-components/v3/table/TableRow.vue +62 -3
  127. package/vue-components/v3/table/table-cell/CellValue.vue +28 -3
  128. package/vue-components/v3/table/table-cell/GenericCell.vue +75 -0
  129. package/vue-components/v3/table/table-cell/ObjectCell.vue +5 -1
  130. package/vue-components/v3/tabs/EditorTabs.vue +1 -1
  131. package/vue-components/v3/tag/Tag.vue +1 -1
  132. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
@@ -32,7 +32,7 @@
32
32
  input,
33
33
  .ac-card,
34
34
  textarea {
35
- border: 1px solid $ac-primary;
35
+ border: 1px solid $ac-primary !important;
36
36
  }
37
37
 
38
38
  p {
@@ -123,8 +123,10 @@
123
123
 
124
124
  &.show-label {
125
125
  font-size: 12px;
126
+ color: $ac-color-value;
126
127
  top: -9px;
127
128
  font-weight: 500;
129
+ background-color: $ac-white;
128
130
  }
129
131
  }
130
132
 
@@ -152,6 +154,7 @@
152
154
  height: 36px;
153
155
  width: 36px;
154
156
  margin-top: 0;
157
+ padding: 10px;
155
158
  }
156
159
  }
157
160
 
@@ -174,6 +177,12 @@
174
177
  font-size: 12px;
175
178
  top: -9px;
176
179
  font-weight: 500;
180
+ color: $ac-color-value;
181
+ &.is-required {
182
+ &:after {
183
+ width: calc(100% + 10px);
184
+ }
185
+ }
177
186
  }
178
187
  }
179
188
 
@@ -263,7 +272,7 @@
263
272
  left: 15px;
264
273
  top: 11px;
265
274
  cursor: text;
266
- color: $ac-border;
275
+ color: $ac-label-text;
267
276
  position: absolute;
268
277
  z-index: 2;
269
278
  transition: 0.3s ease-in-out;
@@ -283,7 +292,7 @@
283
292
  left: 10px;
284
293
  padding: 0 5px;
285
294
  font-size: $font-size-small;
286
- color: $ac-black;
295
+ color: $ac-color-value;
287
296
 
288
297
  &:after {
289
298
  position: absolute;
@@ -333,13 +342,13 @@
333
342
  width: 35px;
334
343
  height: 100%;
335
344
  margin-top: -22.5px;
336
- color: $ac-border;
345
+ color: $ac-label-text;
337
346
  cursor: pointer;
338
347
  }
339
348
 
340
349
  .ac-dropdown-content {
341
350
  position: absolute;
342
- background-color: $ac-input-bg-color;
351
+ background-color: $ac-blue-light;
343
352
  width: 100%;
344
353
  height: auto;
345
354
  box-shadow: 0px 4px 16px rgba(132, 147, 168, 0.6);
@@ -370,25 +379,25 @@
370
379
  }
371
380
 
372
381
  .ac-textarea {
373
- border: 1px solid $ac-border;
374
- border-radius: 4px;
375
- padding: 10px 0 5px 0;
376
- // background-color: $ac-input-bg-color;
377
- transition: background-color 0.3s ease-in-out;
378
-
382
+ .ac-label {
383
+ &.is-required {
384
+ &:after {
385
+ width: calc(100% + 10px);
386
+ }
387
+ }
388
+ }
379
389
  textarea {
380
- border: none;
390
+ border: 1px solid $ac-label-text;
381
391
  background-color: transparent;
382
- padding-top: 0;
383
- padding-bottom: 0;
384
-
392
+ padding: 10px 15px;
393
+ min-height: 50px;
385
394
  &.bg-white {
386
395
  background-color: transparent;
387
396
  }
388
397
 
389
398
  &:focus {
390
399
  outline: none;
391
- border: none;
400
+ border: 1px solid $ac-primary;
392
401
  }
393
402
  }
394
403
  }
@@ -402,7 +411,7 @@
402
411
  font-weight: 400;
403
412
  width: 100%;
404
413
  border-radius: 4px;
405
- border: 1px solid $ac-border;
414
+ border: 1px solid $ac-label-text;
406
415
  padding: 8px 15px;
407
416
  font-size: $font-size-small;
408
417
 
@@ -413,7 +422,9 @@
413
422
  &.bg-white {
414
423
  background-color: $ac-white;
415
424
  }
416
-
425
+ &.StripeElement--focus {
426
+ border: 1px solid $ac-primary;
427
+ }
417
428
  &:focus {
418
429
  border: 1px solid $ac-primary;
419
430
  outline: none;
@@ -450,11 +461,12 @@
450
461
 
451
462
  span.eye {
452
463
  i.fa {
453
- color: $ac-border;
464
+ color: $ac-label-text;
454
465
  position: absolute;
455
466
  cursor: pointer;
456
467
  padding: 15px;
457
468
  right: 0;
469
+ top: 0;
458
470
  }
459
471
  }
460
472
 
@@ -489,7 +501,7 @@
489
501
  top: 10px;
490
502
  z-index: 1;
491
503
  font-size: $font-size-small;
492
- color: $ac-border;
504
+ color: $ac-label-text;
493
505
  font-weight: 400;
494
506
  }
495
507
  }
@@ -513,7 +525,7 @@
513
525
  height: 36px;
514
526
  font-weight: 400;
515
527
  border-radius: 4px;
516
- border: 1px solid $ac-border;
528
+ border: 1px solid $ac-label-text;
517
529
  font-size: $font-size-small;
518
530
 
519
531
  .file-cta {
@@ -550,7 +562,7 @@ input#captcha {
550
562
 
551
563
  &:focus {
552
564
  outline: none;
553
- border-bottom: 1px solid $ac-border;
565
+ border-bottom: 1px solid $ac-label-text;
554
566
  }
555
567
  }
556
568
 
@@ -645,6 +657,7 @@ input#captcha {
645
657
  font-size: 13px;
646
658
  padding-top: 0;
647
659
  padding-left: 40px;
660
+ height: auto;
648
661
 
649
662
  &::before {
650
663
  width: 30px;
@@ -669,6 +682,9 @@ input#captcha {
669
682
  .switch {
670
683
  &[type="checkbox"] + label {
671
684
  padding-top: 3px;
685
+ &::before {
686
+ background-color: $ac-gray-light;
687
+ }
672
688
  }
673
689
 
674
690
  &.ac-switch {
@@ -699,6 +715,14 @@ input#captcha {
699
715
  }
700
716
  }
701
717
 
718
+ .ac-single-switch.is-small .switch[type="checkbox"] + label,
719
+ .buttons.are-small
720
+ .ac-single-switch.button.ac-button
721
+ .switch[type="checkbox"]
722
+ + label {
723
+ height: 19px;
724
+ }
725
+
702
726
  // transparent input
703
727
  .transparent-input {
704
728
  display: flex;
@@ -721,7 +745,7 @@ input#captcha {
721
745
 
722
746
  &:focus {
723
747
  outline: none;
724
- border-bottom: 1px solid $ac-border;
748
+ border-bottom: 1px solid $ac-label-text;
725
749
  }
726
750
  }
727
751
  }
@@ -770,7 +794,24 @@ input#captcha {
770
794
  }
771
795
  }
772
796
  }
797
+ // dark theme start
798
+ .is-dark-theme {
799
+ .ac-single-input {
800
+ input,
801
+ .file-input,
802
+ .ac-dropdown-content {
803
+ background-color: transparent;
804
+ }
773
805
 
806
+ label {
807
+ color: $ac-label-text;
808
+ }
809
+ .button.is-information:focus {
810
+ background-color: $dark-bg-light;
811
+ }
812
+ }
813
+ }
814
+ // dark theme end
774
815
  /****************************************
775
816
  Responsive Classes
776
817
  *****************************************/
@@ -41,7 +41,7 @@
41
41
 
42
42
  &.is-large {
43
43
  .ac-modal-inner {
44
- width: 1000px;
44
+ width: 1000px !important;
45
45
  }
46
46
  }
47
47
 
@@ -17,7 +17,7 @@
17
17
  font-weight: 500;
18
18
  width: 100%;
19
19
  border-radius: 4px;
20
- border: 1px solid $ac-border;
20
+ border: 1px solid $ac-label-text;
21
21
  padding: 6px 30px 8px 20px;
22
22
  font-size: $font-size-small;
23
23
 
@@ -35,7 +35,7 @@
35
35
  }
36
36
 
37
37
  .multiselect__tag {
38
- background-color: $ac-gray-lightest;
38
+ background-color: $dark-bg-light;
39
39
  margin-top: 4px;
40
40
  margin-bottom: 0;
41
41
 
@@ -85,6 +85,7 @@
85
85
  font-size: $font-size-small;
86
86
  p {
87
87
  font-size: 13px;
88
+ color: $ac-color-text;
88
89
  }
89
90
  a {
90
91
  display: block;
@@ -150,7 +151,7 @@
150
151
  label {
151
152
  padding-left: 15px !important;
152
153
  font-size: $font-size-small !important;
153
- color: #323232 !important;
154
+ color: $ac-color-text !important;
154
155
 
155
156
  &:after {
156
157
  position: inherit !important;
@@ -163,7 +164,7 @@
163
164
 
164
165
  .multiselect__input {
165
166
  &::placeholder {
166
- color: #9b7575;
167
+ color: $ac-color-value;
167
168
  font-weight: 400;
168
169
  line-height: 1.6;
169
170
  font-size: $font-size-small;
@@ -392,7 +393,7 @@
392
393
  left: 20px;
393
394
  top: 11px;
394
395
  cursor: text;
395
- color: $ac-border;
396
+ color: $ac-label-text;
396
397
  position: absolute;
397
398
  z-index: 99;
398
399
  transition: 0.3s ease-in-out;
@@ -439,6 +440,7 @@
439
440
  li {
440
441
  .multiselect__option {
441
442
  font-size: 13px;
443
+ color: $ac-color-text;
442
444
  }
443
445
  }
444
446
  .multiselect__option--selected {
@@ -464,16 +466,43 @@ li {
464
466
  z-index: 99;
465
467
  right: 30px;
466
468
  }
469
+ &.has-refresh-button {
470
+ .multiselect__select {
471
+ z-index: 99;
472
+ right: 60px;
473
+ }
474
+ .button {
475
+ &.is-refresh {
476
+ right: 30px;
477
+ }
478
+ }
479
+ }
480
+ .button {
481
+ &.is-information {
482
+ right: 0;
483
+ }
484
+ }
485
+ }
486
+ &.has-refresh-button {
487
+ .multiselect__select {
488
+ z-index: 99;
489
+ right: 30px;
490
+ }
491
+ .button {
492
+ &.is-refresh {
493
+ right: 0;
494
+ }
495
+ }
467
496
  }
468
497
 
469
498
  .button {
470
- &.is-information {
499
+ &.is-information,
500
+ &.is-refresh {
471
501
  background-color: transparent;
472
502
  border: none;
473
503
  position: absolute;
474
- right: 0;
475
- height: 45px;
476
- width: 45px;
504
+ height: 36px;
505
+ width: 36px;
477
506
  z-index: 90;
478
507
  margin-top: 0;
479
508
 
@@ -484,11 +513,220 @@ li {
484
513
  transform: scale(0.8);
485
514
  }
486
515
  }
516
+ &.is-refresh.spin {
517
+ i {
518
+ animation: spin 1s linear infinite;
519
+ }
520
+ }
487
521
  }
488
522
  }
489
523
 
524
+ @-moz-keyframes spin {
525
+ from {
526
+ -moz-transform: rotate(0deg);
527
+ }
528
+ to {
529
+ -moz-transform: rotate(360deg);
530
+ }
531
+ }
532
+ @-webkit-keyframes spin {
533
+ from {
534
+ -webkit-transform: rotate(0deg);
535
+ }
536
+ to {
537
+ -webkit-transform: rotate(360deg);
538
+ }
539
+ }
540
+ @keyframes spin {
541
+ from {
542
+ transform: rotate(0deg);
543
+ }
544
+ to {
545
+ transform: rotate(360deg);
546
+ }
547
+ }
490
548
  // has info button end
491
549
 
550
+ // dark theme start
551
+ .is-dark-theme {
552
+ .multiselect__content-wrapper {
553
+ background: var(--dark-bg-light);
554
+ border: 1px solid $ac-white-light;
555
+
556
+ // scroll
557
+ &::-webkit-scrollbar {
558
+ border-radius: 50px;
559
+ width: 3px;
560
+ }
561
+
562
+ &::-moz-scrollbar {
563
+ border-radius: 50px;
564
+ width: 3px;
565
+ }
566
+
567
+ &::-ms-scrollbar {
568
+ border-radius: 50px;
569
+ width: 3px;
570
+ }
571
+
572
+ &::-webkit-scrollbar:hover {
573
+ width: 7px;
574
+ }
575
+
576
+ &::-moz-scrollbar:hover {
577
+ width: 7px;
578
+ }
579
+
580
+ &::-ms-scrollbar:hover {
581
+ width: 7px;
582
+ }
583
+
584
+ &::-webkit-scrollbar-thumb {
585
+ background-color: $dark-bg-light;
586
+ border-radius: 50px;
587
+ height: 2px !important;
588
+ }
589
+
590
+ &::-moz-scrollbar-thumb {
591
+ background-color: $dark-bg-light;
592
+ border-radius: 50px;
593
+ height: 2px !important;
594
+ }
595
+
596
+ &::-ms-scrollbar-thumb {
597
+ background-color: $dark-bg-light;
598
+ border-radius: 50px;
599
+ height: 2px !important;
600
+ }
601
+
602
+ &::-webkit-scrollbar-thumb:hover {
603
+ background-color: $dark-bg-light;
604
+ }
605
+
606
+ &::-moz-scrollbar-thumb:hover {
607
+ background-color: $dark-bg-light;
608
+ }
609
+
610
+ &::-ms-scrollbar-thumb:hover {
611
+ background-color: $dark-bg-light;
612
+ }
613
+
614
+ &:hover::-webkit-scrollbar-corner {
615
+ height: 40px;
616
+ }
617
+
618
+ &:hover::-moz-scrollbar-corner {
619
+ height: 40px;
620
+ }
621
+
622
+ &:hover::-ms-scrollbar-corner {
623
+ height: 40px;
624
+ }
625
+
626
+ // scroll
627
+
628
+ .multiselect__option--selected {
629
+ background: var(--dark-bg);
630
+ color: var(--ac-white-text);
631
+ }
632
+ }
633
+
634
+ .multi-select-wrapper {
635
+ background: var(--dark-bg-light);
636
+
637
+ .multiselect__content-wrapper {
638
+ background-color: var(--dark-bg-light);
639
+ background: var(--dark-bg-light);
640
+
641
+ // scroll
642
+ &::-webkit-scrollbar {
643
+ border-radius: 50px;
644
+ width: 3px;
645
+ }
646
+
647
+ &::-moz-scrollbar {
648
+ border-radius: 50px;
649
+ width: 3px;
650
+ }
651
+
652
+ &::-ms-scrollbar {
653
+ border-radius: 50px;
654
+ width: 3px;
655
+ }
656
+
657
+ &::-webkit-scrollbar:hover {
658
+ width: 7px;
659
+ }
660
+
661
+ &::-moz-scrollbar:hover {
662
+ width: 7px;
663
+ }
664
+
665
+ &::-ms-scrollbar:hover {
666
+ width: 7px;
667
+ }
668
+
669
+ &::-webkit-scrollbar-thumb {
670
+ background-color: $dark-bg-light;
671
+ border-radius: 50px;
672
+ height: 2px !important;
673
+ }
674
+
675
+ &::-moz-scrollbar-thumb {
676
+ background-color: $dark-bg-light;
677
+ border-radius: 50px;
678
+ height: 2px !important;
679
+ }
680
+
681
+ &::-ms-scrollbar-thumb {
682
+ background-color: $dark-bg-light;
683
+ border-radius: 50px;
684
+ height: 2px !important;
685
+ }
686
+
687
+ &::-webkit-scrollbar-thumb:hover {
688
+ background-color: $dark-bg-light;
689
+ }
690
+
691
+ &::-moz-scrollbar-thumb:hover {
692
+ background-color: $dark-bg-light;
693
+ }
694
+
695
+ &::-ms-scrollbar-thumb:hover {
696
+ background-color: $dark-bg-light;
697
+ }
698
+
699
+ &:hover::-webkit-scrollbar-corner {
700
+ height: 40px;
701
+ }
702
+
703
+ &:hover::-moz-scrollbar-corner {
704
+ height: 40px;
705
+ }
706
+
707
+ &:hover::-ms-scrollbar-corner {
708
+ height: 40px;
709
+ }
710
+
711
+ // scroll
712
+
713
+ .multiselect__content .multiselect__element .multiselect__option {
714
+ color: var(--ac-white-text);
715
+ }
716
+
717
+ .multiselect__option--group {
718
+ color: var(--ac-white-text);
719
+ background-color: var(--dark-bg-light);
720
+ }
721
+
722
+ .multiselect__option--selected {
723
+ color: var(--ac-white-text);
724
+ background-color: var(--dark-bg-light);
725
+ }
726
+ }
727
+ }
728
+ }
729
+ // dark theme end
492
730
  /****************************************
493
731
  Responsive Classes
494
732
  *****************************************/
@@ -26,6 +26,8 @@
26
26
  &.is-right {
27
27
  .option-dots {
28
28
  align-items: flex-end;
29
+ padding: 0 10px;
30
+ margin-right: -10px;
29
31
  }
30
32
 
31
33
  .options-items {
@@ -41,28 +43,30 @@
41
43
  border: none;
42
44
  background-color: transparent;
43
45
  transition: 0.3 ease-in-out;
46
+
44
47
 
45
48
  &:hover {
46
49
  color: $ac-primary;
47
50
  }
48
51
 
49
52
  span {
50
- width: 5px;
51
- height: 5px;
53
+ width: 4px;
54
+ height: 4px;
52
55
  background-color: $ac-color-value;
53
56
  border-radius: 50%;
54
- margin-bottom: 2px;
57
+ margin-bottom: 1px;
55
58
  }
56
59
  }
57
60
 
58
61
  .options-items {
59
- box-shadow: $ac-shadow-1;
60
62
  border-radius: 4px;
61
63
  position: absolute;
62
64
  z-index: 99;
63
65
  background-color: $ac-white;
64
66
  min-width: 160px;
65
67
  top: 30px;
68
+ padding: 5px 0;
69
+ border: 1px solid $ac-white-light;
66
70
 
67
71
  li {
68
72
  .list-button {
@@ -78,8 +82,8 @@
78
82
  display: block;
79
83
 
80
84
  &:hover {
81
- background-color: $ac-primary;
82
- color: $ac-white;
85
+ background-color: $ac-bg-light-gray;
86
+ color: $ac-primary;
83
87
  }
84
88
 
85
89
  span {
@@ -93,16 +97,27 @@
93
97
 
94
98
  a {
95
99
  font-size: $font-size-small;
96
- padding: 10px 30px;
100
+ padding: 7px 15px;
97
101
  display: block;
98
102
  text-decoration: none !important;
99
103
  color: $ac-color-text !important;
104
+ border: none;
100
105
 
101
106
  &:hover {
102
- background-color: $ac-primary;
103
- color: $ac-white !important;
107
+ background-color: $ac-bg-light-gray;
108
+ color: $ac-primary !important;
104
109
  }
105
110
  }
106
111
  }
107
112
  }
108
113
  }
114
+
115
+ // dark theme start
116
+ .is-dark-theme {
117
+ .ac-options {
118
+ .options-items {
119
+ --ac-white: var(--dark-bg-light);
120
+ }
121
+ }
122
+ }
123
+ // dark theme end
@@ -1,7 +1,7 @@
1
1
  .ac-select-box {
2
2
  select {
3
- background-color: $ac-input-bg-color;
4
- border: 1px solid $ac-border;
3
+ background-color: $ac-blue-light;
4
+ border: 1px solid $ac-label-text;
5
5
  font-size: $font-size-small;
6
6
  height: 42px;
7
7
  padding-left: 20px;
@@ -34,6 +34,16 @@
34
34
  }
35
35
 
36
36
  &.select:not(.is-multiple):not(.is-loading)::after {
37
- border-color: $ac-border;
37
+ border-color: $ac-label-text;
38
+ }
39
+ }
40
+
41
+ .is-dark-theme {
42
+ .select {
43
+ select {
44
+ background-color: $dark-bg-light;
45
+ color: $ac-full-white;
46
+ border: 1px solid $ac-white-light;
47
+ }
38
48
  }
39
49
  }
@@ -12,13 +12,13 @@
12
12
 
13
13
  /* Handle */
14
14
  &::-webkit-scrollbar-thumb {
15
- background-color: $ac-gray-light;
15
+ background-color: $ac-white-light;
16
16
  border-radius: 10px;
17
17
  }
18
18
 
19
19
  /* Handle on hover */
20
20
  &::-webkit-scrollbar-thumb:hover {
21
- background-color: $ac-gray-light;
21
+ background-color: $ac-white-light;
22
22
  }
23
23
  }
24
24
  }
@@ -137,7 +137,9 @@
137
137
  }
138
138
 
139
139
  tr {
140
- cursor: pointer;
140
+ &.is-link {
141
+ cursor: pointer;
142
+ }
141
143
  border-bottom: 1px solid var(--ac-white-light);
142
144
 
143
145
  td {
@@ -259,7 +261,7 @@
259
261
  }
260
262
  }
261
263
 
262
- &.ac-bordered {
264
+ &.ac-label-texted {
263
265
  thead {
264
266
  tr {
265
267
  th {
@@ -326,7 +328,7 @@
326
328
  }
327
329
 
328
330
  &:checked + label::after {
329
- border-color: #fafafa;
331
+ border-color: $ac-white-lighter;
330
332
  }
331
333
  }
332
334
  }