@appscode/design-system 1.0.43-alpha.16 → 1.0.43-alpha.160

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 (109) hide show
  1. package/base/utilities/_default.scss +267 -4
  2. package/base/utilities/_derived-variables.scss +0 -1
  3. package/base/utilities/_initial-variables.scss +17 -176
  4. package/base/utilities/_mixin.scss +1 -17
  5. package/base/utilities/_typography.scss +14 -4
  6. package/base/utilities/dark-theme.scss +25 -0
  7. package/components/_ac-alert-box.scss +13 -5
  8. package/components/_ac-card.scss +42 -7
  9. package/components/_ac-code-highlight.scss +5 -1
  10. package/components/_ac-content-layout.scss +2 -2
  11. package/components/_ac-input.scss +63 -23
  12. package/components/_ac-multi-select.scss +187 -5
  13. package/components/_ac-options.scss +24 -9
  14. package/components/_ac-select-box.scss +14 -4
  15. package/components/_ac-table.scss +5 -3
  16. package/components/_ac-tabs.scss +39 -3
  17. package/components/_ac-terminal.scss +272 -0
  18. package/components/_app-drawer.scss +2 -2
  19. package/components/_breadcumb.scss +2 -0
  20. package/components/_buttons.scss +39 -7
  21. package/components/_card-body-wrapper.scss +2 -2
  22. package/components/_dashboard-header.scss +32 -0
  23. package/components/_direct-deploy.scss +69 -0
  24. package/components/_go-to-top.scss +1 -1
  25. package/components/_graph.scss +45 -0
  26. package/components/_image-upload.scss +5 -3
  27. package/components/_left-sidebar-menu.scss +193 -39
  28. package/components/_monaco-editor.scss +1 -1
  29. package/components/_navbar.scss +108 -7
  30. package/components/_overview-info.scss +4 -4
  31. package/components/_pagination.scss +8 -0
  32. package/components/_payment-card.scss +10 -1
  33. package/components/_preview-modal.scss +15 -4
  34. package/components/_pricing-table.scss +1 -1
  35. package/components/_progress-bar.scss +4 -4
  36. package/components/_subscription-card.scss +12 -5
  37. package/components/_table-of-content.scss +1 -1
  38. package/components/_tfa.scss +69 -0
  39. package/components/_transitions.scss +261 -0
  40. package/components/_wizard.scss +15 -3
  41. package/components/ac-toaster/_ac-toasted.scss +1 -1
  42. package/components/bbum/_card-team.scss +15 -7
  43. package/components/bbum/_information-center.scss +15 -1
  44. package/components/bbum/_mobile-desktop.scss +1 -1
  45. package/components/bbum/_sign-up-notification.scss +3 -3
  46. package/components/bbum/_single-post-preview.scss +1 -1
  47. package/components/bbum/_user-profile.scss +97 -90
  48. package/components/ui-builder/_ui-builder.scss +19 -2
  49. package/components/ui-builder/_vue-open-api.scss +98 -0
  50. package/main.scss +4 -0
  51. package/package.json +2 -7
  52. package/plugins/theme.js +4 -0
  53. package/plugins/vue-toaster.js +3 -0
  54. package/vue-components/v2/banner/Banner.vue +2 -2
  55. package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
  56. package/vue-components/v2/button/Button.vue +5 -0
  57. package/vue-components/v2/button/DownloadBtn.vue +45 -0
  58. package/vue-components/v2/card/PaymentCards.vue +11 -2
  59. package/vue-components/v2/content/ContentTable.vue +12 -7
  60. package/vue-components/v2/editor/Editor.vue +36 -5
  61. package/vue-components/v2/editor/FilteredFileEditor.vue +188 -0
  62. package/vue-components/v2/editor/MonacoEditor.vue +125 -0
  63. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
  64. package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
  65. package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
  66. package/vue-components/v2/modal/Modal.vue +37 -12
  67. package/vue-components/v2/modals/DeleteConfirmationModal.vue +77 -0
  68. package/vue-components/v2/modals/JsonShowModal.vue +12 -2
  69. package/vue-components/v2/navbar/Appdrawer.vue +10 -9
  70. package/vue-components/v2/navbar/ThemeMode.vue +120 -0
  71. package/vue-components/v2/navbar/User.vue +202 -19
  72. package/vue-components/v2/preloader/Preloader.vue +5 -5
  73. package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
  74. package/vue-components/v2/sidebar/SidebarItem.vue +23 -1
  75. package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
  76. package/vue-components/v2/table/Table.vue +44 -8
  77. package/vue-components/v2/table/TableRow.vue +17 -8
  78. package/vue-components/v2/table/table-cell/CellValue.vue +31 -4
  79. package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
  80. package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
  81. package/vue-components/v2/tabs/EditorTabs.vue +1 -1
  82. package/vue-components/v3/button/Button.vue +5 -0
  83. package/vue-components/v3/content/ContentTable.vue +5 -0
  84. package/vue-components/v3/editor/Editor.vue +50 -30
  85. package/vue-components/v3/editor/FilteredFileEditor.vue +166 -0
  86. package/vue-components/v3/editor/MonacoEditor.vue +131 -0
  87. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +124 -0
  88. package/vue-components/v3/form/Form.vue +63 -0
  89. package/vue-components/v3/form-fields/Input.vue +10 -10
  90. package/vue-components/v3/header/HeaderItem.vue +5 -0
  91. package/vue-components/v3/header/HeaderItems.vue +5 -0
  92. package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
  93. package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
  94. package/vue-components/v3/modal/Modal.vue +38 -15
  95. package/vue-components/v3/modals/DeleteConfirmationModal.vue +83 -0
  96. package/vue-components/v3/modals/JsonShowModal.vue +25 -16
  97. package/vue-components/v3/navbar/Appdrawer.vue +12 -7
  98. package/vue-components/v3/navbar/ThemeMode.vue +123 -0
  99. package/vue-components/v3/navbar/User.vue +176 -16
  100. package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
  101. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
  102. package/vue-components/v3/table/MultiInfoTable.vue +143 -0
  103. package/vue-components/v3/table/Table.vue +34 -11
  104. package/vue-components/v3/table/TableContainer.vue +34 -0
  105. package/vue-components/v3/table/TableRow.vue +1 -1
  106. package/vue-components/v3/table/table-cell/CellValue.vue +26 -3
  107. package/vue-components/v3/table/table-cell/GenericCell.vue +62 -0
  108. package/vue-components/v3/table/table-cell/ObjectCell.vue +5 -1
  109. package/vue-components/v3/tabs/EditorTabs.vue +1 -1
@@ -4,6 +4,7 @@
4
4
  grid-gap: 0px;
5
5
  grid-template-columns: 270px calc(100% - 270px);
6
6
  padding-top: 50px;
7
+
7
8
  &.is-fullwidth {
8
9
  grid-template-columns: auto !important;
9
10
 
@@ -22,27 +23,36 @@
22
23
  }
23
24
  }
24
25
 
26
+ &.in-ui-builder {
27
+ grid-template-columns: calc(100% - 270px) 270px !important;
28
+ }
29
+
25
30
  &.has-ui-builder {
26
31
  grid-template-columns: 70px calc(100% - 70px);
27
32
  grid-gap: 0;
33
+
28
34
  .inner-header {
29
35
  position: sticky;
30
36
  top: 100px;
31
- background-color: #fff;
37
+ background-color: $ac-white;
32
38
  z-index: 997;
33
39
  }
40
+
34
41
  .ac-system-content {
35
42
  &.pr-15 {
36
43
  padding-right: 0 !important;
37
44
  }
45
+
38
46
  .ac-terminal {
39
47
  width: calc(100% - 290px);
40
48
  left: 289px;
41
49
  }
42
50
  }
51
+
43
52
  .ac-system-left-sidebar.is-expanded {
44
53
  z-index: 998;
45
54
  }
55
+
46
56
  &.expanded-sidebar {
47
57
  grid-gap: 0px;
48
58
  z-index: 9;
@@ -70,15 +80,18 @@
70
80
  .ac-system-body {
71
81
  padding-top: 0;
72
82
  grid-template-columns: 220px calc(100% - 440px) 220px;
83
+
73
84
  .ac-system-left-sidebar {
74
85
  border-right: none !important;
75
86
  height: calc(100vh - 60px);
87
+
76
88
  .ac-left-sidebar-wrapper {
77
89
  position: fixed;
78
90
  top: 140px;
79
91
  width: 219px;
80
- border-right: 1px solid #e7e7e7;
92
+ border-right: 1px solid $ac-white-light;
81
93
  height: 100%;
94
+
82
95
  ul.menu-list-wrapper {
83
96
  padding-top: 10px;
84
97
  }
@@ -94,6 +107,7 @@
94
107
  .ac-system-left-sidebar {
95
108
  border-right: 1px solid $ac-white-light;
96
109
  box-shadow: none;
110
+
97
111
  &.is-expanded {
98
112
  z-index: 998;
99
113
 
@@ -129,10 +143,55 @@
129
143
  }
130
144
  }
131
145
  }
146
+ .ac-system-body {
147
+ &.is-preview-step {
148
+ grid-template-columns: calc(100% - 270px) 270px !important;
149
+ }
150
+ }
132
151
  .form-content {
133
152
  width: 720px;
134
153
  }
135
154
 
155
+ .dropdown-content {
156
+ background-color: $ac-white;
157
+ }
158
+
159
+ // color swatch start
160
+ input[type="color"] {
161
+ -webkit-appearance: none;
162
+ border: none;
163
+ width: 20px;
164
+ height: 20px;
165
+ border-radius: 50%;
166
+ border: 1px solid #777;
167
+ margin-left: 3px;
168
+ padding: 2px;
169
+ cursor: pointer;
170
+ }
171
+ input[type="color"]::-webkit-color-swatch-wrapper {
172
+ padding: 0;
173
+ }
174
+ // input[type="color"]::-moz-color-swatch,
175
+ input[type="color"]::-webkit-color-swatch {
176
+ border: none;
177
+ border-radius: 50%;
178
+ }
179
+ input[type="color"]::-moz-color-swatch {
180
+ border: none;
181
+ border-radius: 50%;
182
+ }
183
+ // color swatch end
184
+
185
+ .is-dark-theme {
186
+ .dropdown-content {
187
+ background-color: $dark-bg-light;
188
+ }
189
+ }
190
+
191
+ .ac-preloader {
192
+ color: $ac-color-text;
193
+ }
194
+
136
195
  .section-padding {
137
196
  padding: 100px 0;
138
197
  }
@@ -166,21 +225,27 @@
166
225
  .is-not-fixed {
167
226
  position: inherit !important;
168
227
  }
228
+
169
229
  .b-1 {
170
230
  border: 1px solid $ac-white-light;
171
231
  }
232
+
172
233
  .b-t-1 {
173
234
  border-top: 1px solid $ac-white-light;
174
235
  }
236
+
175
237
  .b-b-1 {
176
238
  border-bottom: 1px solid $ac-white-light;
177
239
  }
240
+
178
241
  .b-l-1 {
179
242
  border-left: 1px solid $ac-white-light;
180
243
  }
244
+
181
245
  .b-r-1 {
182
246
  border-right: 1px solid $ac-white-light;
183
247
  }
248
+
184
249
  // border none
185
250
  .is-border-none {
186
251
  border: none !important;
@@ -206,6 +271,7 @@
206
271
  opacity: 0.5;
207
272
  cursor: not-allowed;
208
273
  }
274
+
209
275
  .no-data-image {
210
276
  img {
211
277
  width: 250px;
@@ -226,6 +292,23 @@
226
292
  -webkit-box-orient: vertical;
227
293
  }
228
294
  }
295
+ // toast css third-party
296
+
297
+ .toasted-container {
298
+ .ac-toast-action.mr-10 {
299
+ text-decoration: underline !important;
300
+ }
301
+ .has-report-issue {
302
+ padding-right: 140px !important;
303
+ }
304
+ }
305
+ .is-dark-theme {
306
+ .toasted-container {
307
+ i.fa {
308
+ color: #ffffff !important;
309
+ }
310
+ }
311
+ }
229
312
 
230
313
  // flex start
231
314
  .is-middle-alignment {
@@ -409,9 +492,18 @@
409
492
  color: $ac-red;
410
493
  text-align: left;
411
494
  }
495
+
412
496
  code {
413
497
  color: $ac-color-heading;
414
498
  }
499
+
500
+ .is-dark-theme {
501
+ code {
502
+ background-color: $dark-bg-light;
503
+ color: $ac-full-white;
504
+ }
505
+ }
506
+
415
507
  .is-danger:not(.ac-button) {
416
508
  color: $ac-danger !important;
417
509
  }
@@ -433,37 +525,57 @@ button {
433
525
  height: 18px;
434
526
  letter-spacing: 0.1px;
435
527
  color: $ac-color-heading;
528
+
529
+ a {
530
+ &:hover {
531
+ color: $ac-color-text;
532
+ }
533
+ }
534
+
436
535
  &.is-available {
437
536
  background-color: #27b064;
438
537
  color: $ac-white;
439
538
  }
539
+
440
540
  &.is-success {
441
541
  background-color: $ac-green;
442
542
  color: $ac-white;
543
+
443
544
  &.is-light {
444
545
  background-color: rgba(39, 176, 100, 0.2);
445
546
  color: $ac-green;
446
547
  }
447
548
  }
549
+
448
550
  &.is-primary {
449
551
  background-color: $ac-primary;
450
552
  color: $ac-white;
553
+
451
554
  &.is-light {
452
555
  background-color: rgba(25, 113, 189, 0.2);
453
556
  color: $ac-primary;
454
557
  }
455
558
  }
559
+
456
560
  &.is-gray {
457
561
  background-color: #e5e9f2;
458
- color: #666;
562
+ color: $ac-gray-darker;
459
563
  }
564
+
460
565
  &.is-warning {
461
566
  background-color: $ac-warning;
462
- color: $ac-white !important;
567
+ color: $ac-white;
568
+
569
+ &.is-light {
570
+ background-color: #ffd58b42;
571
+ color: #c88b21;
572
+ }
463
573
  }
574
+
464
575
  &.is-danger {
465
576
  background-color: $ac-red;
466
577
  color: $ac-white !important;
578
+
467
579
  &.is-light {
468
580
  background-color: rgba(234, 61, 47, 0.2);
469
581
  color: $ac-red !important;
@@ -475,6 +587,7 @@ button {
475
587
  .icon {
476
588
  margin-bottom: 0.5rem;
477
589
  }
590
+
478
591
  .tag {
479
592
  a {
480
593
  font-weight: 500;
@@ -652,6 +765,147 @@ $border_color_4: transparent transparent #585d6e transparent;
652
765
  }
653
766
  }
654
767
  }
768
+ // tooltip in vue-open-api
769
+ .tooltip {
770
+ display: block !important;
771
+ z-index: 10000;
772
+
773
+ &.is-button-info {
774
+ .tooltip-inner {
775
+ background: $ac-white;
776
+ color: $ac-primary;
777
+ border-radius: 4px;
778
+ padding: 5px 20px 4px;
779
+ box-shadow: $ac-shadow-1;
780
+ font-weight: 500;
781
+ font-size: 13px;
782
+ }
783
+
784
+ .tooltip-arrow {
785
+ width: 0;
786
+ height: 0;
787
+ border-style: solid;
788
+ position: absolute;
789
+ margin: 5px;
790
+ border-color: $ac-white;
791
+ }
792
+ }
793
+
794
+ &.is-errors-tooltip {
795
+ .tooltip-inner {
796
+ background: $ac-white;
797
+ color: $ac-danger;
798
+ border-radius: 4px;
799
+ padding: 5px 20px 4px;
800
+ box-shadow: $ac-shadow-1;
801
+ font-weight: 500;
802
+ font-size: 13px;
803
+
804
+ .errors-wrapper {
805
+ .error-element {
806
+ padding: 5px 0;
807
+ }
808
+ }
809
+ }
810
+
811
+ .tooltip-arrow {
812
+ width: 0;
813
+ height: 0;
814
+ border-style: solid;
815
+ position: absolute;
816
+ margin: 5px;
817
+ border-color: $ac-white;
818
+ }
819
+ }
820
+
821
+ &[x-placement^="top"] {
822
+ margin-bottom: 5px;
823
+
824
+ .tooltip-arrow {
825
+ border-width: 5px 5px 0 5px;
826
+ border-left-color: transparent !important;
827
+ border-right-color: transparent !important;
828
+ border-bottom-color: transparent !important;
829
+ bottom: -5px;
830
+ left: calc(50% - 5px);
831
+ margin-top: 0;
832
+ margin-bottom: 0;
833
+ }
834
+ }
835
+
836
+ &[x-placement^="bottom"] {
837
+ margin-top: 5px;
838
+
839
+ .tooltip-arrow {
840
+ border-width: 0 5px 5px 5px;
841
+ border-left-color: transparent !important;
842
+ border-right-color: transparent !important;
843
+ border-top-color: transparent !important;
844
+ top: -5px;
845
+ left: calc(50% - 5px);
846
+ margin-top: 0;
847
+ margin-bottom: 0;
848
+ }
849
+ }
850
+
851
+ &[x-placement^="right"] {
852
+ margin-left: 5px;
853
+
854
+ .tooltip-arrow {
855
+ border-width: 5px 5px 5px 0;
856
+ border-left-color: transparent !important;
857
+ border-top-color: transparent !important;
858
+ border-bottom-color: transparent !important;
859
+ left: -5px;
860
+ top: calc(50% - 5px);
861
+ margin-left: 0;
862
+ margin-right: 0;
863
+ }
864
+ }
865
+
866
+ &[x-placement^="left"] {
867
+ margin-right: 5px;
868
+
869
+ .tooltip-arrow {
870
+ border-width: 5px 0 5px 5px;
871
+ border-top-color: transparent !important;
872
+ border-right-color: transparent !important;
873
+ border-bottom-color: transparent !important;
874
+ right: -5px;
875
+ top: calc(50% - 5px);
876
+ margin-left: 0;
877
+ margin-right: 0;
878
+ }
879
+ }
880
+
881
+ &.popover {
882
+ $color: #f9f9f9;
883
+
884
+ .popover-inner {
885
+ background: $color;
886
+ color: black;
887
+ padding: 24px;
888
+ border-radius: 4px;
889
+ box-shadow: $ac-shadow-1;
890
+ }
891
+
892
+ .popover-arrow {
893
+ border-color: $color;
894
+ }
895
+ }
896
+
897
+ &[aria-hidden="true"] {
898
+ visibility: hidden;
899
+ opacity: 0;
900
+ transition: opacity 0.15s, visibility 0.15s;
901
+ }
902
+
903
+ &[aria-hidden="false"] {
904
+ visibility: visible;
905
+ opacity: 1;
906
+ transition: opacity 0.15s;
907
+ }
908
+ }
655
909
 
656
910
  // Customize tooltip end
657
911
 
@@ -701,6 +955,15 @@ $border_color_4: transparent transparent #585d6e transparent;
701
955
  // Status css
702
956
  // ac-footer sticky end
703
957
 
958
+ // terminal scss end
959
+ .is-dark-theme {
960
+ a {
961
+ &:hover {
962
+ color: #485fc7;
963
+ }
964
+ }
965
+ }
966
+
704
967
  /****************************************
705
968
  Responsive Classes
706
969
  *****************************************/
@@ -10,7 +10,6 @@ $ac-color-heading: var(--ac-text-heading);
10
10
 
11
11
  // Link colors
12
12
  $ac-link: $ac-blue;
13
- $ac-link-black: #32325d;
14
13
  $ac-link-visited: $ac-purple;
15
14
 
16
15
  // Box Shadow
@@ -1,7 +1,5 @@
1
1
  // Typography
2
- @import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
3
- // font rubik
4
- @import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,800&display=swap");
2
+ @import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400;500;600;700&family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700&display=swap");
5
3
 
6
4
  $ac-family-heading: "Roboto", sans-serif;
7
5
  $ac-family-paragraph: "Roboto", sans-serif;
@@ -25,10 +23,10 @@ $font-size-tiny: 11px;
25
23
  // Base Color
26
24
  $ac-orange: #ff8000;
27
25
  $ac-yellow: #f7ad2a;
28
- $ac-green: #27b064;
26
+ $ac-green: #158748;
29
27
  $ac-blue: #0aafff;
30
28
  $ac-purple: #791e94;
31
- $ac-red: #ea3d2f;
29
+ $ac-red: #ff3729;
32
30
 
33
31
  // Products Color
34
32
  $voyager-primary: #2d2a78;
@@ -51,9 +49,9 @@ $swift-primary: #3f51b6;
51
49
  --hsl-saturation: 77%;
52
50
  --hsl-lightness: 42%;
53
51
  --contrast-threshold: 60%;
54
-
55
- --bg-color: #ffffff;
52
+ --ac-bg: #ffffff;
56
53
  --ac-white: #ffffff;
54
+ --ac-full-white: #ffffff;
57
55
  --ac-gray-dark: #5f5f5f;
58
56
  --ac-gray-light: #8d8d8d;
59
57
  --ac-gray-lightest: #d1d1d1;
@@ -62,17 +60,20 @@ $swift-primary: #3f51b6;
62
60
 
63
61
  --ac-black: #000000;
64
62
  --ac-color-text-90: #323232;
63
+ --ac-link-black: #32325d;
65
64
  --ac-gray-darker: #494949;
66
65
  --ac-gray: #767676;
67
66
  --ac-gray-lighter: #a4a4a4;
67
+ --ac-white-text: #b4c0cc;
68
+
68
69
  // theme color
69
70
  --dark-bg: #21272e;
70
71
  --dark-bg-light: #2e323c;
71
72
 
72
- --ac-input-bg-color: #eceff4;
73
+ --ac-blue-light: #eceff4;
73
74
  --ac-bg-light-gray: #f4f6f9;
74
75
  --table-header: #e4e8ef;
75
- --ac-border: #a6abbd;
76
+ --ac-label-text: #a6abbd;
76
77
 
77
78
  --font-hsl-hue: 0;
78
79
  --font-hsl-saturation: 0%;
@@ -84,6 +85,7 @@ $swift-primary: #3f51b6;
84
85
  var(--hsl-lightness),
85
86
  1
86
87
  );
88
+
87
89
  --ac-text: hsla(
88
90
  var(--font-hsl-hue),
89
91
  calc(var(--font-hsl-saturation) + 10%),
@@ -103,13 +105,14 @@ $swift-primary: #3f51b6;
103
105
  );
104
106
  }
105
107
 
106
- $ac-bg: var(--bg-color);
108
+ $ac-bg: var(--ac-bg);
107
109
  $ac-primary: var(--ac-primary);
108
110
  $ac-color-value: var(--ac-color-value);
109
111
 
110
112
  // Colors
111
113
  $ac-black: var(--ac-black);
112
- $ac-color-text-90: var(ac-color-text-90);
114
+ $ac-color-text-90: var(--ac-color-text-90);
115
+ $ac-link-black: var(--ac-link-black);
113
116
  $ac-gray-darker: var(--ac-gray-darker);
114
117
  $ac-gray-dark: var(--ac-gray-dark);
115
118
  $ac-gray: var(--ac-gray);
@@ -119,179 +122,17 @@ $ac-gray-lightest: var(--ac-gray-lightest);
119
122
  $ac-white-light: var(--ac-white-light);
120
123
  $ac-white-lighter: var(--ac-white-lighter);
121
124
  $ac-white: var(--ac-white);
125
+ $ac-full-white: var(--ac-full-white);
122
126
 
123
- $ac-input-bg-color: var(--ac-input-bg-color);
127
+ $ac-blue-light: var(--ac-blue-light);
124
128
  $ac-bg-light-gray: var(--ac-bg-light-gray);
125
129
  $table-header: var(--table-header);
126
- $ac-border: var(--ac-border);
130
+ $ac-label-text: var(--ac-label-text);
127
131
 
128
132
  // for dark theme CSS
129
133
  $dark-bg: var(--dark-bg);
130
134
  $dark-bg-light: var(--dark-bg-light);
131
135
 
132
- .is-dark-theme {
133
- --ac-white: #21272e;
134
- --ac-black: #b4c0cc;
135
- --ac-text-heading: #b4c0cc;
136
- --ac-text: #98a6b4;
137
- --ac-gray-light: #424242;
138
- --ac-gray-lightest: #777777;
139
- --ac-white-light: #3f3f3f;
140
- --ac-white-lighter: #2e323c;
141
- --ac-color-value: hsl(
142
- var(--font-hsl-hue),
143
- var(--font-hsl-saturation),
144
- calc(var(--font-hsl-lightness) + 60%)
145
- );
146
- }
147
-
148
- .is-dark-theme {
149
- --ac-border: #404040;
150
-
151
- body {
152
- background-color: $dark-bg;
153
-
154
- .ac-navbar-area {
155
- background-color: $dark-bg-light;
156
- --ac-white: #ffffff;
157
- --ac-white-lighter: #f1f1f1;
158
-
159
- .ac-navbar {
160
- .search-item {
161
- background-color: rgba(0, 0, 0, 0.2);
162
- }
163
-
164
- .ac-navbar-menu {
165
- .ac-menu-item {
166
- .quick-access {
167
- --ac-white: $dark-bg-light;
168
- }
169
-
170
- .ac-menu-content {
171
- background-color: $dark-bg-light;
172
-
173
- &::after {
174
- --ac-white: $dark-bg-light;
175
- }
176
-
177
- .user-profile-wrapper {
178
- --ac-white: $dark-bg-light;
179
- }
180
- }
181
- }
182
- }
183
- }
184
- }
185
-
186
- .ac-options {
187
- .options-items {
188
- --ac-white: $dark-bg-light;
189
- }
190
- }
191
-
192
- h6.wizard-title.has-line:after {
193
- --ac-input-bg-color: #555;
194
- }
195
-
196
- .ac-payment-card,
197
- .ac-single-card,
198
- .button.ac-button,
199
- .option-dots {
200
- --ac-white: #b4c0cc;
201
- }
202
-
203
- .tabs {
204
- a {
205
- border-bottom: 1px solid $ac-white-lighter;
206
- }
207
- }
208
-
209
- .nested-body {
210
- code {
211
- background-color: $dark-bg-light;
212
- }
213
- }
214
-
215
- .ac-single-input {
216
- input,
217
- .file-input,
218
- .ac-dropdown-content {
219
- background-color: transparent;
220
- }
221
-
222
- label {
223
- color: #999999;
224
- }
225
- }
226
-
227
- .ac-single-card {
228
- background-color: $dark-bg-light;
229
-
230
- &.style-three {
231
- background-color: $dark-bg-light;
232
- }
233
-
234
- .ac-card-body {
235
- p {
236
- color: #999999;
237
- }
238
- }
239
- }
240
-
241
- .information-center {
242
- .information-center-inner {
243
- .info-body {
244
- .block-list {
245
- background-color: $dark-bg-light;
246
- }
247
- }
248
- }
249
- }
250
-
251
- .single-subscription-card {
252
- background-color: $dark-bg-light;
253
- }
254
-
255
- .pricing-card-wrpper {
256
- &.offer-card {
257
- background-color: $dark-bg-light;
258
- }
259
-
260
- .ac-card {
261
- background-color: $dark-bg-light;
262
- }
263
- }
264
-
265
- .ac-certificate-info {
266
- --ac-bg-light-gray: $dark-bg-light;
267
- }
268
-
269
- // multiselect
270
- .multi-select-wrapper {
271
- // .multiselect .multiselect__tags {
272
- // --ac-border: #404040;
273
- // }
274
- .multiselect__content-wrapper {
275
- background-color: $dark-bg-light;
276
-
277
- .multiselect__content .multiselect__element .multiselect__option {
278
- color: #b4c0cc;
279
- }
280
-
281
- .multiselect__option--group {
282
- color: #b4c0cc;
283
- background-color: $dark-bg-light;
284
- }
285
-
286
- .multiselect__option--selected {
287
- color: #b4c0cc;
288
- background-color: $dark-bg-light;
289
- }
290
- }
291
- }
292
- }
293
- }
294
-
295
136
  /* Deafult Margin & Padding view-height & view-width */
296
137
  @for $i from 0 through 100 {
297
138
  .m-#{$i} {
@@ -83,23 +83,7 @@
83
83
  &:hover {
84
84
  background-color: $colorName;
85
85
  color: $ac-white;
86
-
87
- @if (type_of($colorName) == "color") {
88
- box-shadow: 0px
89
- 6px
90
- 12px
91
- scale-color($color: $colorName, $lightness: 70%);
92
- } @else {
93
- box-shadow: 0px
94
- 6px
95
- 12px
96
- hsla(
97
- var(--hsl-hue),
98
- var(--hsl-saturation),
99
- var(--hsl-lightness),
100
- 0.3
101
- );
102
- }
86
+ box-shadow: none;
103
87
 
104
88
  img {
105
89
  filter: brightness(100) !important;