@appscode/design-system 1.1.0-alpha.8 → 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 +9 -5
  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 -114
  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
@@ -37,7 +37,7 @@
37
37
  li {
38
38
  a {
39
39
  display: block;
40
- color: $ac-color-text !important;
40
+ color: $primary-10 !important;
41
41
  padding: 10px 20px !important;
42
42
  font-size: 13px !important;
43
43
  transition: 0.2s;
@@ -50,7 +50,7 @@
50
50
  .media-content {
51
51
  .content {
52
52
  p {
53
- color: $ac-white;
53
+ color: $white-100;
54
54
  }
55
55
  }
56
56
  }
@@ -78,7 +78,7 @@
78
78
  strong {
79
79
  font-weight: 600;
80
80
  font-size: 17px;
81
- font-family: $ac-family-heading;
81
+ font-family: $font-heading;
82
82
  }
83
83
 
84
84
  span {
@@ -94,7 +94,7 @@
94
94
 
95
95
  &:hover {
96
96
  > a {
97
- background-color: $ac-white;
97
+ background-color: $white-100;
98
98
  }
99
99
  }
100
100
 
@@ -1,124 +1,118 @@
1
- .card-details {
2
- border: 1px solid #d2e7f9;
3
- padding: 30px 20px;
4
- width: calc(33.3% - 8px);
5
- min-width: 400px;
6
- max-width: 525px;
7
- // border-radius: 4px;
8
- transition: 0.3s ease-in-out;
9
- position: relative;
10
- z-index: 1;
11
- @extend %card-hover;
1
+ // .card-details {
2
+ // border: 1px solid #d2e7f9;
3
+ // padding: 30px 20px;
4
+ // width: calc(33.3% - 8px);
5
+ // min-width: 400px;
6
+ // max-width: 525px;
7
+ // // border-radius: 4px;
8
+ // transition: 0.3s ease-in-out;
9
+ // position: relative;
10
+ // z-index: 1;
12
11
 
13
- // &:hover {
14
- // border: 1px solid #1971bd;
15
- // }
12
+ // .c-header {
13
+ // display: flex;
14
+ // margin-bottom: 20px;
16
15
 
17
- .c-header {
18
- display: flex;
19
- margin-bottom: 20px;
16
+ // .c-logo {
17
+ // width: 54px;
18
+ // height: 54px;
19
+ // background: #e8f3fc;
20
+ // border-radius: 50%;
21
+ // display: flex;
22
+ // align-items: center;
23
+ // justify-content: center;
24
+ // margin-right: 24px;
20
25
 
21
- .c-logo {
22
- width: 54px;
23
- height: 54px;
24
- background: #e8f3fc;
25
- border-radius: 50%;
26
- display: flex;
27
- align-items: center;
28
- justify-content: center;
29
- margin-right: 24px;
26
+ // img {
27
+ // height: 24px;
28
+ // }
29
+ // }
30
30
 
31
- img {
32
- height: 24px;
33
- }
34
- }
31
+ // .c-content {
32
+ // width: calc(100% - 78px);
33
+ // h4 {
34
+ // font-size: 18px;
35
+ // line-height: 130%;
36
+ // color: #030d17;
37
+ // }
38
+ // .icon {
39
+ // color: #0c365a;
40
+ // cursor: pointer;
41
+ // position: relative;
42
+ // z-index: 1;
43
+ // &:after {
44
+ // position: absolute;
45
+ // content: "";
46
+ // border-radius: 50%;
47
+ // width: 32px;
48
+ // height: 32px;
49
+ // background: #e8f3fc;
50
+ // opacity: 0;
51
+ // visibility: hidden;
52
+ // transition: 0.3s ease-in-out;
53
+ // z-index: -1;
54
+ // }
55
+ // &:hover {
56
+ // &:after {
57
+ // opacity: 1;
58
+ // visibility: visible;
59
+ // }
60
+ // }
61
+ // }
62
+ // .tags {
63
+ // margin-top: 12px;
64
+ // }
65
+ // }
66
+ // }
35
67
 
36
- .c-content {
37
- width: calc(100% - 78px);
38
- h4 {
39
- font-size: 18px;
40
- line-height: 130%;
41
- color: #030d17;
42
- }
43
- .icon {
44
- color: #0c365a;
45
- cursor: pointer;
46
- position: relative;
47
- z-index: 1;
48
- &:after {
49
- position: absolute;
50
- content: "";
51
- border-radius: 50%;
52
- width: 32px;
53
- height: 32px;
54
- background: #e8f3fc;
55
- opacity: 0;
56
- visibility: hidden;
57
- transition: 0.3s ease-in-out;
58
- z-index: -1;
59
- }
60
- &:hover {
61
- &:after {
62
- opacity: 1;
63
- visibility: visible;
64
- }
65
- }
66
- }
67
- .tags {
68
- margin-top: 12px;
69
- }
70
- }
71
- }
68
+ // .c-body {
69
+ // display: flex;
70
+ // flex-wrap: wrap;
71
+ // gap: 20px;
72
+ // justify-content: space-between;
73
+ // p {
74
+ // width: calc(25% - 16px);
72
75
 
73
- .c-body {
74
- display: flex;
75
- flex-wrap: wrap;
76
- gap: 20px;
77
- justify-content: space-between;
78
- p {
79
- width: calc(25% - 16px);
76
+ // span {
77
+ // font-size: 11px;
78
+ // color: #666666;
79
+ // display: block;
80
+ // }
81
+ // strong {
82
+ // color: #061b2d;
83
+ // font-size: 13px;
84
+ // font-weight: 400;
85
+ // }
86
+ // }
87
+ // }
88
+ // }
80
89
 
81
- span {
82
- font-size: 11px;
83
- color: #666666;
84
- display: block;
85
- }
86
- strong {
87
- color: #061b2d;
88
- font-size: 13px;
89
- font-weight: 400;
90
- }
91
- }
92
- }
93
- }
90
+ // // ac card
91
+ // .card-basic {
92
+ // padding: 20px;
93
+ // width: calc(25% - 8px);
94
+ // max-width: 390px;
95
+ // min-width: 290px;
96
+ // position: relative;
94
97
 
95
- // ac card
96
- .card-basic {
97
- padding: 20px;
98
- width: calc(25% - 8px);
99
- max-width: 390px;
100
- min-width: 290px;
101
- position: relative;
102
- @extend %card-hover;
98
+ // .required {
99
+ // position: absolute;
100
+ // left: 20px;
101
+ // top: -9px;
102
+ // }
103
+ // .c-header {
104
+ // .c-title {
103
105
 
104
- .required {
105
- position: absolute;
106
- left: 20px;
107
- top: -9px;
108
- }
109
- .c-header {
110
- .c-title {
106
+ // h4 {
107
+ // font-size: 18px;
108
+ // color: #061b2d;
109
+ // }
110
+ // }
111
+ // }
111
112
 
112
- h4 {
113
- font-size: 18px;
114
- color: #061b2d;
115
- }
116
- }
117
- }
118
-
119
- .c-body {
120
- p {
121
- color: #0C365A;
122
- }
123
- }
124
- }
113
+ // .c-body {
114
+ // p {
115
+ // color: #0C365A;
116
+ // }
117
+ // }
118
+ // }
@@ -1,11 +1,11 @@
1
1
  /* breadcumb style */
2
2
  .ac-breadcrumb {
3
3
  padding: 13px 20px;
4
- border-bottom: 1px solid $ac-white-light;
4
+ border-bottom: 1px solid $primary-90;
5
5
  position: sticky;
6
6
  top: 50px;
7
7
  height: 50px;
8
- background-color: $ac-white;
8
+ background-color: $white-100;
9
9
  z-index: 998;
10
10
  display: flex;
11
11
  align-items: center;
@@ -13,17 +13,17 @@
13
13
 
14
14
  .breadcrumb {
15
15
  a {
16
- color: $ac-color-value;
16
+ color: $primary-20;
17
17
  font-size: 13px;
18
18
  padding: 0px 3px;
19
19
  &:hover {
20
- color: $ac-color-text;
20
+ color: $primary-10;
21
21
  }
22
22
  }
23
23
 
24
24
  li.is-active {
25
25
  a {
26
- color: $ac-color-text;
26
+ color: $primary-10;
27
27
  font-weight: 500;
28
28
  }
29
29
  }
@@ -3,12 +3,12 @@
3
3
 
4
4
  // ac-button
5
5
  &.ac-button {
6
- border-color: $ac-primary;
6
+ border-color: $primary;
7
7
  border-radius: 4px;
8
8
  font-size: 14px;
9
- font-family: $ac-family-paragraph;
9
+ font-family: $font-paragraph;
10
10
  letter-spacing: 0.2px;
11
- color: $ac-primary;
11
+ color: $primary;
12
12
  font-weight: 500;
13
13
  height: 36px;
14
14
  padding-left: 25px;
@@ -41,7 +41,7 @@
41
41
  letter-spacing: 1px;
42
42
 
43
43
  &.is-primary {
44
- color: $ac-primary;
44
+ color: $primary;
45
45
  background-color: transparent;
46
46
 
47
47
  &:hover {
@@ -60,8 +60,8 @@
60
60
 
61
61
  .ac-icon {
62
62
  margin-left: 25px;
63
- background-color: $ac-white;
64
- color: $ac-primary;
63
+ background-color: $white-100;
64
+ color: $primary;
65
65
  padding: 2px 6px;
66
66
  border-radius: 4px;
67
67
  width: 20px;
@@ -137,12 +137,12 @@
137
137
  padding: 0;
138
138
  &:hover {
139
139
  svg {
140
- color: $ac-white;
140
+ color: $white-100;
141
141
  }
142
142
  }
143
143
  &.is-gray {
144
- background-color: $ac-white-light;
145
- color: $ac-gray-lightest;
144
+ background-color: $primary-90;
145
+ color: $black-80;
146
146
  border-color: transparent;
147
147
 
148
148
  img {
@@ -151,30 +151,30 @@
151
151
 
152
152
  i.fa {
153
153
  font-size: 18px;
154
- color: $ac-gray-lightest;
154
+ color: $black-80;
155
155
  }
156
156
 
157
157
  &:hover {
158
- background-color: $ac-gray-lightest;
158
+ background-color: $black-80;
159
159
  }
160
160
  }
161
161
 
162
162
  &.is-outlined-gray {
163
- border: 1px solid $ac-white-light;
163
+ border: 1px solid $primary-90;
164
164
  font-size: 15px;
165
165
  }
166
166
 
167
167
  &.is-transparent {
168
168
  background-color: transparent;
169
- color: $ac-gray-darker;
169
+ color: $black-40;
170
170
 
171
171
  &:hover {
172
- background-color: $ac-white-lighter;
172
+ background-color: $white-100-lighter;
173
173
  color: $ac-black;
174
174
  }
175
175
 
176
176
  &:focus {
177
- background-color: $ac-white-lighter;
177
+ background-color: $white-100-lighter;
178
178
  color: $ac-black;
179
179
  }
180
180
  }
@@ -223,25 +223,25 @@
223
223
  font-size: 14px;
224
224
  font-weight: 500;
225
225
  background-color: transparent;
226
- color: $ac-color-text;
226
+ color: $primary-10;
227
227
 
228
228
  &.is-primary {
229
229
  background-color: transparent;
230
- color: $ac-primary;
230
+ color: $primary;
231
231
 
232
232
  &:hover {
233
233
  background-color: transparent;
234
- color: $ac-primary;
234
+ color: $primary;
235
235
  }
236
236
  }
237
237
 
238
238
  &.is-danger {
239
239
  background-color: transparent;
240
- color: $ac-danger;
240
+ color: $danger;
241
241
 
242
242
  &:hover {
243
243
  background-color: transparent;
244
- color: $ac-danger;
244
+ color: $danger;
245
245
  }
246
246
  }
247
247
 
@@ -257,12 +257,12 @@
257
257
  }
258
258
 
259
259
  &.is-white {
260
- background-color: $ac-white;
260
+ background-color: $white-100;
261
261
  border: none;
262
262
  }
263
263
 
264
264
  &.is-light {
265
- background-color: $ac-white-light;
265
+ background-color: $primary-90;
266
266
  border: none;
267
267
 
268
268
  &:hover {
@@ -271,19 +271,19 @@
271
271
  }
272
272
 
273
273
  &.is-dark {
274
- background-color: $ac-gray-dark;
274
+ background-color: $black-30;
275
275
  border: none;
276
- color: $ac-white;
276
+ color: $white-100;
277
277
 
278
278
  &:hover {
279
- background-color: $ac-color-value;
279
+ background-color: $primary-20;
280
280
  }
281
281
  }
282
282
 
283
283
  &.is-black {
284
- background-color: $ac-color-text;
284
+ background-color: $primary-10;
285
285
  border: none;
286
- color: $ac-white;
286
+ color: $white-100;
287
287
 
288
288
  &:hover {
289
289
  background-color: hsla(0, 0, calc(var(--hsl-lightness) - 9%), 1);
@@ -291,7 +291,7 @@
291
291
  }
292
292
 
293
293
  &.is-text {
294
- background-color: $ac-white;
294
+ background-color: $white-100;
295
295
  border: none;
296
296
 
297
297
  &:hover {
@@ -319,37 +319,37 @@
319
319
 
320
320
  &.is-static {
321
321
  border: none;
322
- background-color: $ac-white-light;
323
- color: $ac-white;
322
+ background-color: $primary-90;
323
+ color: $white-100;
324
324
  }
325
325
 
326
326
  // ac-button from mixin
327
327
  &.is-primary {
328
- @include ac-button($ac-primary);
328
+ @include ac-button($primary);
329
329
  }
330
330
 
331
331
  &.is-link {
332
- @include ac-button($ac-blue);
332
+ @include ac-button($info);
333
333
  }
334
334
 
335
335
  &.is-info {
336
- @include ac-button($ac-info);
336
+ @include ac-button($info);
337
337
  }
338
338
 
339
339
  &.is-success {
340
- @include ac-button($ac-success);
340
+ @include ac-button($success);
341
341
  }
342
342
 
343
343
  &.is-warning {
344
- @include ac-button($ac-warning);
344
+ @include ac-button($warning);
345
345
  }
346
346
 
347
347
  &.is-danger {
348
- @include ac-button($ac-danger);
348
+ @include ac-button($danger);
349
349
  }
350
350
 
351
351
  &.is-green {
352
- @include ac-button($ac-green);
352
+ @include ac-button($success);
353
353
  }
354
354
  }
355
355
 
@@ -359,8 +359,8 @@
359
359
  height: 60px;
360
360
  background-color: transparent;
361
361
  transition: 0.3s ease-in-out;
362
- border: 2px solid $ac-gray-dark;
363
- color: $ac-gray-dark;
362
+ border: 2px solid $black-30;
363
+ color: $black-30;
364
364
 
365
365
  i.fa {
366
366
  padding-left: 5px;
@@ -368,27 +368,27 @@
368
368
 
369
369
  // ac-button from mixin
370
370
  &.is-primary {
371
- @include ac-play-button($ac-primary);
371
+ @include ac-play-button($primary);
372
372
  }
373
373
 
374
374
  &.is-link {
375
- @include ac-play-button($ac-blue);
375
+ @include ac-play-button($info);
376
376
  }
377
377
 
378
378
  &.is-info {
379
- @include ac-play-button($ac-info);
379
+ @include ac-play-button($info);
380
380
  }
381
381
 
382
382
  &.is-success {
383
- @include ac-play-button($ac-success);
383
+ @include ac-play-button($success);
384
384
  }
385
385
 
386
386
  &.is-warning {
387
- @include ac-play-button($ac-warning);
387
+ @include ac-play-button($warning);
388
388
  }
389
389
 
390
390
  &.is-danger {
391
- @include ac-play-button($ac-danger);
391
+ @include ac-play-button($danger);
392
392
  }
393
393
 
394
394
  &.is-large {
@@ -396,7 +396,7 @@
396
396
  display: inline-block;
397
397
  padding: 0 25px 0 4px;
398
398
  height: 53px;
399
- border: 1px solid $ac-primary;
399
+ border: 1px solid $primary;
400
400
 
401
401
  .ac-play {
402
402
  width: 44px;
@@ -404,7 +404,7 @@
404
404
  font-size: 16px;
405
405
  line-height: 44px;
406
406
  display: inline-block;
407
- border: 1px solid $ac-primary;
407
+ border: 1px solid $primary;
408
408
  border-radius: 50%;
409
409
  margin-right: 10px;
410
410
  }
@@ -412,7 +412,7 @@
412
412
  span {
413
413
  font-size: 16px;
414
414
  font-weight: 600;
415
- color: $ac-primary;
415
+ color: $primary;
416
416
  }
417
417
  }
418
418
  }
@@ -427,10 +427,10 @@
427
427
  width: 52px;
428
428
  margin-bottom: 0;
429
429
  margin-right: 10px;
430
- background-color: $ac-primary;
430
+ background-color: $primary;
431
431
 
432
432
  i.fa {
433
- color: $ac-white;
433
+ color: $white-100;
434
434
  }
435
435
  }
436
436
 
@@ -438,7 +438,7 @@
438
438
  font-size: 16px;
439
439
  font-weight: 600;
440
440
  display: block;
441
- color: $ac-color-text;
441
+ color: $primary-10;
442
442
 
443
443
  span {
444
444
  font-size: 12px;
@@ -449,7 +449,7 @@
449
449
 
450
450
  &:hover {
451
451
  p {
452
- color: $ac-primary;
452
+ color: $primary;
453
453
  }
454
454
  }
455
455
  }
@@ -477,7 +477,7 @@
477
477
  padding: 10px;
478
478
  font-size: 15px;
479
479
  font-weight: 500;
480
- color: $ac-color-value;
480
+ color: $primary-20;
481
481
  background-color: transparent;
482
482
  width: 100%;
483
483
  -moz-appearance: textfield;
@@ -491,7 +491,7 @@
491
491
 
492
492
  &:focus {
493
493
  outline: none;
494
- background-color: $ac-white;
494
+ background-color: $white-100;
495
495
  }
496
496
  }
497
497
  }
@@ -503,7 +503,7 @@
503
503
 
504
504
  .ac-counter-arrow-wrapper {
505
505
  height: 100%;
506
- color: $ac-color-text;
506
+ color: $primary-10;
507
507
  border-left: 1px solid $ac-label-text;
508
508
 
509
509
  .ac-counter-arrow {
@@ -514,7 +514,7 @@
514
514
  height: 23px;
515
515
 
516
516
  &:hover {
517
- color: $ac-color-text;
517
+ color: $primary-10;
518
518
  }
519
519
 
520
520
  &:first-child {
@@ -545,7 +545,7 @@
545
545
  }
546
546
 
547
547
  .up-down-button {
548
- background-color: $ac-white-light;
548
+ background-color: $primary-90;
549
549
  border: none;
550
550
  display: block;
551
551
  cursor: pointer;
@@ -554,8 +554,8 @@
554
554
  color: #a4a4a4;
555
555
 
556
556
  &.is-info {
557
- background-color: $ac-primary;
558
- color: $ac-white;
557
+ background-color: $primary;
558
+ color: $white-100;
559
559
  transition: 0.3s;
560
560
  }
561
561
 
@@ -577,7 +577,7 @@
577
577
  width: 5px;
578
578
  height: 5px;
579
579
  border-radius: 50%;
580
- background-color: $ac-color-value;
580
+ background-color: $primary-20;
581
581
  margin-bottom: 3px;
582
582
 
583
583
  &:last-child {
@@ -590,15 +590,15 @@
590
590
  // dark theme start
591
591
  .is-dark-theme {
592
592
  .button.ac-button.is-primary.is-light {
593
- background-color: $ac-primary;
594
- color: $ac-white;
593
+ background-color: $primary;
594
+ color: $white-100;
595
595
  &:hover {
596
596
  opacity: 0.8;
597
597
  }
598
598
  }
599
599
  .button.ac-button.is-danger.is-light {
600
- background-color: $ac-danger;
601
- color: $ac-white;
600
+ background-color: $danger;
601
+ color: $white-100;
602
602
  &:hover {
603
603
  opacity: 0.8;
604
604
  }