@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
@@ -5,4 +5,4 @@
5
5
  @import "typography";
6
6
  @import "default";
7
7
  @import "grid";
8
- @import "dark-theme";
8
+ @import "dark-theme";
@@ -34,7 +34,7 @@
34
34
  .inner-header {
35
35
  position: sticky;
36
36
  top: 100px;
37
- background-color: $ac-white;
37
+ background-color: $white-100;
38
38
  z-index: 997;
39
39
  }
40
40
 
@@ -89,7 +89,7 @@
89
89
  position: fixed;
90
90
  top: 140px;
91
91
  width: 219px;
92
- border-right: 1px solid $ac-white-light;
92
+ border-right: 1px solid $primary-90;
93
93
  height: 100%;
94
94
 
95
95
  ul.menu-list-wrapper {
@@ -105,8 +105,8 @@
105
105
  }
106
106
 
107
107
  .ac-system-left-sidebar {
108
- border-right: 1px solid $ac-white-light;
109
- box-shadow: none;
108
+ // border-right: 1px solid $primary-90;
109
+ // box-shadow: none;
110
110
 
111
111
  &.is-expanded {
112
112
  z-index: 998;
@@ -121,7 +121,7 @@
121
121
 
122
122
  &.ac-menu-list {
123
123
  width: 270px !important;
124
- background-color: $ac-white;
124
+ background-color: $white-100;
125
125
 
126
126
  li {
127
127
  a {
@@ -155,7 +155,7 @@
155
155
  }
156
156
 
157
157
  .dropdown-content {
158
- background-color: $ac-white;
158
+ background-color: $white-100;
159
159
  }
160
160
 
161
161
  // color swatch start
@@ -195,7 +195,7 @@ input[type="color"]::-moz-color-swatch {
195
195
  }
196
196
 
197
197
  .ac-preloader {
198
- color: $ac-color-text;
198
+ color: $primary-10;
199
199
  }
200
200
 
201
201
  .section-padding {
@@ -211,7 +211,7 @@ input[type="color"]::-moz-color-swatch {
211
211
  }
212
212
 
213
213
  .section-divider {
214
- background-color: $ac-white-light;
214
+ background-color: $primary-90;
215
215
  }
216
216
 
217
217
  .is-auto-hight {
@@ -238,7 +238,7 @@ input[type="color"]::-moz-color-swatch {
238
238
  }
239
239
 
240
240
  .b-1 {
241
- border: 1px solid $ac-white-light;
241
+ border: 1px solid $primary-90;
242
242
  }
243
243
 
244
244
  // border left, right, top, bottom none
@@ -258,7 +258,7 @@ $positions: (
258
258
  // border 1px
259
259
  @each $key, $position in $positions {
260
260
  .b-#{$key}-1 {
261
- border-#{$position}: 1px solid $ac-white-light;
261
+ border-#{$position}: 1px solid $primary-90;
262
262
  }
263
263
  }
264
264
 
@@ -348,13 +348,13 @@ $positions: (
348
348
  }
349
349
 
350
350
  &::-webkit-scrollbar-thumb {
351
- background-color: $ac-gray-lightest;
351
+ background-color: $black-80;
352
352
  border-radius: 50px;
353
353
  height: 2px !important;
354
354
  }
355
355
 
356
356
  &::-webkit-scrollbar-thumb:hover {
357
- background-color: $ac-gray-lightest;
357
+ background-color: $black-80;
358
358
  }
359
359
 
360
360
  &:hover::-webkit-scrollbar-corner {
@@ -395,33 +395,33 @@ $positions: (
395
395
  }
396
396
 
397
397
  &::-webkit-scrollbar-thumb {
398
- background-color: $ac-gray-lightest;
398
+ background-color: $black-80;
399
399
  border-radius: 50px;
400
400
  height: 2px !important;
401
401
  }
402
402
 
403
403
  &::-moz-scrollbar-thumb {
404
- background-color: $ac-gray-lightest;
404
+ background-color: $black-80;
405
405
  border-radius: 50px;
406
406
  height: 2px !important;
407
407
  }
408
408
 
409
409
  &::-ms-scrollbar-thumb {
410
- background-color: $ac-gray-lightest;
410
+ background-color: $black-80;
411
411
  border-radius: 50px;
412
412
  height: 2px !important;
413
413
  }
414
414
 
415
415
  &::-webkit-scrollbar-thumb:hover {
416
- background-color: $ac-gray-lightest;
416
+ background-color: $black-80;
417
417
  }
418
418
 
419
419
  &::-moz-scrollbar-thumb:hover {
420
- background-color: $ac-gray-lightest;
420
+ background-color: $black-80;
421
421
  }
422
422
 
423
423
  &::-ms-scrollbar-thumb:hover {
424
- background-color: $ac-gray-lightest;
424
+ background-color: $black-80;
425
425
  }
426
426
 
427
427
  &:hover::-webkit-scrollbar-corner {
@@ -452,13 +452,13 @@ $positions: (
452
452
  }
453
453
 
454
454
  &::-webkit-scrollbar-thumb {
455
- background-color: $ac-gray-lightest;
455
+ background-color: $black-80;
456
456
  border-radius: 50px;
457
457
  width: 2px !important;
458
458
  }
459
459
 
460
460
  &::-webkit-scrollbar-thumb:hover {
461
- background-color: $ac-gray-lightest;
461
+ background-color: $black-80;
462
462
  }
463
463
 
464
464
  &:hover::-webkit-scrollbar-corner {
@@ -487,16 +487,16 @@ $positions: (
487
487
  .is-error {
488
488
  font-size: 12px;
489
489
  line-height: 22px;
490
- color: $ac-red;
490
+ color: $danger;
491
491
  text-align: left;
492
492
  }
493
493
 
494
494
  p.is-error {
495
- color: $ac-red;
495
+ color: $danger;
496
496
  }
497
497
 
498
498
  code {
499
- color: $ac-color-heading;
499
+ color: $primary-5;
500
500
  }
501
501
 
502
502
  .is-dark-theme {
@@ -506,8 +506,8 @@ code {
506
506
  }
507
507
  }
508
508
 
509
- .has-text-danger{
510
- color: $ac-danger !important;
509
+ .has-text-danger {
510
+ color: $danger !important;
511
511
  }
512
512
 
513
513
  .responsive-only {
@@ -534,12 +534,12 @@ button {
534
534
  top: 12px;
535
535
  width: 100%;
536
536
  height: 1px;
537
- background-color: $ac-white-light;
537
+ background-color: $primary-90;
538
538
  }
539
539
 
540
540
  h5 {
541
- color: $ac-color-text;
542
- background-color: $ac-white;
541
+ color: $primary-10;
542
+ background-color: $white-100;
543
543
  z-index: 2;
544
544
  display: inline-block;
545
545
  position: relative;
@@ -564,11 +564,11 @@ button {
564
564
  // docs preview end
565
565
  // background color start
566
566
  .is-bg-white {
567
- background-color: $ac-white !important;
567
+ background-color: $white-100 !important;
568
568
  }
569
569
 
570
570
  .bg-white {
571
- background-color: $ac-white !important;
571
+ background-color: $white-100 !important;
572
572
  }
573
573
 
574
574
  // background color end
@@ -699,8 +699,8 @@ $border_color_4: transparent transparent #585d6e transparent;
699
699
 
700
700
  &.is-button-info {
701
701
  .tooltip-inner {
702
- background: $ac-white;
703
- color: $ac-primary;
702
+ background: $white-100;
703
+ color: $primary;
704
704
  border-radius: 4px;
705
705
  padding: 5px 20px 4px;
706
706
  box-shadow: $ac-shadow-1;
@@ -714,14 +714,14 @@ $border_color_4: transparent transparent #585d6e transparent;
714
714
  border-style: solid;
715
715
  position: absolute;
716
716
  margin: 5px;
717
- border-color: $ac-white;
717
+ border-color: $white-100;
718
718
  }
719
719
  }
720
720
 
721
721
  &.is-errors-tooltip {
722
722
  .tooltip-inner {
723
- background: $ac-white;
724
- color: $ac-danger;
723
+ background: $white-100;
724
+ color: $danger;
725
725
  border-radius: 4px;
726
726
  padding: 5px 20px 4px;
727
727
  box-shadow: $ac-shadow-1;
@@ -741,7 +741,7 @@ $border_color_4: transparent transparent #585d6e transparent;
741
741
  border-style: solid;
742
742
  position: absolute;
743
743
  margin: 5px;
744
- border-color: $ac-white;
744
+ border-color: $white-100;
745
745
  }
746
746
  }
747
747
 
@@ -840,14 +840,14 @@ $border_color_4: transparent transparent #585d6e transparent;
840
840
  .ac-footer-action {
841
841
  margin-top: 10px;
842
842
  padding-top: 10px;
843
- background-color: $ac-white;
843
+ background-color: $white-100;
844
844
  padding: 10px 20px;
845
845
  margin-left: 0;
846
846
  margin-right: 0;
847
847
  margin-left: -20px;
848
848
  border: none;
849
849
  border-radius: 0;
850
- border-top: 1px solid $ac-white-light;
850
+ border-top: 1px solid $primary-90;
851
851
 
852
852
  &.is-sticky {
853
853
  position: sticky;
@@ -856,7 +856,7 @@ $border_color_4: transparent transparent #585d6e transparent;
856
856
  margin-bottom: -4px;
857
857
  z-index: 999;
858
858
  border: none;
859
- border-top: 1px solid $ac-white-light;
859
+ border-top: 1px solid $primary-90;
860
860
  box-shadow: none;
861
861
  }
862
862
  }
@@ -866,8 +866,8 @@ $border_color_4: transparent transparent #585d6e transparent;
866
866
  height: 10px;
867
867
  width: 10px;
868
868
  border-radius: 50%;
869
- background-color: $ac-gray-lightest;
870
- border: 2px solid $ac-white;
869
+ background-color: $black-80;
870
+ border: 2px solid $white-100;
871
871
  display: inline-flex;
872
872
 
873
873
  &.is-success {
@@ -1,16 +1,16 @@
1
1
  // color
2
- $ac-info: $ac-blue;
3
- $ac-success: $ac-primary;
4
- $ac-warning: $ac-yellow;
5
- $ac-danger: $ac-red;
2
+ $info: $blue;
3
+ $success: $primary;
4
+ $warning: $yellow;
5
+ $danger: $danger
6
6
 
7
7
  // Text colors
8
- $ac-color-text: var(--ac-text);
9
- $ac-color-heading: var(--ac-text-heading);
8
+ $primary-10: var(--ac-text);
9
+ $primary-5: var(--ac-text-heading);
10
10
 
11
11
  // Link colors
12
- $ac-link: $ac-blue;
13
- $ac-link-visited: $ac-purple;
12
+ $ac-link: $blue;
13
+ $ac-link-visited: $purple;
14
14
 
15
15
  // Box Shadow
16
16
  $ac-shadow-1: 0 1px 4px rgba(26, 80, 151, 0.16);
@@ -22,4 +22,3 @@ $ac-shadow-sm: 0 1px 4px rgba(26, 80, 151, 0.16);
22
22
  $ac-shadow-xl: 0px 8px 57px rgba(0, 0, 0, 0.16);
23
23
  $ac-shadow-lg: 0 3px 4px 0 rgba(0, 0, 0, 0.18),
24
24
  0 3px 3px -2px rgba(0, 0, 0, 0.16), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
25
-
@@ -1,4 +1,4 @@
1
- %card-hover {
1
+ .has-hover-style{
2
2
  cursor: pointer;
3
3
 
4
4
  &::before {
@@ -1,23 +1,23 @@
1
1
  // Typography
2
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");
3
3
 
4
- $ac-family-heading: "Roboto", sans-serif;
5
- $ac-family-paragraph: "Roboto", sans-serif;
4
+ $font-heading: "Roboto", sans-serif;
5
+ $font-paragraph: "Roboto", sans-serif;
6
6
 
7
7
  // body font size
8
- $font-size-medium: 16px;
9
- $font-size-semi-normal: 15px;
10
- $font-size-normal: 14px;
11
- $font-size-small: 13px;
12
- $font-size-extra-small: 12px;
13
- $font-size-tiny: 11px;
8
+ 16px: 16px;
9
+ 15px: 15px;
10
+ 14px: 14px;
11
+ 13px: 13px;
12
+ 12px: 12px;
13
+ 11px: 11px;
14
14
 
15
15
  // Base Color
16
16
  $ac-orange: #ff8000;
17
- $ac-yellow: #f7ad2a;
18
- $ac-green: #158748;
19
- $ac-blue: #0aafff;
20
- $ac-purple: #791e94;
17
+ $warning: #f7ad2a;
18
+ $success: #158748;
19
+ $info: #0aafff;
20
+ $purple: #791e94;
21
21
  $ac-red: #ff3729;
22
22
 
23
23
  // Products Color
@@ -63,7 +63,7 @@ $swift-primary: #3f51b6;
63
63
  --dark-bg: #21272e;
64
64
  --dark-bg-light: #2e323c;
65
65
 
66
- --ac-blue-light: #eceff4;
66
+ // --ac-blue-light: #eceff4;
67
67
  --ac-bg-light-gray: #f4f6f9;
68
68
  --table-header: #e4e8ef;
69
69
  --ac-label-text: #a6abbd;
@@ -72,53 +72,45 @@ $swift-primary: #3f51b6;
72
72
  --font-hsl-saturation: 0%;
73
73
  --font-hsl-lightness: 11%;
74
74
 
75
- --ac-primary: hsla(
76
- var(--hsl-hue),
77
- var(--hsl-saturation),
78
- var(--hsl-lightness),
79
- 1
80
- );
81
-
82
- --ac-text: hsla(
83
- var(--font-hsl-hue),
84
- calc(var(--font-hsl-saturation) + 10%),
85
- calc(var(--font-hsl-lightness) + 10%),
86
- 1
87
- );
88
- --ac-text-heading: hsla(
89
- var(--font-hsl-hue),
90
- var(--font-hsl-saturation),
91
- var(--font-hsl-lightness),
92
- 1
93
- );
94
- --ac-color-value: hsl(
95
- var(--font-hsl-hue),
96
- var(--font-hsl-saturation),
97
- calc(var(--font-hsl-lightness) + 25%)
98
- );
75
+ --ac-primary: hsla(var(--hsl-hue),
76
+ var(--hsl-saturation),
77
+ var(--hsl-lightness),
78
+ 1);
79
+
80
+ --ac-text: hsla(var(--font-hsl-hue),
81
+ calc(var(--font-hsl-saturation) + 10%),
82
+ calc(var(--font-hsl-lightness) + 10%),
83
+ 1);
84
+ --ac-text-heading: hsla(var(--font-hsl-hue),
85
+ var(--font-hsl-saturation),
86
+ var(--font-hsl-lightness),
87
+ 1);
88
+ --ac-color-value: hsl(var(--font-hsl-hue),
89
+ var(--font-hsl-saturation),
90
+ calc(var(--font-hsl-lightness) + 25%));
99
91
  }
100
92
 
101
93
  $ac-bg: var(--ac-bg);
102
- $ac-primary: var(--ac-primary);
103
- $ac-color-value: var(--ac-color-value);
94
+ $primary: var(--ac-primary);
95
+ $primary-20: var(--ac-color-value);
104
96
 
105
97
  // Colors
106
98
  $ac-black: var(--ac-black);
107
- $ac-color-text-90: var(--ac-color-text-90);
99
+ $primary-10-90: var(--ac-color-text-90);
108
100
  $ac-link-black: var(--ac-link-black);
109
- $ac-gray-darker: var(--ac-gray-darker);
110
- $ac-gray-dark: var(--ac-gray-dark);
101
+ $black-40: var(--ac-gray-darker);
102
+ $black-30: var(--ac-gray-dark);
111
103
  $ac-gray: var(--ac-gray);
112
104
  $ac-gray-light: var(--ac-gray-light);
113
105
  $ac-gray-lighter: var(--ac-gray-lighter);
114
106
  $ac-gray-lightest: var(--ac-gray-lightest);
115
- $ac-white-light: var(--ac-white-light);
116
- $ac-white-lighter: var(--ac-white-lighter);
117
- $ac-white-lightest: var(--ac-white-lightest);
118
- $ac-white: var(--ac-white);
107
+ $white-100-light: var(--ac-white-light);
108
+ $white-100-lighter: var(--ac-white-lighter);
109
+ $white-100-lightest: var(--ac-white-lightest);
110
+ $white-100: var(--ac-white);
119
111
  $ac-full-white: var(--ac-full-white);
120
112
 
121
- $ac-blue-light: var(--ac-blue-light);
113
+ // $info-light: var(--ac-blue-light);
122
114
  $ac-bg-light-gray: var(--ac-bg-light-gray);
123
115
  $table-header: var(--table-header);
124
116
  $ac-label-text: var(--ac-label-text);
@@ -185,10 +177,12 @@ $dark-bg-light: var(--dark-bg-light);
185
177
  .mx-auto {
186
178
  margin: 0 auto;
187
179
  }
188
- .mr-auto{
180
+
181
+ .mr-auto {
189
182
  margin-right: auto;
190
183
  }
191
- .ml-auto{
184
+
185
+ .ml-auto {
192
186
  margin-left: auto;
193
187
  }
194
188
 
@@ -203,6 +197,14 @@ $dark-bg-light: var(--dark-bg-light);
203
197
  }
204
198
  }
205
199
 
200
+ .width-auto {
201
+ width: auto !important;
202
+ }
203
+
204
+ .height-auto {
205
+ height: auto !important;
206
+ }
207
+
206
208
  /* Deafult z-index and font-weight*/
207
209
  @for $i from 0 through 10 {
208
210
  .z-index-#{$i} {
@@ -212,4 +214,4 @@ $dark-bg-light: var(--dark-bg-light);
212
214
  .font-weight-#{$i*100} {
213
215
  font-weight: #{$i * 100} !important;
214
216
  }
215
- }
217
+ }
@@ -1,7 +1,7 @@
1
1
  // ac-buttons
2
2
  @mixin ac-button($colorName) {
3
3
  background-color: $colorName;
4
- color: $ac-white;
4
+ color: $white-100;
5
5
  border: none;
6
6
 
7
7
  &:hover {
@@ -62,7 +62,7 @@
62
62
 
63
63
  &:hover {
64
64
  background-color: $colorName;
65
- color: $ac-white;
65
+ color: $white-100;
66
66
  }
67
67
  }
68
68
 
@@ -82,7 +82,7 @@
82
82
 
83
83
  &:hover {
84
84
  background-color: $colorName;
85
- color: $ac-white;
85
+ color: $white-100;
86
86
  box-shadow: none;
87
87
 
88
88
  img {
@@ -92,7 +92,7 @@
92
92
  }
93
93
 
94
94
  &.is-inverted {
95
- background-color: $ac-white;
95
+ background-color: $white-100;
96
96
  color: $colorName;
97
97
 
98
98
  &:hover {
@@ -110,11 +110,11 @@
110
110
 
111
111
  &.is-outlined {
112
112
  background-color: transparent;
113
- border: 1px solid $ac-white;
114
- color: $ac-white;
113
+ border: 1px solid $white-100;
114
+ color: $white-100;
115
115
 
116
116
  &:hover {
117
- background-color: $ac-white;
117
+ background-color: $white-100;
118
118
  color: $colorName;
119
119
  }
120
120
  }
@@ -128,7 +128,7 @@
128
128
 
129
129
  &:hover {
130
130
  background-color: $colorName;
131
- color: $ac-white;
131
+ color: $white-100;
132
132
 
133
133
  @if (type_of($colorName) == "color") {
134
134
  box-shadow: 0px 6px 12px scale-color($color: $colorName, $lightness: 70%);
@@ -168,14 +168,14 @@
168
168
  &:hover {
169
169
  background-color: $colorName;
170
170
  box-shadow: none;
171
- color: $ac-white;
171
+ color: $white-100;
172
172
 
173
173
  .ac-play {
174
- border: 1px solid $ac-white;
174
+ border: 1px solid $white-100;
175
175
  }
176
176
 
177
177
  span {
178
- color: $ac-white;
178
+ color: $white-100;
179
179
  }
180
180
  }
181
181
  }
@@ -1,10 +1,10 @@
1
1
  html,
2
2
  body {
3
3
  background-color: $ac-bg;
4
- font-family: $ac-family-paragraph;
4
+ font-family: $font-paragraph;
5
5
  font-weight: 400;
6
6
  font-size: 13px;
7
- color: $ac-color-text;
7
+ color: $primary-10;
8
8
  }
9
9
  p {
10
10
  font-size: 13px;
@@ -15,9 +15,9 @@ h3,
15
15
  h4,
16
16
  h5,
17
17
  h6 {
18
- font-family: $ac-family-heading;
18
+ font-family: $font-heading;
19
19
  font-weight: 500;
20
- color: $ac-color-heading;
20
+ color: $primary-5;
21
21
  }
22
22
 
23
23
  h1 {
@@ -46,43 +46,43 @@ h6 {
46
46
 
47
47
  h6 {
48
48
  &.is-tiny {
49
- font-size: $font-size-tiny;
50
- line-height: $font-size-tiny + 10;
49
+ font-size: 11px;
50
+ line-height: 11px + 10;
51
51
  }
52
52
 
53
53
  &.is-extra-small {
54
- font-size: $font-size-extra-small;
55
- line-height: $font-size-extra-small + 10;
54
+ font-size: 12px;
55
+ line-height: 12px + 10;
56
56
  }
57
57
 
58
58
  &.is-small {
59
- font-size: $font-size-small;
60
- line-height: $font-size-small + 10;
59
+ font-size: 13px;
60
+ line-height: 13px + 10;
61
61
  }
62
62
 
63
63
  &.is-normal {
64
- font-size: $font-size-normal;
65
- line-height: $font-size-normal + 10;
64
+ font-size: 14px;
65
+ line-height: 14px + 10;
66
66
  }
67
67
 
68
68
  &.is-semi-normal {
69
- font-size: $font-size-semi-normal;
70
- line-height: $font-size-semi-normal + 10;
69
+ font-size: 15px;
70
+ line-height: 15px + 10;
71
71
  }
72
72
 
73
73
  &.is-medium {
74
- font-size: $font-size-medium;
75
- line-height: $font-size-medium + 10;
74
+ font-size: 16px;
75
+ line-height: 16px + 10;
76
76
  }
77
77
  }
78
78
 
79
79
  a {
80
- font-family: $ac-family-paragraph;
81
- color: $ac-primary;
80
+ font-family: $font-paragraph;
81
+ color: $primary;
82
82
  }
83
83
 
84
84
  hr {
85
- background-color: $ac-bg-light-gray;
85
+ background-color: $black-60;
86
86
  border: none;
87
87
  display: block;
88
88
  height: 1px;
@@ -90,7 +90,7 @@ hr {
90
90
  }
91
91
 
92
92
  strong {
93
- color: $ac-color-value;
93
+ color: $primary-20;
94
94
  }
95
95
 
96
96
  .is-font-medium {
@@ -100,6 +100,6 @@ strong {
100
100
  .is-font-bold {
101
101
  font-weight: 700;
102
102
  }
103
- .material-icons{
103
+ .material-icons {
104
104
  font-size: 1em;
105
- }
105
+ }
@@ -8,7 +8,7 @@ $dark-bg-light: var(--dark-bg-light);
8
8
  --ac-black: var(--ac-white-text);
9
9
  --ac-text-heading: var(--ac-white-text);
10
10
  --ac-text: #98a6b4;
11
- --ac-blue-light: #2e323c;
11
+ // --ac-blue-light: #2e323c;
12
12
  --ac-gray-darker: #a6a6a6;
13
13
  --ac-gray-light: #424242;
14
14
  --ac-gray-lightest: #777777;