@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
@@ -1,17 +1,17 @@
1
1
  .single-wizard-section {
2
2
  padding: 20px;
3
- background-color: $ac-white;
4
- border: 1px solid $ac-white-light;
3
+ background-color: $white-100;
4
+ border: 1px solid $primary-90;
5
5
  border-radius: 4px;
6
6
  }
7
7
 
8
8
  .wizard-description {
9
- font-family: $ac-family-paragraph;
9
+ font-family: $font-paragraph;
10
10
  font-style: normal;
11
11
  font-weight: normal;
12
- font-size: $font-size-small;
12
+ font-size: 13px;
13
13
  line-height: 100%;
14
- color: $ac-color-text;
14
+ color: $primary-10;
15
15
  margin-bottom: 10px;
16
16
  }
17
17
 
@@ -80,12 +80,12 @@
80
80
  }
81
81
 
82
82
  strong {
83
- font-family: $ac-family-paragraph;
83
+ font-family: $font-paragraph;
84
84
  font-style: normal;
85
85
  font-weight: 500;
86
- font-size: $font-size-small;
86
+ font-size: 13px;
87
87
  line-height: 16px;
88
- color: $ac-color-text;
88
+ color: $primary-10;
89
89
  margin-right: 16px;
90
90
  }
91
91
  }
@@ -114,8 +114,8 @@
114
114
  .card-select {
115
115
  height: 94px;
116
116
  padding: 10px;
117
- background-color: $ac-white;
118
- border: 1px solid $ac-white-light;
117
+ background-color: $white-100;
118
+ border: 1px solid $primary-90;
119
119
  box-sizing: border-box;
120
120
  border-radius: 4px;
121
121
  transition: 0.3s ease-in-out;
@@ -162,16 +162,16 @@
162
162
  border: none;
163
163
 
164
164
  label {
165
- color: $ac-primary !important;
165
+ color: $primary !important;
166
166
  }
167
167
  }
168
168
 
169
169
  .ac-single-radio,
170
170
  .ac-single-checkbox {
171
171
  label {
172
- font-size: $font-size-small;
172
+ font-size: 13px;
173
173
  line-height: 20px;
174
- color: $ac-color-heading;
174
+ color: $primary-5;
175
175
  padding-left: 25px !important;
176
176
  }
177
177
 
@@ -192,13 +192,13 @@
192
192
  background-color: transparent;
193
193
 
194
194
  label {
195
- color: $ac-color-text;
195
+ color: $primary-10;
196
196
  cursor: not-allowed;
197
197
  }
198
198
  }
199
199
 
200
200
  .ac-single-radio .is-checkradio[type="radio"]:checked + label {
201
- color: $ac-primary;
201
+ color: $primary;
202
202
  }
203
203
 
204
204
  .ac-single-radio {
@@ -207,7 +207,7 @@
207
207
  }
208
208
 
209
209
  &.is-disabled {
210
- background-color: $ac-white-lighter;
210
+ background-color: $white-100-lighter;
211
211
  cursor: not-allowed;
212
212
  opacity: 0.8;
213
213
 
@@ -223,7 +223,7 @@
223
223
  }
224
224
 
225
225
  &.is-selected {
226
- border: 1px solid $ac-primary;
226
+ border: 1px solid $primary;
227
227
  }
228
228
 
229
229
  &:last-child {
@@ -269,7 +269,7 @@
269
269
  z-index: 2;
270
270
  right: 10px;
271
271
  top: 10px;
272
- background-color: $ac-white;
272
+ background-color: $white-100;
273
273
  box-shadow: $ac-shadow-2;
274
274
  display: inline-block;
275
275
  border-radius: 4px;
@@ -283,22 +283,22 @@
283
283
  position: absolute;
284
284
  right: -5px;
285
285
  top: -5px;
286
- border: 1px solid $ac-gray-lightest;
286
+ border: 1px solid $black-80;
287
287
  font-size: 10px;
288
288
  height: 25px;
289
289
  width: 25px;
290
290
  text-align: center;
291
- background-color: $ac-white;
291
+ background-color: $white-100;
292
292
  border-radius: 50%;
293
293
  cursor: pointer;
294
- color: $ac-danger;
294
+ color: $danger;
295
295
  transition: 0.3s ease-in-out;
296
296
  display: block;
297
297
 
298
298
  &:hover {
299
- color: $ac-white;
300
- background-color: $ac-danger;
301
- border: 1px solid $ac-danger;
299
+ color: $white-100;
300
+ background-color: $danger;
301
+ border: 1px solid $danger;
302
302
  }
303
303
  }
304
304
 
@@ -308,13 +308,13 @@
308
308
  a {
309
309
  display: block;
310
310
  padding: 5px 10px 5px 0;
311
- color: $ac-color-value;
312
- font-size: $font-size-tiny;
311
+ color: $primary-20;
312
+ font-size: 11px;
313
313
  text-decoration: underline;
314
314
  font-weight: 400;
315
315
 
316
316
  &:hover {
317
- color: $ac-primary;
317
+ color: $primary;
318
318
  }
319
319
  }
320
320
  }
@@ -330,25 +330,25 @@
330
330
  }
331
331
 
332
332
  label {
333
- font-family: $ac-family-heading;
333
+ font-family: $font-heading;
334
334
  font-style: normal;
335
335
  font-weight: 500;
336
- font-size: $font-size-small;
336
+ font-size: 13px;
337
337
  line-height: 24px;
338
- color: $ac-color-heading;
338
+ color: $primary-5;
339
339
  }
340
340
  }
341
341
 
342
342
  p {
343
- font-family: $ac-family-paragraph;
343
+ font-family: $font-paragraph;
344
344
  font-style: normal;
345
345
  font-weight: normal;
346
- font-size: $font-size-small;
346
+ font-size: 13px;
347
347
  line-height: 140%;
348
- color: $ac-color-text;
348
+ color: $primary-10;
349
349
 
350
350
  &.is-warning {
351
- color: $ac-danger;
351
+ color: $danger;
352
352
  }
353
353
 
354
354
  a {
@@ -377,12 +377,12 @@
377
377
  .ac-single-checkbox {
378
378
  .is-checkradio[type="checkbox"] {
379
379
  &.ac-checkbox + label {
380
- font-family: $ac-family-heading;
380
+ font-family: $font-heading;
381
381
  font-style: normal;
382
382
  font-weight: 500;
383
383
  font-size: 13px;
384
384
  line-height: 20px;
385
- color: $ac-color-heading;
385
+ color: $primary-5;
386
386
  }
387
387
  }
388
388
  }
@@ -400,12 +400,12 @@
400
400
 
401
401
  .state-left {
402
402
  h5 {
403
- font-family: $ac-family-paragraph;
403
+ font-family: $font-paragraph;
404
404
  font-style: normal;
405
405
  font-weight: 500;
406
- font-size: $font-size-normal;
406
+ font-size: 14px;
407
407
  line-height: 19px;
408
- color: $ac-color-text;
408
+ color: $primary-10;
409
409
  }
410
410
 
411
411
  img {
@@ -449,7 +449,7 @@
449
449
  // final state end
450
450
 
451
451
  .circle-list-shape {
452
- border: 3px solid $ac-color-text;
452
+ border: 3px solid $primary-10;
453
453
  border-radius: 50%;
454
454
  width: 10px;
455
455
  height: 10px;
@@ -460,12 +460,12 @@
460
460
  .ac-selected-item {
461
461
  .selected-left {
462
462
  .item-name {
463
- font-family: $ac-family-paragraph;
463
+ font-family: $font-paragraph;
464
464
  font-style: normal;
465
465
  font-weight: 500;
466
- font-size: $font-size-small;
466
+ font-size: 13px;
467
467
  line-height: 16px;
468
- color: $ac-color-text;
468
+ color: $primary-10;
469
469
  }
470
470
 
471
471
  button {
@@ -502,11 +502,11 @@
502
502
  .ac-certificate-area {
503
503
  box-shadow: $ac-shadow-1;
504
504
  border-radius: 4px;
505
- background-color: $ac-white;
505
+ background-color: $white-100;
506
506
 
507
507
  .list-items {
508
508
  padding: 10px;
509
- border-bottom: 1px solid $ac-white-light;
509
+ border-bottom: 1px solid $primary-90;
510
510
 
511
511
  &:last-child {
512
512
  border-bottom: none;
@@ -519,18 +519,18 @@
519
519
 
520
520
  li {
521
521
  font-weight: 500;
522
- color: $ac-color-heading;
522
+ color: $primary-5;
523
523
  }
524
524
  }
525
525
 
526
526
  li {
527
527
  width: 20%;
528
- font-family: $ac-family-paragraph;
528
+ font-family: $font-paragraph;
529
529
  font-style: normal;
530
530
  font-weight: normal;
531
- font-size: $font-size-small;
531
+ font-size: 13px;
532
532
  line-height: 16px;
533
- color: $ac-color-text;
533
+ color: $primary-10;
534
534
  display: flex;
535
535
  align-items: center;
536
536
 
@@ -543,7 +543,7 @@
543
543
 
544
544
  .ac-certificate-info {
545
545
  padding: 10px 15px;
546
- background-color: $ac-bg-light-gray;
546
+ background-color: $black-60;
547
547
  border-radius: 4px;
548
548
 
549
549
  .single-name-title {
@@ -559,13 +559,13 @@
559
559
  }
560
560
 
561
561
  label:not(.wizard-title) {
562
- font-family: $ac-family-paragraph;
562
+ font-family: $font-paragraph;
563
563
  font-style: normal;
564
564
  font-weight: normal;
565
- font-size: $font-size-small;
565
+ font-size: 13px;
566
566
  line-height: 18px;
567
567
  display: block;
568
- color: $ac-color-text;
568
+ color: $primary-10;
569
569
  margin-bottom: 5px;
570
570
  }
571
571
  }
@@ -578,16 +578,16 @@
578
578
  }
579
579
 
580
580
  button.button.ac-button.is-square.is-white {
581
- background-color: $ac-white;
581
+ background-color: $white-100;
582
582
 
583
583
  &:hover {
584
- background-color: $ac-white-light;
584
+ background-color: $primary-90;
585
585
  }
586
586
  }
587
587
 
588
588
  .line-title {
589
589
  span {
590
- background-color: $ac-bg-light-gray;
590
+ background-color: $black-60;
591
591
  }
592
592
  }
593
593
  }
@@ -603,17 +603,17 @@
603
603
  }
604
604
 
605
605
  strong {
606
- font-family: $ac-family-paragraph;
606
+ font-family: $font-paragraph;
607
607
  font-style: normal;
608
608
  font-weight: 500;
609
- font-size: $font-size-small;
609
+ font-size: 13px;
610
610
  line-height: 16px;
611
611
  display: flex;
612
612
  align-items: center;
613
613
 
614
614
  /* Gray 1 */
615
615
 
616
- color: $ac-color-text;
616
+ color: $primary-10;
617
617
  }
618
618
  }
619
619
  }
@@ -640,7 +640,7 @@ label {
640
640
  display: block;
641
641
 
642
642
  span {
643
- background-color: $ac-white;
643
+ background-color: $white-100;
644
644
  padding-right: 8px;
645
645
  }
646
646
 
@@ -652,18 +652,18 @@ label {
652
652
  margin-top: -0.5px;
653
653
  width: 100%;
654
654
  height: 1px;
655
- background-color: $ac-blue-light;
655
+ background-color: $info-light;
656
656
  z-index: -1;
657
657
  }
658
658
  }
659
659
 
660
660
  span.inline-description {
661
- font-family: $ac-family-paragraph;
661
+ font-family: $font-paragraph;
662
662
  font-style: normal;
663
663
  font-weight: normal;
664
- font-size: $font-size-extra-small;
664
+ font-size: 12px;
665
665
  line-height: 160%;
666
- color: $ac-color-text;
666
+ color: $primary-10;
667
667
  transform: translate(5px, -2px);
668
668
  display: inline-block;
669
669
  }
@@ -718,7 +718,7 @@ button {
718
718
 
719
719
  h5 {
720
720
  &.wizard-title {
721
- color: $ac-color-text;
721
+ color: $primary-10;
722
722
 
723
723
  .is-required {
724
724
  transform: translateY(-2px);
@@ -743,10 +743,10 @@ h5 {
743
743
 
744
744
  h5 {
745
745
  margin-bottom: 10px;
746
- font-family: $ac-family-paragraph;
746
+ font-family: $font-paragraph;
747
747
  font-style: normal;
748
748
  font-weight: 500;
749
- color: $ac-color-heading;
749
+ color: $primary-5;
750
750
  }
751
751
  }
752
752
 
@@ -754,30 +754,30 @@ h5 {
754
754
 
755
755
  // Wizard Notification Area Start
756
756
  .wizard-notification-area {
757
- background-color: $ac-gray-lightest;
757
+ background-color: $black-80;
758
758
  border-radius: 10px;
759
759
  padding: 10px;
760
760
  width: 100%;
761
761
 
762
762
  p {
763
- font-family: $ac-family-paragraph;
763
+ font-family: $font-paragraph;
764
764
  font-style: normal;
765
- font-size: $font-size-small;
765
+ font-size: 13px;
766
766
  line-height: 18px;
767
- color: $ac-white;
767
+ color: $white-100;
768
768
  font-weight: 400;
769
769
 
770
770
  b {
771
771
  font-weight: 500;
772
772
 
773
773
  &.star-dots {
774
- font-family: $ac-family-paragraph;
774
+ font-family: $font-paragraph;
775
775
  font-style: normal;
776
776
  font-weight: bold;
777
777
  font-size: 20px;
778
778
  line-height: 23px;
779
779
  letter-spacing: 8px;
780
- color: $ac-white;
780
+ color: $white-100;
781
781
  margin-top: 10px;
782
782
  display: block;
783
783
  }
@@ -796,29 +796,29 @@ h5 {
796
796
  }
797
797
 
798
798
  .ac-counter {
799
- border: 1px solid $ac-white-light;
799
+ border: 1px solid $primary-90;
800
800
  padding: 10px 5px;
801
801
  height: 40px;
802
802
  width: 60px;
803
803
  background-color: transparent;
804
804
  border-radius: 4px;
805
805
  text-align: center;
806
- font-family: $ac-family-paragraph;
806
+ font-family: $font-paragraph;
807
807
  font-weight: 500;
808
- font-size: $font-size-small;
808
+ font-size: 13px;
809
809
  line-height: 19px;
810
- color: $ac-color-text;
810
+ color: $primary-10;
811
811
  margin: 0 10px 10px 0;
812
812
 
813
813
  &:focus {
814
814
  outline: none;
815
- border: 1px solid $ac-primary;
815
+ border: 1px solid $primary;
816
816
  }
817
817
 
818
818
  &.is-selected {
819
- border: 1px solid $ac-primary;
820
- background-color: $ac-primary;
821
- color: $ac-white;
819
+ border: 1px solid $primary;
820
+ background-color: $primary;
821
+ color: $white-100;
822
822
  }
823
823
  }
824
824
  }
@@ -828,7 +828,7 @@ h5 {
828
828
  // dark theme start
829
829
  .is-dark-theme {
830
830
  h6.wizard-title.has-line:after {
831
- --ac-blue-light: $ac-color-value;
831
+ --ac-blue-light: $primary-20;
832
832
  }
833
833
 
834
834
  .ac-certificate-info {
@@ -10,7 +10,7 @@
10
10
  border-radius: 4px !important;
11
11
 
12
12
  * {
13
- color: $ac-white !important;
13
+ color: $white-100 !important;
14
14
  }
15
15
 
16
16
  p {
@@ -8,7 +8,7 @@
8
8
  h3 {
9
9
  font-size: 16px;
10
10
  line-height: 26px;
11
- font-family: $ac-family-paragraph;
11
+ font-family: $font-paragraph;
12
12
  }
13
13
 
14
14
  button {
@@ -1,5 +1,5 @@
1
1
  .single-team-card {
2
- border: 1px solid $ac-white-light;
2
+ border: 1px solid $primary-90;
3
3
  background-color: hsla(
4
4
  var(--hsl-hue),
5
5
  var(--hsl-saturation),
@@ -12,8 +12,8 @@
12
12
 
13
13
  &:hover {
14
14
  // box-shadow: $ac-shadow-1;
15
- border: 1px solid $ac-primary;
16
- background-color: $ac-white;
15
+ border: 1px solid $primary;
16
+ background-color: $white-100;
17
17
  }
18
18
 
19
19
  .card-header {
@@ -21,11 +21,11 @@
21
21
  align-items: center;
22
22
  justify-content: space-between;
23
23
  padding: 15px 20px;
24
- border-bottom: 1px solid $ac-white-light;
24
+ border-bottom: 1px solid $primary-90;
25
25
  box-shadow: none;
26
26
 
27
27
  strong {
28
- font-size: $font-size-medium;
28
+ font-size: 16px;
29
29
  line-height: 1.2;
30
30
  color: #1c2d41;
31
31
  }
@@ -59,8 +59,8 @@
59
59
  height: 30px;
60
60
  border-radius: 50%;
61
61
  overflow: hidden;
62
- border: 2px solid $ac-white;
63
- background-color: $ac-white;
62
+ border: 2px solid $white-100;
63
+ background-color: $white-100;
64
64
 
65
65
  img {
66
66
  width: 100%;
@@ -71,15 +71,15 @@
71
71
 
72
72
  a {
73
73
  display: block;
74
- font-size: $font-size-tiny;
74
+ font-size: 11px;
75
75
  font-weight: 500;
76
76
  margin-bottom: 20px;
77
77
  }
78
78
  }
79
79
 
80
80
  .meta {
81
- font-size: $font-size-small;
82
- color: $ac-color-value;
81
+ font-size: 13px;
82
+ color: $primary-20;
83
83
  margin-bottom: 20px;
84
84
  }
85
85
 
@@ -92,8 +92,8 @@
92
92
  &:not(:first-child) {
93
93
  list-style: disc;
94
94
  }
95
- font-size: $font-size-small;
96
- color: $ac-color-value;
95
+ font-size: 13px;
96
+ color: $primary-20;
97
97
  }
98
98
  }
99
99
  }
@@ -1,23 +1,23 @@
1
1
  .information-center {
2
2
  .information-center-inner {
3
- background-color: $ac-white;
3
+ background-color: $white-100;
4
4
  position: sticky;
5
5
  top: 50px;
6
6
  height: calc(100vh - 50px);
7
- border-left: 1px solid $ac-white-light;
7
+ border-left: 1px solid $primary-90;
8
8
 
9
9
  .info-title {
10
10
  display: flex;
11
11
  align-items: center;
12
12
  justify-content: space-between;
13
13
  margin-bottom: 15px;
14
- border-bottom: 1px solid $ac-white-light;
14
+ border-bottom: 1px solid $primary-90;
15
15
  height: 50px;
16
16
  padding: 0 20px;
17
17
 
18
18
  h3 {
19
19
  font-size: 16px;
20
- font-family: $ac-family-paragraph;
20
+ font-family: $font-paragraph;
21
21
  line-height: 24px;
22
22
  }
23
23
  }
@@ -53,17 +53,17 @@
53
53
  p {
54
54
  font-size: 12px;
55
55
  line-height: 160%;
56
- color: $ac-color-text;
56
+ color: $primary-10;
57
57
  }
58
58
 
59
59
  hr {
60
- background-color: $ac-white-light;
60
+ background-color: $primary-90;
61
61
  }
62
62
 
63
63
  h3 {
64
64
  font-size: 16px;
65
65
  line-height: 26px;
66
- font-family: $ac-family-paragraph;
66
+ font-family: $font-paragraph;
67
67
  }
68
68
 
69
69
  .video-thambnail {
@@ -72,7 +72,7 @@
72
72
  height: 160px;
73
73
  background-size: cover;
74
74
  background-position: center;
75
- background-color: $ac-gray-lightest;
75
+ background-color: $black-80;
76
76
  position: relative;
77
77
  z-index: 1;
78
78
 
@@ -119,21 +119,21 @@
119
119
  button {
120
120
  background-color: transparent;
121
121
  padding: 10px;
122
- color: $ac-white;
122
+ color: $white-100;
123
123
  border: none;
124
124
  cursor: pointer;
125
125
  font-size: 16px;
126
126
  transition: 0.3s;
127
127
 
128
128
  &:hover {
129
- color: $ac-gray-lightest;
129
+ color: $black-80;
130
130
  }
131
131
  }
132
132
  }
133
133
  }
134
134
 
135
135
  .block-list {
136
- background-color: $ac-blue-light;
136
+ background-color: $info-light;
137
137
  padding: 7px;
138
138
  border-radius: 4px;
139
139
 
@@ -151,7 +151,7 @@
151
151
 
152
152
  li {
153
153
  font-size: 12px;
154
- color: $ac-color-text;
154
+ color: $primary-10;
155
155
  display: block;
156
156
  padding: 3px 0;
157
157
 
@@ -162,7 +162,7 @@
162
162
  left: 0;
163
163
  padding-right: 8px;
164
164
  margin-top: -3px;
165
- color: $ac-color-text;
165
+ color: $primary-10;
166
166
  }
167
167
  }
168
168
  }