@appscode/design-system 1.0.43-alpha.18 → 1.0.43-alpha.181

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 (118) hide show
  1. package/base/utilities/_default.scss +269 -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 +44 -8
  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 +270 -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 +124 -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 +43 -3
  49. package/components/ui-builder/_vue-open-api.scss +104 -0
  50. package/main.scss +4 -0
  51. package/package.json +2 -7
  52. package/plugins/theme.js +4 -0
  53. package/plugins/time-convert.js +49 -0
  54. package/plugins/vue-toaster.js +3 -0
  55. package/vue-components/v2/banner/Banner.vue +2 -2
  56. package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
  57. package/vue-components/v2/button/Button.vue +5 -0
  58. package/vue-components/v2/button/DownloadBtn.vue +45 -0
  59. package/vue-components/v2/card/PaymentCards.vue +11 -2
  60. package/vue-components/v2/content/ContentTable.vue +12 -7
  61. package/vue-components/v2/editor/Editor.vue +36 -5
  62. package/vue-components/v2/editor/FilteredFileEditor.vue +188 -0
  63. package/vue-components/v2/editor/MonacoEditor.vue +125 -0
  64. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
  65. package/vue-components/v2/form-fields/Input.vue +1 -1
  66. package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
  67. package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
  68. package/vue-components/v2/modal/Modal.vue +35 -4
  69. package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
  70. package/vue-components/v2/modals/JsonShowModal.vue +12 -2
  71. package/vue-components/v2/navbar/Appdrawer.vue +10 -9
  72. package/vue-components/v2/navbar/ThemeMode.vue +50 -44
  73. package/vue-components/v2/navbar/User.vue +202 -19
  74. package/vue-components/v2/notification/Notification.vue +101 -0
  75. package/vue-components/v2/notification/NotificationItem.vue +44 -0
  76. package/vue-components/v2/preloader/Preloader.vue +5 -5
  77. package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
  78. package/vue-components/v2/sidebar/SidebarItem.vue +23 -1
  79. package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
  80. package/vue-components/v2/table/Table.vue +44 -8
  81. package/vue-components/v2/table/TableRow.vue +12 -2
  82. package/vue-components/v2/table/table-cell/CellValue.vue +31 -4
  83. package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
  84. package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
  85. package/vue-components/v2/tabs/EditorTabs.vue +1 -1
  86. package/vue-components/v3/button/Button.vue +5 -0
  87. package/vue-components/v3/content/ContentTable.vue +5 -0
  88. package/vue-components/v3/editor/Editor.vue +50 -30
  89. package/vue-components/v3/editor/FilteredFileEditor.vue +184 -0
  90. package/vue-components/v3/editor/MonacoEditor.vue +131 -0
  91. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +125 -0
  92. package/vue-components/v3/form/Form.vue +63 -0
  93. package/vue-components/v3/form-fields/Input.vue +10 -10
  94. package/vue-components/v3/header/HeaderItem.vue +5 -0
  95. package/vue-components/v3/header/HeaderItems.vue +5 -0
  96. package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
  97. package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
  98. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +92 -0
  99. package/vue-components/v3/modal/Modal.vue +40 -16
  100. package/vue-components/v3/modals/DeleteConfirmationModal.vue +83 -0
  101. package/vue-components/v3/modals/JsonShowModal.vue +25 -16
  102. package/vue-components/v3/modals/LongRunningTasksModal.vue +337 -0
  103. package/vue-components/v3/navbar/Appdrawer.vue +12 -7
  104. package/vue-components/v3/navbar/ThemeMode.vue +49 -47
  105. package/vue-components/v3/navbar/User.vue +190 -16
  106. package/vue-components/v3/notification/Notification.vue +98 -0
  107. package/vue-components/v3/notification/NotificationItem.vue +52 -0
  108. package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
  109. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
  110. package/vue-components/v3/table/MultiInfoTable.vue +143 -0
  111. package/vue-components/v3/table/Table.vue +35 -12
  112. package/vue-components/v3/table/TableContainer.vue +34 -0
  113. package/vue-components/v3/table/TableRow.vue +10 -2
  114. package/vue-components/v3/table/table-cell/CellValue.vue +26 -3
  115. package/vue-components/v3/table/table-cell/GenericCell.vue +62 -0
  116. package/vue-components/v3/table/table-cell/ObjectCell.vue +5 -1
  117. package/vue-components/v3/tabs/EditorTabs.vue +1 -1
  118. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
@@ -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,20 @@
409
492
  color: $ac-red;
410
493
  text-align: left;
411
494
  }
495
+ p.is-error {
496
+ color: $ac-red;
497
+ }
412
498
  code {
413
499
  color: $ac-color-heading;
414
500
  }
501
+
502
+ .is-dark-theme {
503
+ code {
504
+ background-color: $dark-bg-light;
505
+ color: $ac-full-white;
506
+ }
507
+ }
508
+
415
509
  .is-danger:not(.ac-button) {
416
510
  color: $ac-danger !important;
417
511
  }
@@ -433,37 +527,57 @@ button {
433
527
  height: 18px;
434
528
  letter-spacing: 0.1px;
435
529
  color: $ac-color-heading;
530
+
531
+ a {
532
+ &:hover {
533
+ color: $ac-color-text;
534
+ }
535
+ }
536
+
436
537
  &.is-available {
437
538
  background-color: #27b064;
438
539
  color: $ac-white;
439
540
  }
541
+
440
542
  &.is-success {
441
543
  background-color: $ac-green;
442
544
  color: $ac-white;
545
+
443
546
  &.is-light {
444
547
  background-color: rgba(39, 176, 100, 0.2);
445
548
  color: $ac-green;
446
549
  }
447
550
  }
551
+
448
552
  &.is-primary {
449
553
  background-color: $ac-primary;
450
554
  color: $ac-white;
555
+
451
556
  &.is-light {
452
557
  background-color: rgba(25, 113, 189, 0.2);
453
558
  color: $ac-primary;
454
559
  }
455
560
  }
561
+
456
562
  &.is-gray {
457
563
  background-color: #e5e9f2;
458
- color: #666;
564
+ color: $ac-gray-darker;
459
565
  }
566
+
460
567
  &.is-warning {
461
568
  background-color: $ac-warning;
462
- color: $ac-white !important;
569
+ color: $ac-white;
570
+
571
+ &.is-light {
572
+ background-color: #ffd58b42;
573
+ color: #c88b21;
574
+ }
463
575
  }
576
+
464
577
  &.is-danger {
465
578
  background-color: $ac-red;
466
579
  color: $ac-white !important;
580
+
467
581
  &.is-light {
468
582
  background-color: rgba(234, 61, 47, 0.2);
469
583
  color: $ac-red !important;
@@ -475,6 +589,7 @@ button {
475
589
  .icon {
476
590
  margin-bottom: 0.5rem;
477
591
  }
592
+
478
593
  .tag {
479
594
  a {
480
595
  font-weight: 500;
@@ -652,6 +767,147 @@ $border_color_4: transparent transparent #585d6e transparent;
652
767
  }
653
768
  }
654
769
  }
770
+ // tooltip in vue-open-api
771
+ .tooltip {
772
+ display: block !important;
773
+ z-index: 10000;
774
+
775
+ &.is-button-info {
776
+ .tooltip-inner {
777
+ background: $ac-white;
778
+ color: $ac-primary;
779
+ border-radius: 4px;
780
+ padding: 5px 20px 4px;
781
+ box-shadow: $ac-shadow-1;
782
+ font-weight: 500;
783
+ font-size: 13px;
784
+ }
785
+
786
+ .tooltip-arrow {
787
+ width: 0;
788
+ height: 0;
789
+ border-style: solid;
790
+ position: absolute;
791
+ margin: 5px;
792
+ border-color: $ac-white;
793
+ }
794
+ }
795
+
796
+ &.is-errors-tooltip {
797
+ .tooltip-inner {
798
+ background: $ac-white;
799
+ color: $ac-danger;
800
+ border-radius: 4px;
801
+ padding: 5px 20px 4px;
802
+ box-shadow: $ac-shadow-1;
803
+ font-weight: 500;
804
+ font-size: 13px;
805
+
806
+ .errors-wrapper {
807
+ .error-element {
808
+ padding: 5px 0;
809
+ }
810
+ }
811
+ }
812
+
813
+ .tooltip-arrow {
814
+ width: 0;
815
+ height: 0;
816
+ border-style: solid;
817
+ position: absolute;
818
+ margin: 5px;
819
+ border-color: $ac-white;
820
+ }
821
+ }
822
+
823
+ &[x-placement^="top"] {
824
+ margin-bottom: 5px;
825
+
826
+ .tooltip-arrow {
827
+ border-width: 5px 5px 0 5px;
828
+ border-left-color: transparent !important;
829
+ border-right-color: transparent !important;
830
+ border-bottom-color: transparent !important;
831
+ bottom: -5px;
832
+ left: calc(50% - 5px);
833
+ margin-top: 0;
834
+ margin-bottom: 0;
835
+ }
836
+ }
837
+
838
+ &[x-placement^="bottom"] {
839
+ margin-top: 5px;
840
+
841
+ .tooltip-arrow {
842
+ border-width: 0 5px 5px 5px;
843
+ border-left-color: transparent !important;
844
+ border-right-color: transparent !important;
845
+ border-top-color: transparent !important;
846
+ top: -5px;
847
+ left: calc(50% - 5px);
848
+ margin-top: 0;
849
+ margin-bottom: 0;
850
+ }
851
+ }
852
+
853
+ &[x-placement^="right"] {
854
+ margin-left: 5px;
855
+
856
+ .tooltip-arrow {
857
+ border-width: 5px 5px 5px 0;
858
+ border-left-color: transparent !important;
859
+ border-top-color: transparent !important;
860
+ border-bottom-color: transparent !important;
861
+ left: -5px;
862
+ top: calc(50% - 5px);
863
+ margin-left: 0;
864
+ margin-right: 0;
865
+ }
866
+ }
867
+
868
+ &[x-placement^="left"] {
869
+ margin-right: 5px;
870
+
871
+ .tooltip-arrow {
872
+ border-width: 5px 0 5px 5px;
873
+ border-top-color: transparent !important;
874
+ border-right-color: transparent !important;
875
+ border-bottom-color: transparent !important;
876
+ right: -5px;
877
+ top: calc(50% - 5px);
878
+ margin-left: 0;
879
+ margin-right: 0;
880
+ }
881
+ }
882
+
883
+ &.popover {
884
+ $color: #f9f9f9;
885
+
886
+ .popover-inner {
887
+ background: $color;
888
+ color: black;
889
+ padding: 24px;
890
+ border-radius: 4px;
891
+ box-shadow: $ac-shadow-1;
892
+ }
893
+
894
+ .popover-arrow {
895
+ border-color: $color;
896
+ }
897
+ }
898
+
899
+ &[aria-hidden="true"] {
900
+ visibility: hidden;
901
+ opacity: 0;
902
+ transition: opacity 0.15s, visibility 0.15s;
903
+ }
904
+
905
+ &[aria-hidden="false"] {
906
+ visibility: visible;
907
+ opacity: 1;
908
+ transition: opacity 0.15s;
909
+ }
910
+ }
655
911
 
656
912
  // Customize tooltip end
657
913
 
@@ -701,6 +957,15 @@ $border_color_4: transparent transparent #585d6e transparent;
701
957
  // Status css
702
958
  // ac-footer sticky end
703
959
 
960
+ // terminal scss end
961
+ .is-dark-theme {
962
+ a {
963
+ &:hover {
964
+ color: #485fc7;
965
+ }
966
+ }
967
+ }
968
+
704
969
  /****************************************
705
970
  Responsive Classes
706
971
  *****************************************/
@@ -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;