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

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 (186) hide show
  1. package/base/utilities/_all.scss +1 -1
  2. package/base/utilities/_default.scss +41 -41
  3. package/base/utilities/_derived-variables.scss +8 -9
  4. package/base/utilities/_extended.scss +1 -1
  5. package/base/utilities/_initial-variables.scss +52 -50
  6. package/base/utilities/_mixin.scss +11 -11
  7. package/base/utilities/_typography.scss +22 -22
  8. package/base/utilities/dark-theme.scss +1 -1
  9. package/components/_ac-accordion.scss +6 -6
  10. package/components/_ac-alert-box.scss +27 -28
  11. package/components/_ac-calendar.scss +4 -4
  12. package/components/_ac-card.scss +55 -55
  13. package/components/_ac-code-highlight.scss +6 -6
  14. package/components/_ac-content-layout.scss +165 -165
  15. package/components/_ac-drag.scss +11 -11
  16. package/components/_ac-input.scss +85 -85
  17. package/components/_ac-modal.scss +8 -8
  18. package/components/_ac-multi-select.scss +751 -751
  19. package/components/_ac-options.scss +12 -13
  20. package/components/_ac-select-box.scss +5 -5
  21. package/components/_ac-table.scss +55 -55
  22. package/components/_ac-tabs.scss +36 -36
  23. package/components/_ac-tags.scss +22 -22
  24. package/components/_ac-terminal.scss +253 -253
  25. package/components/_add-card.scss +3 -3
  26. package/components/_app-drawer.scss +4 -4
  27. package/components/_basic-card.scss +108 -118
  28. package/components/_breadcumb.scss +5 -5
  29. package/components/_buttons.scss +64 -64
  30. package/components/_card-body-wrapper.scss +5 -5
  31. package/components/_dashboard-header.scss +29 -29
  32. package/components/_direct-deploy.scss +8 -8
  33. package/components/_go-to-top.scss +1 -1
  34. package/components/_image-upload.scss +3 -3
  35. package/components/_left-sidebar-menu.scss +374 -376
  36. package/components/_monaco-editor.scss +1 -1
  37. package/components/_navbar.scss +65 -65
  38. package/components/_nested-list.scss +1 -1
  39. package/components/_overview-info.scss +7 -7
  40. package/components/_overview-page.scss +4 -4
  41. package/components/_pagination.scss +110 -110
  42. package/components/_payment-card.scss +20 -20
  43. package/components/_preloader.scss +1 -1
  44. package/components/_preview-modal.scss +18 -18
  45. package/components/_pricing-table.scss +10 -10
  46. package/components/_progress-bar.scss +12 -12
  47. package/components/_subscription-card.scss +14 -14
  48. package/components/_table-of-content.scss +4 -4
  49. package/components/_tfa.scss +9 -9
  50. package/components/_widget-menu.scss +17 -17
  51. package/components/_wizard.scss +82 -82
  52. package/components/ac-toaster/_ac-toasted.scss +1 -1
  53. package/components/bbum/_activities-header.scss +1 -1
  54. package/components/bbum/_card-team.scss +12 -12
  55. package/components/bbum/_information-center.scss +13 -13
  56. package/components/bbum/_left-sidebar.scss +8 -8
  57. package/components/bbum/_mobile-desktop.scss +7 -7
  58. package/components/bbum/_post.scss +5 -5
  59. package/components/bbum/_sign-up-notification.scss +10 -10
  60. package/components/bbum/_single-post-preview.scss +21 -21
  61. package/components/bbum/_user-profile.scss +10 -10
  62. package/components/ui-builder/_ui-builder.scss +15 -15
  63. package/components/ui-builder/_vue-open-api.scss +2 -2
  64. package/layouts/_code-preview.scss +11 -11
  65. package/package.json +1 -1
  66. package/vue-components/plugins/time-convert.js +49 -0
  67. package/vue-components/text.vue +1 -0
  68. package/vue-components/types/cluster.ts +6 -0
  69. package/vue-components/types/longRunningTasks.ts +20 -0
  70. package/vue-components/types/notification.ts +6 -0
  71. package/vue-components/types/previewYaml.ts +8 -0
  72. package/vue-components/types/table.ts +54 -0
  73. package/vue-components/types/theme.ts +10 -0
  74. package/vue-components/types/user.ts +22 -0
  75. package/vue-components/v2/card/OverviewCards.vue +17 -2
  76. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +21 -21
  77. package/vue-components/v2/icons/Ellipsis.vue +2 -1
  78. package/vue-components/v2/modal/Modal.vue +0 -5
  79. package/vue-components/v2/navbar/Appdrawer.vue +37 -12
  80. package/vue-components/v2/navbar/Navbar.vue +3 -3
  81. package/vue-components/v2/navbar/NavbarItem.vue +3 -1
  82. package/vue-components/v2/navbar/NavbarItemContent.vue +1 -1
  83. package/vue-components/v2/navbar/User.vue +5 -22
  84. package/vue-components/v2/pagination/Pagination.vue +65 -0
  85. package/vue-components/v2/sidebar/SidebarItem.vue +10 -7
  86. package/vue-components/v3/accordion/Accordion.vue +151 -0
  87. package/vue-components/v3/alert/Alert.vue +238 -0
  88. package/vue-components/v3/alert/Toast.vue +79 -0
  89. package/vue-components/v3/banner/Banner.vue +10 -0
  90. package/vue-components/v3/breadcrumbs/Breadcrumb.vue +104 -0
  91. package/vue-components/v3/button/Button.vue +831 -58
  92. package/vue-components/v3/button/Buttons.vue +6 -0
  93. package/vue-components/v3/button/DownloadBtn.vue +31 -0
  94. package/vue-components/v3/cards/Card.vue +32 -0
  95. package/vue-components/v3/cards/CardContent.vue +7 -0
  96. package/vue-components/v3/cards/CardHeader.vue +14 -0
  97. package/vue-components/v3/cards/Cards.vue +7 -0
  98. package/vue-components/v3/cards/Cluster.vue +150 -0
  99. package/vue-components/v3/cards/Counter.vue +27 -0
  100. package/vue-components/v3/cards/FeatureCard.vue +40 -0
  101. package/vue-components/v3/cards/FeatureCards.vue +6 -0
  102. package/vue-components/v3/cards/InfoCard.vue +248 -0
  103. package/vue-components/v3/cards/Monitoring.vue +94 -0
  104. package/vue-components/v3/cards/OverviewCard.vue +24 -0
  105. package/vue-components/v3/cards/OverviewCards.vue +31 -0
  106. package/vue-components/v3/cards/Payment.vue +62 -0
  107. package/vue-components/v3/cards/Vendor.vue +23 -0
  108. package/vue-components/v3/content/ContentHeader.vue +39 -30
  109. package/vue-components/v3/content/ContentLayout.vue +20 -0
  110. package/vue-components/v3/content/ContentTable.vue +37 -61
  111. package/vue-components/v3/dropdown/DropdownDivider.vue +2 -0
  112. package/vue-components/v3/dropdown/DropdownItem.vue +2 -0
  113. package/vue-components/v3/dropdown/DropdownMenu.vue +85 -91
  114. package/vue-components/v3/editor/Editor.vue +100 -113
  115. package/vue-components/v3/editor/FilteredFileEditor.vue +124 -127
  116. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +70 -94
  117. package/vue-components/v3/footer/FooterArea.vue +34 -0
  118. package/vue-components/v3/footer/FooterItem.vue +29 -0
  119. package/vue-components/v3/footer/FooterItems.vue +15 -0
  120. package/vue-components/v3/footer/Info.vue +23 -0
  121. package/vue-components/v3/footer/Status.vue +42 -0
  122. package/vue-components/v3/footer/Usage.vue +44 -0
  123. package/vue-components/v3/form/Form.vue +24 -33
  124. package/vue-components/v3/form/FormFooterControl.vue +7 -0
  125. package/vue-components/v3/form/FormFooterControls.vue +7 -0
  126. package/vue-components/v3/form-fields/AcSingleInput.vue +520 -0
  127. package/vue-components/v3/form-fields/Input.vue +19 -14
  128. package/vue-components/v3/header/Header.vue +117 -24
  129. package/vue-components/v3/header/HeaderItem.vue +18 -0
  130. package/vue-components/v3/header/HeaderItems.vue +4 -0
  131. package/vue-components/v3/icons/Ellipsis.vue +2 -0
  132. package/vue-components/v3/loaders/ResourceLoader.vue +4 -12
  133. package/vue-components/v3/loaders/SidebarLoader.vue +4 -12
  134. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +17 -15
  135. package/vue-components/v3/modal/Modal.vue +292 -96
  136. package/vue-components/v3/modals/DeleteConfirmationModal.vue +37 -50
  137. package/vue-components/v3/modals/JsonShowModal.vue +62 -68
  138. package/vue-components/v3/modals/LongRunningTasksModal.vue +145 -143
  139. package/vue-components/v3/navbar/Appdrawer.vue +196 -51
  140. package/vue-components/v3/navbar/Navbar.vue +296 -0
  141. package/vue-components/v3/navbar/NavbarItem.vue +81 -0
  142. package/vue-components/v3/navbar/NavbarItemContent.vue +284 -0
  143. package/vue-components/v3/navbar/Notification.vue +179 -0
  144. package/vue-components/v3/navbar/ThemeMode.vue +128 -112
  145. package/vue-components/v3/navbar/User.vue +383 -268
  146. package/vue-components/v3/notification/AlertBox.vue +39 -42
  147. package/vue-components/v3/notification/Notification.vue +49 -43
  148. package/vue-components/v3/notification/NotificationItem.vue +51 -19
  149. package/vue-components/v3/option-dots/Options.vue +188 -0
  150. package/vue-components/v3/pagination/Pagination.vue +203 -99
  151. package/vue-components/v3/preloader/Preloader.vue +23 -0
  152. package/vue-components/v3/searchbars/SearchBar.vue +51 -34
  153. package/vue-components/v3/sidebar/AccentColorPicker.vue +97 -0
  154. package/vue-components/v3/sidebar/ClusterSwitcher.vue +834 -81
  155. package/vue-components/v3/sidebar/Sidebar.vue +271 -0
  156. package/vue-components/v3/sidebar/SidebarBody.vue +7 -0
  157. package/vue-components/v3/sidebar/SidebarFooter.vue +80 -0
  158. package/vue-components/v3/sidebar/SidebarHeader.vue +124 -0
  159. package/vue-components/v3/sidebar/SidebarItem.vue +62 -0
  160. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +101 -104
  161. package/vue-components/v3/sidebar/SidebarMenuList.vue +9 -0
  162. package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabs.vue +128 -0
  163. package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabsLayout.vue +29 -0
  164. package/vue-components/v3/sidebar/sidebar-tabs/TabsContent.vue +99 -0
  165. package/vue-components/v3/tab/TabItem.vue +10 -12
  166. package/vue-components/v3/tab/Tabs.vue +9 -0
  167. package/vue-components/v3/tab/TabsBody.vue +7 -0
  168. package/vue-components/v3/table/EmptyTableInfo.vue +8 -0
  169. package/vue-components/v3/table/FakeTableCell.vue +22 -31
  170. package/vue-components/v3/table/InfoTable.vue +85 -59
  171. package/vue-components/v3/table/MultiInfoTable.vue +72 -95
  172. package/vue-components/v3/table/Table.vue +582 -151
  173. package/vue-components/v3/table/TableCell.vue +20 -23
  174. package/vue-components/v3/table/TableContainer.vue +50 -28
  175. package/vue-components/v3/table/TableRow.vue +63 -85
  176. package/vue-components/v3/table/table-cell/ArrayCell.vue +67 -79
  177. package/vue-components/v3/table/table-cell/CellValue.vue +97 -103
  178. package/vue-components/v3/table/table-cell/GenericCell.vue +43 -42
  179. package/vue-components/v3/table/table-cell/ObjectCell.vue +67 -79
  180. package/vue-components/v3/table/table-cell/ValueWithModal.vue +22 -31
  181. package/vue-components/v3/tabs/EditorTabs.vue +18 -24
  182. package/vue-components/v3/tag/Tag.vue +15 -12
  183. package/vue-components/v3/tag/Tags.vue +7 -0
  184. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +26 -23
  185. package/mixins/stickyContent.js +0 -141
  186. package/plugins/caching.ts +0 -243
@@ -1,6 +1,6 @@
1
1
  .editor {
2
2
  border: none;
3
- background-color: $ac-white-light !important;
3
+ background-color: $white-100-light !important;
4
4
  }
5
5
 
6
6
  .decorationsOverviewRuler {
@@ -1,5 +1,5 @@
1
1
  .ac-navbar-area {
2
- background-color: $ac-primary;
2
+ background-color: $primary;
3
3
  box-shadow: $ac-shadow-3;
4
4
  position: fixed;
5
5
  width: 100%;
@@ -7,7 +7,7 @@
7
7
  z-index: 999;
8
8
 
9
9
  &.is-light {
10
- background-color: $ac-white;
10
+ background-color: $white-100;
11
11
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
12
12
 
13
13
  .ac-navbar-menu .ac-menu-item .ac-nav-button.ac-profile-button {
@@ -15,7 +15,7 @@
15
15
  }
16
16
 
17
17
  .drawer-icon svg {
18
- fill: $ac-color-text !important;
18
+ fill: $primary-10 !important;
19
19
  }
20
20
  }
21
21
 
@@ -32,7 +32,7 @@
32
32
  .logo {
33
33
  font-size: 20px;
34
34
  font-weight: 600;
35
- color: $ac-white;
35
+ color: $white-100;
36
36
  }
37
37
 
38
38
  img {
@@ -48,21 +48,21 @@
48
48
  border-radius: 4px;
49
49
 
50
50
  span {
51
- color: $ac-white;
51
+ color: $white-100;
52
52
  }
53
53
 
54
54
  input {
55
55
  background-color: transparent;
56
56
  border: none;
57
- color: $ac-white;
58
- font-size: $font-size-small;
57
+ color: $white-100;
58
+ font-size: 13px;
59
59
  font-weight: 600;
60
- font-family: $ac-family-heading;
60
+ font-family: $font-heading;
61
61
  width: 100%;
62
62
  padding-left: 15px;
63
63
 
64
64
  &::placeholder {
65
- color: $ac-white-lighter;
65
+ color: $white-100-lighter;
66
66
  font-weight: 500;
67
67
  }
68
68
 
@@ -89,7 +89,7 @@
89
89
  height: 26px;
90
90
  border-radius: 50%;
91
91
  overflow: hidden;
92
- border: 2px solid $ac-white;
92
+ border: 2px solid $white-100;
93
93
 
94
94
  &:last-child {
95
95
  margin-right: 0;
@@ -98,10 +98,10 @@
98
98
 
99
99
  .more-items {
100
100
  text-align: center;
101
- color: $ac-white;
101
+ color: $white-100;
102
102
  z-index: 99;
103
103
  position: absolute;
104
- font-size: $font-size-extra-small;
104
+ font-size: 12px;
105
105
  font-weight: 500;
106
106
  }
107
107
 
@@ -150,7 +150,7 @@
150
150
  &:hover {
151
151
  .ac-nav-button:not(.ac-profile-button) {
152
152
  i.fa {
153
- color: $ac-white;
153
+ color: $white-100;
154
154
  }
155
155
  }
156
156
 
@@ -167,7 +167,7 @@
167
167
  overflow-y: auto;
168
168
  border-radius: 4px;
169
169
  left: 0;
170
- background-color: $ac-white;
170
+ background-color: $white-100;
171
171
 
172
172
  ul {
173
173
  li {
@@ -179,8 +179,8 @@
179
179
  cursor: pointer;
180
180
 
181
181
  &.is-active {
182
- color: $ac-white;
183
- background: $ac-primary;
182
+ color: $white-100;
183
+ background: $primary;
184
184
  }
185
185
  }
186
186
  }
@@ -195,7 +195,7 @@
195
195
  content: "";
196
196
  right: 15px;
197
197
  top: -6px;
198
- background-color: $ac-white;
198
+ background-color: $white-100;
199
199
  width: 15px;
200
200
  height: 15px;
201
201
  transform: rotate(45deg);
@@ -212,12 +212,12 @@
212
212
  .ac-nav-button {
213
213
  background-color: transparent;
214
214
  border: none;
215
- color: $ac-white-lighter;
215
+ color: $white-100-lighter;
216
216
  padding: 0 14px;
217
217
  margin-left: 15px;
218
218
 
219
219
  &.ac-profile-button {
220
- color: $ac-white;
220
+ color: $white-100;
221
221
  }
222
222
 
223
223
  &:last-child {
@@ -230,11 +230,11 @@
230
230
  right: 5px;
231
231
  width: 15px;
232
232
  height: 15px;
233
- background-color: $ac-white;
233
+ background-color: $white-100;
234
234
  font-size: 12px;
235
235
  line-height: 15px;
236
236
  border-radius: 50%;
237
- color: $ac-primary;
237
+ color: $primary;
238
238
  z-index: 9;
239
239
  }
240
240
 
@@ -245,10 +245,10 @@
245
245
 
246
246
  &.ac-profile-button {
247
247
  strong {
248
- color: $ac-white;
248
+ color: $white-100;
249
249
  margin-left: 16px;
250
250
  font-weight: 500;
251
- font-size: $font-size-small;
251
+ font-size: 13px;
252
252
  }
253
253
 
254
254
  .ac-user-profile {
@@ -280,14 +280,14 @@
280
280
  }
281
281
 
282
282
  .user-profile-wrapper {
283
- background-color: $ac-white;
283
+ background-color: $white-100;
284
284
  padding: 20px;
285
285
  border-radius: 4px;
286
286
 
287
287
  .profile-area {
288
288
  display: flex;
289
289
  align-items: center;
290
- border-bottom: 1px solid $ac-white-light;
290
+ border-bottom: 1px solid $primary-90;
291
291
  padding-bottom: 10px;
292
292
  margin-bottom: 10px;
293
293
 
@@ -316,14 +316,14 @@
316
316
 
317
317
  .profile-info {
318
318
  p {
319
- color: $ac-color-text;
320
- font-size: $font-size-small;
319
+ color: $primary-10;
320
+ font-size: 13px;
321
321
  font-weight: 500;
322
322
  line-height: 1.3;
323
323
  }
324
324
 
325
325
  a {
326
- font-size: $font-size-extra-small;
326
+ font-size: 12px;
327
327
  color: #74818d;
328
328
  line-height: 1.3;
329
329
  }
@@ -336,8 +336,8 @@
336
336
  padding: 8px 0px;
337
337
 
338
338
  &:hover {
339
- background-color: transparent;
340
- color: $ac-primary;
339
+ // background-color: transparent;
340
+ color: $primary;
341
341
  }
342
342
  }
343
343
  }
@@ -345,7 +345,7 @@
345
345
  }
346
346
 
347
347
  &.quick-access {
348
- background-color: $ac-white;
348
+ background-color: $white-100;
349
349
  padding: 20px;
350
350
  min-width: 260px !important;
351
351
  max-height: 250px;
@@ -356,19 +356,19 @@
356
356
  display: flex;
357
357
  justify-content: space-between;
358
358
  align-items: center;
359
- border-bottom: 1px solid $ac-white-light;
359
+ border-bottom: 1px solid $primary-90;
360
360
  padding-bottom: 20px;
361
361
 
362
362
  p {
363
- font-size: $font-size-small;
364
- color: $ac-color-text;
363
+ font-size: 13px;
364
+ color: $primary-10;
365
365
  }
366
366
 
367
367
  button {
368
368
  background-color: transparent;
369
369
  border: none;
370
370
  cursor: pointer;
371
- color: $ac-color-value;
371
+ color: $primary-20;
372
372
  }
373
373
  }
374
374
 
@@ -376,8 +376,8 @@
376
376
  margin-top: 20px;
377
377
 
378
378
  p {
379
- font-size: $font-size-small;
380
- color: $ac-color-text;
379
+ font-size: 13px;
380
+ color: $primary-10;
381
381
  }
382
382
 
383
383
  .organizations {
@@ -401,7 +401,7 @@
401
401
  .remove {
402
402
  border: none;
403
403
  padding: 0;
404
- font-size: $font-size-tiny;
404
+ font-size: 11px;
405
405
  color: #eb5757;
406
406
  background-color: transparent;
407
407
  }
@@ -437,7 +437,7 @@
437
437
 
438
438
  &.is-notification {
439
439
  right: 0;
440
- background-color: $ac-white;
440
+ background-color: $white-100;
441
441
  box-shadow: 0px 4px 8px rgba(84, 101, 126, 0.2);
442
442
  border-radius: 4px;
443
443
  min-width: 330px;
@@ -453,7 +453,7 @@
453
453
  .left-content {
454
454
  p {
455
455
  font-weight: 500;
456
- font-size: $font-size-small;
456
+ font-size: 13px;
457
457
  line-height: 19px;
458
458
  margin-bottom: 15px;
459
459
 
@@ -462,7 +462,7 @@
462
462
  }
463
463
 
464
464
  &.date {
465
- font-size: $font-size-tiny;
465
+ font-size: 11px;
466
466
  line-height: 14px;
467
467
  font-weight: normal;
468
468
  margin-bottom: 0;
@@ -475,11 +475,11 @@
475
475
  border: none;
476
476
  margin: 0;
477
477
  padding: 10px;
478
- font-size: $font-size-small;
478
+ font-size: 13px;
479
479
 
480
480
  &.is-active {
481
- background-color: $ac-primary;
482
- color: $ac-white;
481
+ background-color: $primary;
482
+ color: $white-100;
483
483
 
484
484
  img {
485
485
  filter: brightness(100);
@@ -487,8 +487,8 @@
487
487
  }
488
488
 
489
489
  &:hover {
490
- background-color: $ac-primary;
491
- color: $ac-white;
490
+ background-color: $primary;
491
+ color: $white-100;
492
492
 
493
493
  img {
494
494
  filter: brightness(100);
@@ -501,7 +501,7 @@
501
501
  .notification-body {
502
502
  .single-notification-item {
503
503
  display: block;
504
- border-top: 1px solid $ac-white-light;
504
+ border-top: 1px solid $primary-90;
505
505
  padding: 15px 20px;
506
506
  font-weight: 500;
507
507
 
@@ -514,8 +514,8 @@
514
514
  }
515
515
 
516
516
  p {
517
- color: $ac-color-text;
518
- font-size: $font-size-extra-small;
517
+ color: $primary-10;
518
+ font-size: 12px;
519
519
  }
520
520
 
521
521
  .notification-status {
@@ -525,19 +525,19 @@
525
525
  justify-content: space-between;
526
526
 
527
527
  p {
528
- font-size: $font-size-tiny;
528
+ font-size: 11px;
529
529
  color: $ac-label-text;
530
530
 
531
531
  &.is-success {
532
- color: $ac-success;
532
+ color: $success;
533
533
  }
534
534
 
535
535
  &.is-danger {
536
- color: $ac-danger;
536
+ color: $danger;
537
537
  }
538
538
 
539
539
  &.is-warning {
540
- color: $ac-warning;
540
+ color: $warning;
541
541
  }
542
542
  }
543
543
  }
@@ -545,18 +545,18 @@
545
545
  }
546
546
 
547
547
  .see-all-message {
548
- border-top: 1px solid $ac-white-light;
548
+ border-top: 1px solid $primary-90;
549
549
  text-align: center;
550
550
  font-weight: 500;
551
- font-size: $font-size-small;
552
- color: $ac-color-text;
551
+ font-size: 13px;
552
+ color: $primary-10;
553
553
  display: block;
554
554
  padding: 10px 20px;
555
555
  }
556
556
  }
557
557
 
558
558
  ul {
559
- background-color: $ac-white;
559
+ background-color: $white-100;
560
560
  padding: 0;
561
561
  border-radius: 4px;
562
562
  overflow: hidden;
@@ -565,13 +565,13 @@
565
565
  a {
566
566
  display: block;
567
567
  padding: 8px 15px;
568
- color: $ac-color-text;
568
+ color: $primary-10;
569
569
  transition: 0.3s ease-in-out;
570
- font-size: $font-size-small;
570
+ font-size: 13px;
571
571
 
572
572
  &:hover {
573
- background-color: $ac-primary;
574
- color: $ac-white;
573
+ background-color: $primary;
574
+ color: $white-100;
575
575
  }
576
576
  }
577
577
  }
@@ -612,10 +612,10 @@
612
612
  }
613
613
 
614
614
  .theme-choicee {
615
- border: 1px solid $ac-white-light;
615
+ border: 1px solid $primary-90;
616
616
 
617
617
  li {
618
- border-right: 1px solid $ac-white-light;
618
+ border-right: 1px solid $primary-90;
619
619
  cursor: pointer;
620
620
  transition: 0.3s ease-in-out;
621
621
 
@@ -628,8 +628,8 @@
628
628
  }
629
629
 
630
630
  &.is-active {
631
- background-color: $ac-primary;
632
- color: $ac-white;
631
+ background-color: $primary;
632
+ color: $white-100;
633
633
  }
634
634
  }
635
635
  }
@@ -3,7 +3,7 @@
3
3
  li {
4
4
  display: flex;
5
5
  align-items: center;
6
- border: 1px solid $ac-white-light;
6
+ border: 1px solid $primary-90;
7
7
  margin-top: -1px;
8
8
  padding: 5px 15px;
9
9
 
@@ -1,15 +1,15 @@
1
1
  .cluster-overview {
2
- background-color: $ac-white;
2
+ background-color: $white-100;
3
3
  height: calc(100vh - 80px);
4
4
 
5
5
  .overview-title {
6
6
  p {
7
7
  font-size: 18px;
8
8
  line-height: 1;
9
- color: $ac-color-heading;
9
+ color: $primary-5;
10
10
  font-weight: 500;
11
11
  padding: 20px;
12
- border-bottom: 1px solid $ac-white-light;
12
+ border-bottom: 1px solid $primary-90;
13
13
  }
14
14
  }
15
15
 
@@ -22,7 +22,7 @@
22
22
  }
23
23
 
24
24
  h3 {
25
- color: $ac-color-heading;
25
+ color: $primary-5;
26
26
  font-size: 26px;
27
27
  font-weight: 500;
28
28
  }
@@ -41,13 +41,13 @@
41
41
 
42
42
  h4 {
43
43
  font-size: 12px;
44
- color: $ac-color-value;
44
+ color: $primary-20;
45
45
  font-weight: 500;
46
46
  opacity: 0.5;
47
47
  }
48
48
 
49
49
  .button {
50
- color: $ac-color-value;
50
+ color: $primary-20;
51
51
  text-decoration: underline;
52
52
  }
53
53
  }
@@ -70,7 +70,7 @@
70
70
  font-size: 16px;
71
71
  color: #f99a00;
72
72
  font-weight: 500;
73
- font-family: $ac-family-heading;
73
+ font-family: $font-heading;
74
74
  }
75
75
  }
76
76
  }
@@ -25,14 +25,14 @@
25
25
  // single charge
26
26
  .single-charge-inner {
27
27
  padding: 10px 0;
28
- border-bottom: 1px solid $ac-white-light;
28
+ border-bottom: 1px solid $primary-90;
29
29
 
30
30
  &:last-child {
31
31
  border-bottom: none;
32
32
  }
33
33
 
34
34
  p.charge {
35
- color: $ac-color-text;
35
+ color: $primary-10;
36
36
  font-size: 16px;
37
37
  }
38
38
 
@@ -45,12 +45,12 @@
45
45
  // bottom: 12px;
46
46
 
47
47
  a {
48
- color: $ac-color-text;
48
+ color: $primary-10;
49
49
  font-size: 16px;
50
50
  font-weight: 500;
51
51
 
52
52
  &:hover {
53
- color: $ac-primary;
53
+ color: $primary;
54
54
  }
55
55
  }
56
56
  }