@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
@@ -16,18 +16,18 @@
16
16
  top: 0;
17
17
  width: 4px;
18
18
  height: 100%;
19
- background-color: $ac-primary;
19
+ background-color: $primary;
20
20
  }
21
21
  }
22
22
  }
23
23
  }
24
24
 
25
25
  .single-accordion-item {
26
- background-color: $ac-white;
26
+ background-color: $white-100;
27
27
  padding: 15px 20px;
28
28
  margin-bottom: 15px;
29
29
  border-radius: 4px;
30
- border: 1px solid $ac-white-light;
30
+ border: 1px solid $primary-90;
31
31
 
32
32
  &.open {
33
33
  .accordion-heading {
@@ -56,7 +56,7 @@
56
56
  .icon {
57
57
  width: 20px;
58
58
  height: 20px;
59
- border: 1px solid $ac-white-light;
59
+ border: 1px solid $primary-90;
60
60
  line-height: 20px;
61
61
  display: flex;
62
62
  justify-content: center;
@@ -73,8 +73,8 @@
73
73
  overflow: hidden;
74
74
 
75
75
  p {
76
- font-size: $font-size-small;
77
- color: $ac-color-text;
76
+ font-size: 13px;
77
+ color: $primary-10;
78
78
  line-height: 1.6;
79
79
  }
80
80
  }
@@ -1,14 +1,14 @@
1
1
  // for alert message
2
2
  .ac-notification {
3
3
  background-color: #dee7f5;
4
- font-size: $font-size-small;
5
- color: $ac-primary;
4
+ font-size: 13px;
5
+ color: $primary;
6
6
  min-height: 36px;
7
7
  display: flex;
8
8
  align-items: center;
9
9
  padding: 8px 16px;
10
10
  overflow: hidden;
11
- border: 1px solid $ac-primary;
11
+ border: 1px solid $primary;
12
12
  border-radius: 4px;
13
13
  justify-content: flex-start;
14
14
  position: relative;
@@ -16,7 +16,7 @@
16
16
  min-width: 280px;
17
17
 
18
18
  p {
19
- color: $ac-primary;
19
+ color: $primary;
20
20
 
21
21
  .close-icon {
22
22
  padding-right: 10px;
@@ -25,7 +25,7 @@
25
25
 
26
26
  a {
27
27
  text-decoration: underline;
28
- color: $ac-primary;
28
+ color: $primary;
29
29
 
30
30
  &:hover {
31
31
  color: hsla(
@@ -46,7 +46,7 @@
46
46
  box-shadow: none;
47
47
  border: none;
48
48
  font-size: 14px;
49
- color: $ac-danger;
49
+ color: $danger;
50
50
  width: 40px;
51
51
  height: 100%;
52
52
  display: flex;
@@ -55,15 +55,14 @@
55
55
  }
56
56
  }
57
57
 
58
-
59
58
  .toast {
60
59
  box-shadow: $ac-shadow-sm;
61
- border: 1px solid $ac-white-light;
60
+ border: 1px solid $primary-90;
62
61
  width: 350px;
63
62
 
64
63
  .toast-header {
65
64
  padding: 8px 12px;
66
- border-bottom: 1px solid $ac-white-light;
65
+ border-bottom: 1px solid $primary-90;
67
66
 
68
67
  .button {
69
68
  &:hover {
@@ -80,7 +79,7 @@
80
79
  // mixin for .ac-notification
81
80
  @mixin acNotification($colorName) {
82
81
  background-color: scale-color($color: $colorName, $lightness: 80%);
83
- color: $ac-white;
82
+ color: $white-100;
84
83
  border-color: $colorName;
85
84
 
86
85
  p {
@@ -103,17 +102,17 @@
103
102
  var(--hsl-lightness),
104
103
  0.2
105
104
  );
106
- color: $ac-white;
107
- border-color: $ac-primary;
105
+ color: $white-100;
106
+ border-color: $primary;
108
107
 
109
108
  p {
110
- color: $ac-primary;
109
+ color: $primary;
111
110
 
112
111
  a {
113
- color: $ac-primary;
112
+ color: $primary;
114
113
 
115
114
  &:hover {
116
- color: $ac-primary;
115
+ color: $primary;
117
116
  opacity: 0.8;
118
117
  }
119
118
  }
@@ -127,22 +126,22 @@
127
126
 
128
127
  // is.info
129
128
  .ac-notification.is-info {
130
- @include acNotification($ac-info);
129
+ @include acNotification($info);
131
130
  }
132
131
 
133
132
  // is.success
134
133
  .ac-notification.is-success {
135
- @include acNotification($ac-green);
134
+ @include acNotification($success);
136
135
  }
137
136
 
138
137
  // is-error
139
138
  .ac-notification.is-error {
140
- @include acNotification($ac-danger);
139
+ @include acNotification($danger);
141
140
  }
142
141
 
143
142
  // is-warning
144
143
  .ac-notification.is-warning {
145
- @include acNotification($ac-warning);
144
+ @include acNotification($warning);
146
145
  }
147
146
 
148
147
  /*====================================
@@ -161,7 +160,7 @@ AC Toast
161
160
  margin-bottom: 10px;
162
161
 
163
162
  * {
164
- color: $ac-white;
163
+ color: $white-100;
165
164
  }
166
165
 
167
166
  p {
@@ -179,7 +178,7 @@ AC Toast
179
178
  padding: 0 15px;
180
179
 
181
180
  &:hover {
182
- color: $ac-white-lighter;
181
+ color: $white-100-lighter;
183
182
  }
184
183
  }
185
184
 
@@ -187,7 +186,7 @@ AC Toast
187
186
  border-radius: 0px;
188
187
  background-color: transparent;
189
188
  border: none;
190
- color: $ac-white;
189
+ color: $white-100;
191
190
  position: absolute;
192
191
  right: 0;
193
192
  top: 0;
@@ -203,33 +202,33 @@ AC Toast
203
202
  // mixin for .ac-toast
204
203
  @mixin acToast($colorName) {
205
204
  background-color: $colorName;
206
- color: $ac-white;
205
+ color: $white-100;
207
206
  border-color: $colorName;
208
207
  }
209
208
 
210
209
  // is-primary
211
210
  .ac-toast.is-primary {
212
- @include acToast($ac-primary);
211
+ @include acToast($primary);
213
212
  }
214
213
 
215
214
  // is-info
216
215
  .ac-toast.is-info {
217
- @include acToast($ac-info);
216
+ @include acToast($info);
218
217
  }
219
218
 
220
219
  // is.success
221
220
  .ac-toast.is-success {
222
- @include acToast($ac-green);
221
+ @include acToast($success);
223
222
  }
224
223
 
225
224
  // is-error
226
225
  .ac-toast.is-error {
227
- @include acToast($ac-danger);
226
+ @include acToast($danger);
228
227
  }
229
228
 
230
229
  // is-warning
231
230
  .ac-toast.is-warning {
232
- @include acToast($ac-warning);
231
+ @include acToast($warning);
233
232
  }
234
233
 
235
234
  // dark theme start
@@ -5,19 +5,19 @@
5
5
  height: 45px !important;
6
6
  padding: 15px !important;
7
7
  font-weight: normal !important;
8
- font-size: $font-size-small !important;
8
+ font-size: 13px !important;
9
9
  }
10
10
 
11
11
  .vc-highlight {
12
12
  width: 45px !important;
13
- background-color: $ac-primary !important;
13
+ background-color: $primary !important;
14
14
  height: 45px !important;
15
15
  }
16
16
 
17
17
  .vc-weeks {
18
18
  padding: 25px 30px !important;
19
19
  font-weight: normal !important;
20
- font-size: $font-size-small !important;
20
+ font-size: 13px !important;
21
21
  }
22
22
 
23
23
  .vc-weekday {
@@ -27,7 +27,7 @@
27
27
  margin-right: -30px !important;
28
28
  margin-bottom: 25px !important;
29
29
  font-weight: 500;
30
- font-size: $font-size-small !important;
30
+ font-size: 13px !important;
31
31
  }
32
32
 
33
33
  .vc-bg-blue-200 {
@@ -8,7 +8,7 @@
8
8
  display: block;
9
9
  padding: 20px;
10
10
  border-radius: 4px;
11
- border: 1px solid $ac-white-light;
11
+ border: 1px solid $primary-90;
12
12
  overflow: hidden;
13
13
  background-color: hsla(
14
14
  var(--hsl-hue),
@@ -19,7 +19,7 @@
19
19
  transition: 0.3s ease-in-out;
20
20
 
21
21
  &.is-selected {
22
- border: 1px solid $ac-primary !important;
22
+ border: 1px solid $primary !important;
23
23
  }
24
24
 
25
25
  &.style-two {
@@ -41,7 +41,7 @@
41
41
  position: absolute;
42
42
  content: "";
43
43
  background-color: #27ae60;
44
- border: 2px solid $ac-white;
44
+ border: 2px solid $white-100;
45
45
  box-sizing: border-box;
46
46
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
47
47
  width: 10px;
@@ -55,7 +55,7 @@
55
55
  .ac-card-title {
56
56
  h4 {
57
57
  font-size: 12px;
58
- font-family: $ac-family-paragraph;
58
+ font-family: $font-paragraph;
59
59
  line-height: 140%;
60
60
  }
61
61
  }
@@ -64,7 +64,7 @@
64
64
  .ac-card-body {
65
65
  p {
66
66
  font-size: 12px;
67
- color: $ac-color-text;
67
+ color: $primary-10;
68
68
  font-weight: 400;
69
69
 
70
70
  &:not(:last-child) {
@@ -75,7 +75,7 @@
75
75
  }
76
76
 
77
77
  &.style-three {
78
- background-color: $ac-blue-light;
78
+ background-color: $info-light;
79
79
  width: 190px;
80
80
  margin-bottom: 20px;
81
81
  margin-right: 20px;
@@ -97,18 +97,18 @@
97
97
 
98
98
  .ac-card-name {
99
99
  p {
100
- font-size: $font-size-small;
101
- color: $ac-color-text;
100
+ font-size: 13px;
101
+ color: $primary-10;
102
102
  line-height: 1;
103
103
 
104
104
  &.free {
105
- color: $ac-primary;
105
+ color: $primary;
106
106
  }
107
107
  }
108
108
  }
109
109
 
110
110
  &:hover {
111
- background-color: $ac-bg-light-gray;
111
+ background-color: $black-60;
112
112
  }
113
113
  }
114
114
 
@@ -124,7 +124,7 @@
124
124
  h3 {
125
125
  font-size: 16px;
126
126
  line-height: 1;
127
- font-family: $ac-family-paragraph;
127
+ font-family: $font-paragraph;
128
128
  }
129
129
  }
130
130
 
@@ -135,7 +135,7 @@
135
135
  font-size: 36px;
136
136
  line-height: 1;
137
137
  font-weight: 600;
138
- color: $ac-color-heading;
138
+ color: $primary-5;
139
139
  display: inline-block;
140
140
  position: relative;
141
141
  z-index: 1;
@@ -177,12 +177,12 @@
177
177
  }
178
178
 
179
179
  &:hover {
180
- border: 1px solid $ac-primary;
180
+ border: 1px solid $primary;
181
181
 
182
182
  .ac-card-title {
183
183
  h4 {
184
184
  a {
185
- color: $ac-primary;
185
+ color: $primary;
186
186
  }
187
187
  }
188
188
  }
@@ -197,20 +197,20 @@
197
197
  width: 40px;
198
198
  overflow: hidden;
199
199
  margin-right: 15px;
200
- background: $ac-white;
200
+ background: $white-100;
201
201
  padding: 8px;
202
202
  height: 40px;
203
203
  border-radius: 50%;
204
204
  display: flex;
205
205
  align-items: center;
206
- border: 1px solid $ac-white-light;
206
+ border: 1px solid $primary-90;
207
207
  }
208
208
 
209
209
  .ac-card-title {
210
210
  width: calc(100% - 55px);
211
211
  h4 {
212
212
  a {
213
- color: $ac-color-heading;
213
+ color: $primary-5;
214
214
  }
215
215
 
216
216
  font-size: 16px;
@@ -219,7 +219,7 @@
219
219
  }
220
220
 
221
221
  p {
222
- font-size: $font-size-small;
222
+ font-size: 13px;
223
223
  color: $ac-gray;
224
224
  }
225
225
  }
@@ -227,8 +227,8 @@
227
227
 
228
228
  .ac-card-body {
229
229
  p {
230
- color: $ac-gray-dark;
231
- font-size: $font-size-small;
230
+ color: $black-30;
231
+ font-size: 13px;
232
232
  line-height: 140%;
233
233
  }
234
234
  }
@@ -242,7 +242,7 @@
242
242
  position: absolute;
243
243
  content: "";
244
244
  background-color: #27ae60;
245
- border: 2px solid $ac-white;
245
+ border: 2px solid $white-100;
246
246
  box-sizing: border-box;
247
247
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
248
248
  width: 10px;
@@ -256,15 +256,15 @@
256
256
  // offer card scss start
257
257
  .pricing-card-wrpper {
258
258
  &.offer-card {
259
- background-color: $ac-white-lighter;
260
- border: 1px solid $ac-white-light;
259
+ background-color: $white-100-lighter;
260
+ border: 1px solid $primary-90;
261
261
  border-radius: 4px;
262
262
  display: flex;
263
263
  position: relative;
264
264
  z-index: 1;
265
265
 
266
266
  &:after {
267
- @include absulate-shape($ac-primary, 100%, 4px);
267
+ @include absulate-shape($primary, 100%, 4px);
268
268
  background: linear-gradient(90deg, #f99a00 0%, #3f19ad 98.84%);
269
269
  }
270
270
 
@@ -296,7 +296,7 @@
296
296
 
297
297
  &.is-primary {
298
298
  &:after {
299
- @include absulate-shape($ac-primary, 100%, 4px);
299
+ @include absulate-shape($primary, 100%, 4px);
300
300
  border-radius: 4px 4px 0 0;
301
301
  }
302
302
  }
@@ -304,12 +304,12 @@
304
304
  &.is-warning {
305
305
  &.is-selected {
306
306
  &.pricing {
307
- border: 1px solid $ac-warning;
307
+ border: 1px solid $warning;
308
308
  }
309
309
  }
310
310
 
311
311
  &:after {
312
- @include absulate-shape($ac-warning, 100%, 4px);
312
+ @include absulate-shape($warning, 100%, 4px);
313
313
  border-radius: 4px 4px 0 0;
314
314
  }
315
315
  }
@@ -317,12 +317,12 @@
317
317
  &.is-green {
318
318
  &.is-selected {
319
319
  &.pricing {
320
- border: 1px solid $ac-green;
320
+ border: 1px solid $success;
321
321
  }
322
322
  }
323
323
 
324
324
  &:after {
325
- @include absulate-shape($ac-green, 100%, 4px);
325
+ @include absulate-shape($success, 100%, 4px);
326
326
  border-radius: 4px 4px 0 0;
327
327
  }
328
328
  }
@@ -330,22 +330,22 @@
330
330
  &.is-danger {
331
331
  &.is-selected {
332
332
  &.pricing {
333
- border: 1px solid $ac-danger;
333
+ border: 1px solid $danger;
334
334
  }
335
335
  }
336
336
 
337
337
  &:after {
338
- @include absulate-shape($ac-danger, 100%, 4px);
338
+ @include absulate-shape($danger, 100%, 4px);
339
339
  border-radius: 4px 4px 0 0;
340
340
  }
341
341
  }
342
342
 
343
343
  &.pricing {
344
- border: 1px solid $ac-white-light;
344
+ border: 1px solid $primary-90;
345
345
  border-radius: 4px;
346
346
 
347
347
  &.is-selected {
348
- border: 1px solid $ac-primary;
348
+ border: 1px solid $primary;
349
349
  }
350
350
  }
351
351
 
@@ -354,28 +354,28 @@
354
354
  display: flex;
355
355
  justify-content: space-between;
356
356
  padding: 10px;
357
- border-bottom: 1px solid $ac-white-light;
357
+ border-bottom: 1px solid $primary-90;
358
358
 
359
359
  &:last-child {
360
- border-bottom: 1px dashed $ac-white-light;
360
+ border-bottom: 1px dashed $primary-90;
361
361
  }
362
362
 
363
363
  a.inline-button {
364
364
  font-size: 12px;
365
- color: $ac-color-text;
365
+ color: $primary-10;
366
366
  text-decoration: underline;
367
367
  }
368
368
 
369
369
  span {
370
- color: $ac-color-text;
370
+ color: $primary-10;
371
371
  font-size: 12px;
372
372
  font-weight: 600;
373
373
  }
374
374
 
375
375
  p {
376
376
  font-weight: 500;
377
- font-size: $font-size-small;
378
- color: $ac-color-text;
377
+ font-size: 13px;
378
+ color: $primary-10;
379
379
 
380
380
  span {
381
381
  font-size: 12px;
@@ -390,7 +390,7 @@
390
390
  .button.ac-button {
391
391
  &.grediant-1 {
392
392
  border-radius: 4px;
393
- color: $ac-white;
393
+ color: $white-100;
394
394
  letter-spacing: 0;
395
395
  font-size: 12px;
396
396
  border: none;
@@ -420,14 +420,14 @@
420
420
  flex-wrap: wrap;
421
421
 
422
422
  .ac-single-card {
423
- border: 1px solid $ac-white-light;
423
+ border: 1px solid $primary-90;
424
424
 
425
425
  &:hover {
426
426
  border: 1px solid transparent;
427
427
  }
428
428
 
429
429
  &.style-three {
430
- background-color: $ac-white-lighter;
430
+ background-color: $white-100-lighter;
431
431
  width: 183px;
432
432
  padding: 15px 15px 20px;
433
433
  height: 115px;
@@ -451,7 +451,7 @@
451
451
  font-size: 12px;
452
452
  line-height: 14px;
453
453
  text-align: center;
454
- color: $ac-color-text;
454
+ color: $primary-10;
455
455
  }
456
456
  }
457
457
  }
@@ -462,24 +462,24 @@
462
462
 
463
463
  // features card start
464
464
  .features-card-wrapper {
465
- background-color: $ac-white;
465
+ background-color: $white-100;
466
466
  padding: 10px;
467
467
  border-radius: 4px;
468
- border: 1px solid $ac-white-light;
468
+ border: 1px solid $primary-90;
469
469
 
470
470
  .f-header {
471
471
  display: grid;
472
472
  grid-template-columns: 40px auto 20px;
473
473
  grid-gap: 15px;
474
- border-bottom: 1px solid $ac-white-light;
474
+ border-bottom: 1px solid $primary-90;
475
475
  padding-bottom: 10px;
476
476
  margin-bottom: 10px;
477
477
  align-items: flex-start;
478
478
 
479
479
  .f-title-tag {
480
480
  .tag {
481
- background-color: $ac-primary;
482
- color: $ac-white;
481
+ background-color: $primary;
482
+ color: $white-100;
483
483
  }
484
484
  }
485
485
  }
@@ -487,9 +487,9 @@
487
487
  p {
488
488
  font-style: normal;
489
489
  font-weight: normal;
490
- font-size: $font-size-small;
490
+ font-size: 13px;
491
491
  line-height: 160%;
492
- color: $ac-color-text;
492
+ color: $primary-10;
493
493
  margin-bottom: 25px;
494
494
  }
495
495
 
@@ -500,9 +500,9 @@
500
500
  .name,
501
501
  .f-number {
502
502
  font-weight: 500;
503
- font-size: $font-size-small;
503
+ font-size: 13px;
504
504
  line-height: 16px;
505
- color: $ac-color-text;
505
+ color: $primary-10;
506
506
  margin-bottom: 10px;
507
507
  }
508
508
  }
@@ -512,9 +512,9 @@
512
512
  li {
513
513
  font-style: normal;
514
514
  font-weight: normal;
515
- font-size: $font-size-small;
515
+ font-size: 13px;
516
516
  line-height: 163%;
517
- color: $ac-color-text;
517
+ color: $primary-10;
518
518
  margin-bottom: 5px;
519
519
 
520
520
  i.fa {
@@ -579,7 +579,7 @@ Responsive Classes
579
579
  ul {
580
580
  li {
581
581
  p {
582
- font-size: $font-size-small;
582
+ font-size: 13px;
583
583
  line-height: 1;
584
584
  }
585
585
  }
@@ -1,13 +1,13 @@
1
1
  .ac-code-highlight {
2
2
  pre {
3
- font-size: $font-size-small;
4
- color: $ac-color-text;
5
- background-color: $ac-white-lighter;
3
+ font-size: 13px;
4
+ color: $primary-10;
5
+ background-color: $white-100-lighter;
6
6
  }
7
7
  &.is-dark {
8
8
  pre {
9
- background-color: $ac-color-text;
10
- color: $ac-white;
9
+ background-color: $primary-10;
10
+ color: $white-100;
11
11
  }
12
12
  }
13
13
  }
@@ -19,7 +19,7 @@ pre[class*="language-"] {
19
19
  .editor-writable {
20
20
  width: 100%;
21
21
  border-radius: 4px !important;
22
- border: 1px solid $ac-white-light !important;
22
+ border: 1px solid $white-100-light !important;
23
23
  }
24
24
 
25
25
  .monaco-editor {