@appscode/design-system 1.1.0-alpha.9 → 1.1.0-beta.3

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 (194) hide show
  1. package/base/_video-player.scss +65 -0
  2. package/base/utilities/_all.scss +6 -5
  3. package/base/utilities/_colors.scss +446 -0
  4. package/base/utilities/_customize-bulma.scss +23 -27
  5. package/base/utilities/_extended.scss +3 -2
  6. package/base/utilities/{_default.scss → _global.scss} +171 -323
  7. package/base/utilities/_layouts.scss +157 -0
  8. package/base/utilities/_mixin.scss +11 -11
  9. package/base/utilities/_spacing.scss +96 -0
  10. package/base/utilities/_typography.scss +56 -24
  11. package/base/utilities/dark-theme.scss +1 -1
  12. package/components/_ac-accordion.scss +117 -117
  13. package/components/_ac-alert-box.scss +205 -263
  14. package/components/_ac-calendar.scss +4 -4
  15. package/components/_ac-card.scss +122 -130
  16. package/components/_ac-code-highlight.scss +6 -6
  17. package/components/_ac-content-layout.scss +165 -165
  18. package/components/_ac-drag.scss +11 -11
  19. package/components/_ac-input.scss +38 -520
  20. package/components/_ac-modal.scss +212 -212
  21. package/components/_ac-multi-select.scss +780 -751
  22. package/components/_ac-options.scss +122 -123
  23. package/components/_ac-select-box.scss +5 -5
  24. package/components/_ac-table.scss +503 -502
  25. package/components/_ac-tabs.scss +39 -38
  26. package/components/_ac-tags.scss +116 -116
  27. package/components/_ac-terminal.scss +95 -51
  28. package/components/_add-card.scss +3 -3
  29. package/components/_all.scss +31 -28
  30. package/components/_app-drawer.scss +0 -134
  31. package/components/_breadcumb.scss +0 -71
  32. package/components/_buttons.scss +779 -779
  33. package/components/_card-body-wrapper.scss +5 -5
  34. package/components/_dashboard-header.scss +0 -115
  35. package/components/_direct-deploy.scss +8 -8
  36. package/components/_go-to-top.scss +1 -1
  37. package/components/_image-upload.scss +3 -3
  38. package/components/_left-sidebar-menu.scss +448 -579
  39. package/components/_monaco-editor.scss +1 -1
  40. package/components/_navbar.scss +786 -752
  41. package/components/_nested-list.scss +1 -1
  42. package/components/_overview-info.scss +7 -7
  43. package/components/_overview-page.scss +4 -4
  44. package/components/_pagination.scss +106 -124
  45. package/components/_payment-card.scss +21 -21
  46. package/components/_preloader.scss +1 -1
  47. package/components/_preview-modal.scss +18 -18
  48. package/components/_pricing-table.scss +10 -10
  49. package/components/_progress-bar.scss +12 -12
  50. package/components/_subscription-card.scss +14 -14
  51. package/components/_table-of-content.scss +4 -4
  52. package/components/_tfa.scss +9 -9
  53. package/components/_widget-menu.scss +247 -247
  54. package/components/_wizard.scss +82 -82
  55. package/components/ac-toaster/_ac-toasted.scss +1 -1
  56. package/components/bbum/_activities-header.scss +1 -1
  57. package/components/bbum/_card-team.scss +12 -12
  58. package/components/bbum/_information-center.scss +13 -13
  59. package/components/bbum/_left-sidebar.scss +8 -8
  60. package/components/bbum/_mobile-desktop.scss +7 -7
  61. package/components/bbum/_post.scss +5 -5
  62. package/components/bbum/_sign-up-notification.scss +10 -10
  63. package/components/bbum/_single-post-preview.scss +21 -21
  64. package/components/bbum/_user-profile.scss +10 -10
  65. package/components/ui-builder/_ui-builder.scss +15 -15
  66. package/components/ui-builder/_vue-open-api.scss +514 -2
  67. package/layouts/_code-preview.scss +11 -11
  68. package/main.scss +26 -10
  69. package/package.json +1 -1
  70. package/vue-components/plugins/time-convert.js +49 -0
  71. package/vue-components/text.vue +1 -0
  72. package/vue-components/types/cluster.ts +6 -0
  73. package/vue-components/types/longRunningTasks.ts +20 -0
  74. package/vue-components/types/notification.ts +6 -0
  75. package/vue-components/types/previewYaml.ts +8 -0
  76. package/vue-components/types/table.ts +54 -0
  77. package/vue-components/types/theme.ts +10 -0
  78. package/vue-components/types/user.ts +22 -0
  79. package/vue-components/v2/card/Card.vue +1 -1
  80. package/vue-components/v2/card/OverviewCards.vue +17 -2
  81. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +21 -21
  82. package/vue-components/v2/icons/Ellipsis.vue +2 -1
  83. package/vue-components/v2/modal/Modal.vue +0 -5
  84. package/vue-components/v2/navbar/Appdrawer.vue +37 -12
  85. package/vue-components/v2/navbar/Navbar.vue +3 -3
  86. package/vue-components/v2/navbar/NavbarItem.vue +3 -1
  87. package/vue-components/v2/navbar/NavbarItemContent.vue +1 -1
  88. package/vue-components/v2/navbar/User.vue +5 -22
  89. package/vue-components/v2/pagination/Pagination.vue +65 -0
  90. package/vue-components/v2/sidebar/SidebarItem.vue +10 -7
  91. package/vue-components/v3/accordion/Accordion.vue +151 -0
  92. package/vue-components/v3/alert/Alert.vue +238 -0
  93. package/vue-components/v3/alert/Toast.vue +79 -0
  94. package/vue-components/v3/banner/Banner.vue +10 -0
  95. package/vue-components/v3/breadcrumbs/Breadcrumb.vue +104 -0
  96. package/vue-components/v3/button/Button.vue +831 -58
  97. package/vue-components/v3/button/Buttons.vue +6 -0
  98. package/vue-components/v3/button/DownloadBtn.vue +31 -0
  99. package/vue-components/v3/cards/Card.vue +32 -0
  100. package/vue-components/v3/cards/CardContent.vue +7 -0
  101. package/vue-components/v3/cards/CardHeader.vue +14 -0
  102. package/vue-components/v3/cards/Cards.vue +7 -0
  103. package/vue-components/v3/cards/Cluster.vue +150 -0
  104. package/vue-components/v3/cards/Counter.vue +27 -0
  105. package/vue-components/v3/cards/FeatureCard.vue +40 -0
  106. package/vue-components/v3/cards/FeatureCards.vue +6 -0
  107. package/vue-components/v3/cards/InfoCard.vue +248 -0
  108. package/vue-components/v3/cards/Monitoring.vue +94 -0
  109. package/vue-components/v3/cards/OverviewCard.vue +24 -0
  110. package/vue-components/v3/cards/OverviewCards.vue +31 -0
  111. package/vue-components/v3/cards/Payment.vue +62 -0
  112. package/vue-components/v3/cards/Vendor.vue +23 -0
  113. package/vue-components/v3/content/ContentHeader.vue +39 -30
  114. package/vue-components/v3/content/ContentLayout.vue +20 -0
  115. package/vue-components/v3/content/ContentTable.vue +37 -61
  116. package/vue-components/v3/dropdown/DropdownDivider.vue +2 -0
  117. package/vue-components/v3/dropdown/DropdownItem.vue +2 -0
  118. package/vue-components/v3/dropdown/DropdownMenu.vue +85 -91
  119. package/vue-components/v3/editor/Editor.vue +100 -113
  120. package/vue-components/v3/editor/FilteredFileEditor.vue +124 -127
  121. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +70 -94
  122. package/vue-components/v3/footer/FooterArea.vue +34 -0
  123. package/vue-components/v3/footer/FooterItem.vue +32 -0
  124. package/vue-components/v3/footer/FooterItems.vue +15 -0
  125. package/vue-components/v3/footer/Info.vue +23 -0
  126. package/vue-components/v3/footer/Status.vue +42 -0
  127. package/vue-components/v3/footer/Usage.vue +44 -0
  128. package/vue-components/v3/form/Form.vue +24 -33
  129. package/vue-components/v3/form/FormFooterControl.vue +7 -0
  130. package/vue-components/v3/form/FormFooterControls.vue +7 -0
  131. package/vue-components/v3/form-fields/AcSingleInput.vue +520 -0
  132. package/vue-components/v3/form-fields/Input.vue +19 -14
  133. package/vue-components/v3/header/Header.vue +117 -24
  134. package/vue-components/v3/header/HeaderItem.vue +18 -0
  135. package/vue-components/v3/header/HeaderItems.vue +4 -0
  136. package/vue-components/v3/icons/Ellipsis.vue +2 -0
  137. package/vue-components/v3/loaders/ResourceLoader.vue +4 -12
  138. package/vue-components/v3/loaders/SidebarLoader.vue +4 -12
  139. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +17 -15
  140. package/vue-components/v3/modal/Modal.vue +292 -96
  141. package/vue-components/v3/modals/DeleteConfirmationModal.vue +37 -50
  142. package/vue-components/v3/modals/JsonShowModal.vue +62 -68
  143. package/vue-components/v3/modals/LongRunningTasksModal.vue +145 -143
  144. package/vue-components/v3/navbar/Appdrawer.vue +196 -51
  145. package/vue-components/v3/navbar/Navbar.vue +296 -0
  146. package/vue-components/v3/navbar/NavbarItem.vue +81 -0
  147. package/vue-components/v3/navbar/NavbarItemContent.vue +284 -0
  148. package/vue-components/v3/navbar/Notification.vue +179 -0
  149. package/vue-components/v3/navbar/ThemeMode.vue +128 -112
  150. package/vue-components/v3/navbar/User.vue +383 -268
  151. package/vue-components/v3/notification/AlertBox.vue +39 -42
  152. package/vue-components/v3/notification/Notification.vue +49 -43
  153. package/vue-components/v3/notification/NotificationItem.vue +51 -19
  154. package/vue-components/v3/option-dots/Options.vue +188 -0
  155. package/vue-components/v3/pagination/Pagination.vue +203 -99
  156. package/vue-components/v3/preloader/Preloader.vue +23 -0
  157. package/vue-components/v3/searchbars/SearchBar.vue +51 -34
  158. package/vue-components/v3/sidebar/AccentColorPicker.vue +97 -0
  159. package/vue-components/v3/sidebar/ClusterSwitcher.vue +834 -81
  160. package/vue-components/v3/sidebar/Sidebar.vue +271 -0
  161. package/vue-components/v3/sidebar/SidebarBody.vue +7 -0
  162. package/vue-components/v3/sidebar/SidebarFooter.vue +80 -0
  163. package/vue-components/v3/sidebar/SidebarHeader.vue +124 -0
  164. package/vue-components/v3/sidebar/SidebarItem.vue +62 -0
  165. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +101 -104
  166. package/vue-components/v3/sidebar/SidebarMenuList.vue +9 -0
  167. package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabs.vue +128 -0
  168. package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabsLayout.vue +29 -0
  169. package/vue-components/v3/sidebar/sidebar-tabs/TabsContent.vue +99 -0
  170. package/vue-components/v3/tab/TabItem.vue +10 -12
  171. package/vue-components/v3/tab/Tabs.vue +9 -0
  172. package/vue-components/v3/tab/TabsBody.vue +7 -0
  173. package/vue-components/v3/table/EmptyTableInfo.vue +8 -0
  174. package/vue-components/v3/table/FakeTableCell.vue +22 -31
  175. package/vue-components/v3/table/InfoTable.vue +85 -59
  176. package/vue-components/v3/table/MultiInfoTable.vue +72 -95
  177. package/vue-components/v3/table/Table.vue +582 -151
  178. package/vue-components/v3/table/TableCell.vue +20 -23
  179. package/vue-components/v3/table/TableContainer.vue +50 -28
  180. package/vue-components/v3/table/TableRow.vue +63 -85
  181. package/vue-components/v3/table/table-cell/ArrayCell.vue +67 -79
  182. package/vue-components/v3/table/table-cell/CellValue.vue +97 -103
  183. package/vue-components/v3/table/table-cell/GenericCell.vue +43 -42
  184. package/vue-components/v3/table/table-cell/ObjectCell.vue +67 -79
  185. package/vue-components/v3/table/table-cell/ValueWithModal.vue +22 -31
  186. package/vue-components/v3/tabs/EditorTabs.vue +18 -24
  187. package/vue-components/v3/tag/Tag.vue +15 -12
  188. package/vue-components/v3/tag/Tags.vue +7 -0
  189. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +26 -23
  190. package/base/utilities/_derived-variables.scss +0 -25
  191. package/base/utilities/_initial-variables.scss +0 -215
  192. package/components/_basic-card.scss +0 -128
  193. package/mixins/stickyContent.js +0 -141
  194. package/plugins/caching.ts +0 -243
@@ -5,77 +5,67 @@
5
5
  }
6
6
 
7
7
  .ac-single-card {
8
- display: block;
9
- padding: 20px;
10
- border-radius: 4px;
11
- border: 1px solid $ac-white-light;
12
- overflow: hidden;
13
- background-color: hsla(
14
- var(--hsl-hue),
15
- var(--hsl-saturation),
16
- var(--hsl-lightness),
17
- 0.03
18
- );
8
+ border: 1px solid $primary-90;
19
9
  transition: 0.3s ease-in-out;
20
10
 
21
11
  &.is-selected {
22
- border: 1px solid $ac-primary !important;
12
+ border: 1px solid $primary !important;
23
13
  }
24
14
 
25
- &.style-two {
26
- padding: 10px;
27
-
28
- .ac-card-header {
29
- margin-bottom: 13px;
30
-
31
- .ac-card-logo {
32
- margin-right: 10px;
33
- position: relative;
34
- z-index: 1;
35
-
36
- img {
37
- width: 100%;
38
- }
39
-
40
- .card-status {
41
- position: absolute;
42
- content: "";
43
- background-color: #27ae60;
44
- border: 2px solid $ac-white;
45
- box-sizing: border-box;
46
- box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
47
- width: 10px;
48
- height: 10px;
49
- border-radius: 50%;
50
- right: 0;
51
- top: 5px;
52
- }
53
- }
54
-
55
- .ac-card-title {
56
- h4 {
57
- font-size: 12px;
58
- font-family: $ac-family-paragraph;
59
- line-height: 140%;
60
- }
61
- }
62
- }
63
-
64
- .ac-card-body {
65
- p {
66
- font-size: 12px;
67
- color: $ac-color-text;
68
- font-weight: 400;
69
-
70
- &:not(:last-child) {
71
- margin-bottom: 8px;
72
- }
73
- }
74
- }
75
- }
76
-
77
- &.style-three {
78
- background-color: $ac-blue-light;
15
+ // &.style-two {
16
+ // padding: 10px;
17
+
18
+ // .ac-card-header {
19
+ // margin-bottom: 13px;
20
+
21
+ // .ac-card-logo {
22
+ // margin-right: 10px;
23
+ // position: relative;
24
+ // z-index: 1;
25
+
26
+ // img {
27
+ // width: 100%;
28
+ // }
29
+
30
+ // .card-status {
31
+ // position: absolute;
32
+ // content: "";
33
+ // background-color: #27ae60;
34
+ // border: 2px solid $white-100;
35
+ // box-sizing: border-box;
36
+ // box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
37
+ // width: 10px;
38
+ // height: 10px;
39
+ // border-radius: 50%;
40
+ // right: 0;
41
+ // top: 5px;
42
+ // }
43
+ // }
44
+
45
+ // .ac-card-title {
46
+ // h4 {
47
+ // font-size: 12px;
48
+ // font-family: $font-paragraph;
49
+ // line-height: 140%;
50
+ // }
51
+ // }
52
+ // }
53
+
54
+ // .ac-card-body {
55
+ // p {
56
+ // font-size: 12px;
57
+ // color: $primary-10;
58
+ // font-weight: 400;
59
+
60
+ // &:not(:last-child) {
61
+ // margin-bottom: 8px;
62
+ // }
63
+ // }
64
+ // }
65
+ // }
66
+
67
+ &.vendor-card {
68
+ background-color: $primary-97;
79
69
  width: 190px;
80
70
  margin-bottom: 20px;
81
71
  margin-right: 20px;
@@ -85,8 +75,9 @@
85
75
 
86
76
  .ac-card-logo {
87
77
  max-width: 50px;
88
- height: 50px;
89
- margin: 0 auto 20px;
78
+ // margin: 0 auto 20px;
79
+ margin-inline: auto;
80
+ margin-bottom: 10px;
90
81
  display: flex;
91
82
  align-items: center;
92
83
 
@@ -97,22 +88,25 @@
97
88
 
98
89
  .ac-card-name {
99
90
  p {
100
- font-size: $font-size-small;
101
- color: $ac-color-text;
91
+ font-size: 13px;
92
+ color: $primary-10;
102
93
  line-height: 1;
103
94
 
104
95
  &.free {
105
- color: $ac-primary;
96
+ color: $primary;
106
97
  }
107
98
  }
108
99
  }
109
100
 
110
- &:hover {
111
- background-color: $ac-bg-light-gray;
112
- }
101
+ // &:hover {
102
+ // background-color: $black-60;
103
+ // }
113
104
  }
114
105
 
115
106
  &.card-counter {
107
+
108
+ padding: 16px;
109
+
116
110
  .card-header {
117
111
  display: flex;
118
112
  justify-content: space-between;
@@ -124,7 +118,7 @@
124
118
  h3 {
125
119
  font-size: 16px;
126
120
  line-height: 1;
127
- font-family: $ac-family-paragraph;
121
+ font-family: $font-paragraph;
128
122
  }
129
123
  }
130
124
 
@@ -135,7 +129,7 @@
135
129
  font-size: 36px;
136
130
  line-height: 1;
137
131
  font-weight: 600;
138
- color: $ac-color-heading;
132
+ color: $primary-5;
139
133
  display: inline-block;
140
134
  position: relative;
141
135
  z-index: 1;
@@ -177,12 +171,12 @@
177
171
  }
178
172
 
179
173
  &:hover {
180
- border: 1px solid $ac-primary;
174
+ border: 1px solid $primary;
181
175
 
182
176
  .ac-card-title {
183
177
  h4 {
184
178
  a {
185
- color: $ac-primary;
179
+ color: $primary;
186
180
  }
187
181
  }
188
182
  }
@@ -197,20 +191,21 @@
197
191
  width: 40px;
198
192
  overflow: hidden;
199
193
  margin-right: 15px;
200
- background: $ac-white;
194
+ background: $white-100;
201
195
  padding: 8px;
202
196
  height: 40px;
203
197
  border-radius: 50%;
204
198
  display: flex;
205
199
  align-items: center;
206
- border: 1px solid $ac-white-light;
200
+ border: 1px solid $primary-90;
207
201
  }
208
202
 
209
203
  .ac-card-title {
210
204
  width: calc(100% - 55px);
205
+
211
206
  h4 {
212
207
  a {
213
- color: $ac-color-heading;
208
+ color: $primary-5;
214
209
  }
215
210
 
216
211
  font-size: 16px;
@@ -219,7 +214,7 @@
219
214
  }
220
215
 
221
216
  p {
222
- font-size: $font-size-small;
217
+ font-size: 13px;
223
218
  color: $ac-gray;
224
219
  }
225
220
  }
@@ -227,8 +222,8 @@
227
222
 
228
223
  .ac-card-body {
229
224
  p {
230
- color: $ac-gray-dark;
231
- font-size: $font-size-small;
225
+ color: $black-30;
226
+ font-size: 13px;
232
227
  line-height: 140%;
233
228
  }
234
229
  }
@@ -242,7 +237,7 @@
242
237
  position: absolute;
243
238
  content: "";
244
239
  background-color: #27ae60;
245
- border: 2px solid $ac-white;
240
+ border: 2px solid $white-100;
246
241
  box-sizing: border-box;
247
242
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
248
243
  width: 10px;
@@ -256,15 +251,15 @@
256
251
  // offer card scss start
257
252
  .pricing-card-wrpper {
258
253
  &.offer-card {
259
- background-color: $ac-white-lighter;
260
- border: 1px solid $ac-white-light;
254
+ background-color: $white-100-lighter;
255
+ border: 1px solid $primary-90;
261
256
  border-radius: 4px;
262
257
  display: flex;
263
258
  position: relative;
264
259
  z-index: 1;
265
260
 
266
261
  &:after {
267
- @include absulate-shape($ac-primary, 100%, 4px);
262
+ @include absulate-shape($primary, 100%, 4px);
268
263
  background: linear-gradient(90deg, #f99a00 0%, #3f19ad 98.84%);
269
264
  }
270
265
 
@@ -296,7 +291,7 @@
296
291
 
297
292
  &.is-primary {
298
293
  &:after {
299
- @include absulate-shape($ac-primary, 100%, 4px);
294
+ @include absulate-shape($primary, 100%, 4px);
300
295
  border-radius: 4px 4px 0 0;
301
296
  }
302
297
  }
@@ -304,12 +299,12 @@
304
299
  &.is-warning {
305
300
  &.is-selected {
306
301
  &.pricing {
307
- border: 1px solid $ac-warning;
302
+ border: 1px solid $warning;
308
303
  }
309
304
  }
310
305
 
311
306
  &:after {
312
- @include absulate-shape($ac-warning, 100%, 4px);
307
+ @include absulate-shape($warning, 100%, 4px);
313
308
  border-radius: 4px 4px 0 0;
314
309
  }
315
310
  }
@@ -317,12 +312,12 @@
317
312
  &.is-green {
318
313
  &.is-selected {
319
314
  &.pricing {
320
- border: 1px solid $ac-green;
315
+ border: 1px solid $success;
321
316
  }
322
317
  }
323
318
 
324
319
  &:after {
325
- @include absulate-shape($ac-green, 100%, 4px);
320
+ @include absulate-shape($success, 100%, 4px);
326
321
  border-radius: 4px 4px 0 0;
327
322
  }
328
323
  }
@@ -330,22 +325,22 @@
330
325
  &.is-danger {
331
326
  &.is-selected {
332
327
  &.pricing {
333
- border: 1px solid $ac-danger;
328
+ border: 1px solid $danger;
334
329
  }
335
330
  }
336
331
 
337
332
  &:after {
338
- @include absulate-shape($ac-danger, 100%, 4px);
333
+ @include absulate-shape($danger, 100%, 4px);
339
334
  border-radius: 4px 4px 0 0;
340
335
  }
341
336
  }
342
337
 
343
338
  &.pricing {
344
- border: 1px solid $ac-white-light;
339
+ border: 1px solid $primary-90;
345
340
  border-radius: 4px;
346
341
 
347
342
  &.is-selected {
348
- border: 1px solid $ac-primary;
343
+ border: 1px solid $primary;
349
344
  }
350
345
  }
351
346
 
@@ -354,28 +349,28 @@
354
349
  display: flex;
355
350
  justify-content: space-between;
356
351
  padding: 10px;
357
- border-bottom: 1px solid $ac-white-light;
352
+ border-bottom: 1px solid $primary-90;
358
353
 
359
354
  &:last-child {
360
- border-bottom: 1px dashed $ac-white-light;
355
+ border-bottom: 1px dashed $primary-90;
361
356
  }
362
357
 
363
358
  a.inline-button {
364
359
  font-size: 12px;
365
- color: $ac-color-text;
360
+ color: $primary-10;
366
361
  text-decoration: underline;
367
362
  }
368
363
 
369
364
  span {
370
- color: $ac-color-text;
365
+ color: $primary-10;
371
366
  font-size: 12px;
372
367
  font-weight: 600;
373
368
  }
374
369
 
375
370
  p {
376
371
  font-weight: 500;
377
- font-size: $font-size-small;
378
- color: $ac-color-text;
372
+ font-size: 13px;
373
+ color: $primary-10;
379
374
 
380
375
  span {
381
376
  font-size: 12px;
@@ -390,7 +385,7 @@
390
385
  .button.ac-button {
391
386
  &.grediant-1 {
392
387
  border-radius: 4px;
393
- color: $ac-white;
388
+ color: $white-100;
394
389
  letter-spacing: 0;
395
390
  font-size: 12px;
396
391
  border: none;
@@ -420,14 +415,14 @@
420
415
  flex-wrap: wrap;
421
416
 
422
417
  .ac-single-card {
423
- border: 1px solid $ac-white-light;
418
+ border: 1px solid $primary-90;
424
419
 
425
420
  &:hover {
426
421
  border: 1px solid transparent;
427
422
  }
428
423
 
429
- &.style-three {
430
- background-color: $ac-white-lighter;
424
+ &.vendor-card {
425
+ background-color: $white-100-lighter;
431
426
  width: 183px;
432
427
  padding: 15px 15px 20px;
433
428
  height: 115px;
@@ -451,7 +446,7 @@
451
446
  font-size: 12px;
452
447
  line-height: 14px;
453
448
  text-align: center;
454
- color: $ac-color-text;
449
+ color: $primary-10;
455
450
  }
456
451
  }
457
452
  }
@@ -462,24 +457,24 @@
462
457
 
463
458
  // features card start
464
459
  .features-card-wrapper {
465
- background-color: $ac-white;
460
+ background-color: $white-100;
466
461
  padding: 10px;
467
462
  border-radius: 4px;
468
- border: 1px solid $ac-white-light;
463
+ border: 1px solid $primary-90;
469
464
 
470
465
  .f-header {
471
466
  display: grid;
472
467
  grid-template-columns: 40px auto 20px;
473
468
  grid-gap: 15px;
474
- border-bottom: 1px solid $ac-white-light;
469
+ border-bottom: 1px solid $primary-90;
475
470
  padding-bottom: 10px;
476
471
  margin-bottom: 10px;
477
472
  align-items: flex-start;
478
473
 
479
474
  .f-title-tag {
480
475
  .tag {
481
- background-color: $ac-primary;
482
- color: $ac-white;
476
+ background-color: $primary;
477
+ color: $white-100;
483
478
  }
484
479
  }
485
480
  }
@@ -487,9 +482,9 @@
487
482
  p {
488
483
  font-style: normal;
489
484
  font-weight: normal;
490
- font-size: $font-size-small;
485
+ font-size: 13px;
491
486
  line-height: 160%;
492
- color: $ac-color-text;
487
+ color: $primary-10;
493
488
  margin-bottom: 25px;
494
489
  }
495
490
 
@@ -500,9 +495,9 @@
500
495
  .name,
501
496
  .f-number {
502
497
  font-weight: 500;
503
- font-size: $font-size-small;
498
+ font-size: 13px;
504
499
  line-height: 16px;
505
- color: $ac-color-text;
500
+ color: $primary-10;
506
501
  margin-bottom: 10px;
507
502
  }
508
503
  }
@@ -512,9 +507,9 @@
512
507
  li {
513
508
  font-style: normal;
514
509
  font-weight: normal;
515
- font-size: $font-size-small;
510
+ font-size: 13px;
516
511
  line-height: 163%;
517
- color: $ac-color-text;
512
+ color: $primary-10;
518
513
  margin-bottom: 5px;
519
514
 
520
515
  i.fa {
@@ -531,7 +526,7 @@
531
526
  .ac-single-card {
532
527
  background-color: var(--dark-bg-light);
533
528
 
534
- &.style-three {
529
+ &.vendor-card {
535
530
  background-color: var(--dark-bg-light);
536
531
  }
537
532
 
@@ -552,25 +547,22 @@
552
547
  }
553
548
  }
554
549
  }
550
+
555
551
  // dark theme end
556
552
  /****************************************
557
553
  Responsive Classes
558
554
  *****************************************/
559
555
  // Extra small devices (portrait phones, less than 576px)
560
- @media (max-width: 575.98px) {
561
- }
556
+ @media (max-width: 575.98px) {}
562
557
 
563
558
  // Small devices (landscape phones, 576px and up)
564
- @media (min-width: 576px) and (max-width: 767.98px) {
565
- }
559
+ @media (min-width: 576px) and (max-width: 767.98px) {}
566
560
 
567
561
  // Medium devices (tablets, 768px and up)
568
- @media (min-width: 768px) and (max-width: 991.98px) {
569
- }
562
+ @media (min-width: 768px) and (max-width: 991.98px) {}
570
563
 
571
564
  // Large devices (desktops, 992px and up)
572
- @media (min-width: 992px) and (max-width: 1199.98px) {
573
- }
565
+ @media (min-width: 992px) and (max-width: 1199.98px) {}
574
566
 
575
567
  // Extra large devices (large desktops, 1200px and up)
576
568
  @media (min-width: 1200px) {
@@ -579,7 +571,7 @@ Responsive Classes
579
571
  ul {
580
572
  li {
581
573
  p {
582
- font-size: $font-size-small;
574
+ font-size: 13px;
583
575
  line-height: 1;
584
576
  }
585
577
  }
@@ -594,4 +586,4 @@ Responsive Classes
594
586
  }
595
587
  }
596
588
  }
597
- }
589
+ }
@@ -1,13 +1,13 @@
1
1
  .ac-code-highlight {
2
2
  pre {
3
- font-size: $font-size-small;
4
- color: $ac-color-text;
5
- background-color: $ac-white-lighter;
3
+ font-size: 13px;
4
+ color: $primary-10;
5
+ background-color: $white-100-lighter;
6
6
  }
7
7
  &.is-dark {
8
8
  pre {
9
- background-color: $ac-color-text;
10
- color: $ac-white;
9
+ background-color: $primary-10;
10
+ color: $white-100;
11
11
  }
12
12
  }
13
13
  }
@@ -19,7 +19,7 @@ pre[class*="language-"] {
19
19
  .editor-writable {
20
20
  width: 100%;
21
21
  border-radius: 4px !important;
22
- border: 1px solid $ac-white-light !important;
22
+ border: 1px solid $white-100-light !important;
23
23
  }
24
24
 
25
25
  .monaco-editor {