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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (194) hide show
  1. package/base/_video-player.scss +65 -0
  2. package/base/utilities/_all.scss +6 -5
  3. package/base/utilities/_colors.scss +446 -0
  4. package/base/utilities/_customize-bulma.scss +23 -27
  5. package/base/utilities/_extended.scss +3 -2
  6. package/base/utilities/{_default.scss → _global.scss} +171 -323
  7. package/base/utilities/_layouts.scss +157 -0
  8. package/base/utilities/_mixin.scss +11 -11
  9. package/base/utilities/_spacing.scss +96 -0
  10. package/base/utilities/_typography.scss +56 -24
  11. package/base/utilities/dark-theme.scss +1 -1
  12. package/components/_ac-accordion.scss +117 -117
  13. package/components/_ac-alert-box.scss +205 -263
  14. package/components/_ac-calendar.scss +4 -4
  15. package/components/_ac-card.scss +122 -130
  16. package/components/_ac-code-highlight.scss +6 -6
  17. package/components/_ac-content-layout.scss +165 -165
  18. package/components/_ac-drag.scss +11 -11
  19. package/components/_ac-input.scss +38 -520
  20. package/components/_ac-modal.scss +212 -212
  21. package/components/_ac-multi-select.scss +780 -751
  22. package/components/_ac-options.scss +122 -123
  23. package/components/_ac-select-box.scss +5 -5
  24. package/components/_ac-table.scss +503 -502
  25. package/components/_ac-tabs.scss +39 -38
  26. package/components/_ac-tags.scss +116 -116
  27. package/components/_ac-terminal.scss +95 -51
  28. package/components/_add-card.scss +3 -3
  29. package/components/_all.scss +31 -28
  30. package/components/_app-drawer.scss +0 -134
  31. package/components/_breadcumb.scss +0 -71
  32. package/components/_buttons.scss +779 -779
  33. package/components/_card-body-wrapper.scss +5 -5
  34. package/components/_dashboard-header.scss +0 -115
  35. package/components/_direct-deploy.scss +8 -8
  36. package/components/_go-to-top.scss +1 -1
  37. package/components/_image-upload.scss +3 -3
  38. package/components/_left-sidebar-menu.scss +448 -579
  39. package/components/_monaco-editor.scss +1 -1
  40. package/components/_navbar.scss +786 -752
  41. package/components/_nested-list.scss +1 -1
  42. package/components/_overview-info.scss +7 -7
  43. package/components/_overview-page.scss +4 -4
  44. package/components/_pagination.scss +106 -124
  45. package/components/_payment-card.scss +21 -21
  46. package/components/_preloader.scss +1 -1
  47. package/components/_preview-modal.scss +18 -18
  48. package/components/_pricing-table.scss +10 -10
  49. package/components/_progress-bar.scss +12 -12
  50. package/components/_subscription-card.scss +14 -14
  51. package/components/_table-of-content.scss +4 -4
  52. package/components/_tfa.scss +9 -9
  53. package/components/_widget-menu.scss +247 -247
  54. package/components/_wizard.scss +82 -82
  55. package/components/ac-toaster/_ac-toasted.scss +1 -1
  56. package/components/bbum/_activities-header.scss +1 -1
  57. package/components/bbum/_card-team.scss +12 -12
  58. package/components/bbum/_information-center.scss +13 -13
  59. package/components/bbum/_left-sidebar.scss +8 -8
  60. package/components/bbum/_mobile-desktop.scss +7 -7
  61. package/components/bbum/_post.scss +5 -5
  62. package/components/bbum/_sign-up-notification.scss +10 -10
  63. package/components/bbum/_single-post-preview.scss +21 -21
  64. package/components/bbum/_user-profile.scss +10 -10
  65. package/components/ui-builder/_ui-builder.scss +15 -15
  66. package/components/ui-builder/_vue-open-api.scss +514 -2
  67. package/layouts/_code-preview.scss +11 -11
  68. package/main.scss +26 -10
  69. package/package.json +1 -1
  70. package/vue-components/plugins/time-convert.js +49 -0
  71. package/vue-components/text.vue +1 -0
  72. package/vue-components/types/cluster.ts +6 -0
  73. package/vue-components/types/longRunningTasks.ts +20 -0
  74. package/vue-components/types/notification.ts +6 -0
  75. package/vue-components/types/previewYaml.ts +8 -0
  76. package/vue-components/types/table.ts +54 -0
  77. package/vue-components/types/theme.ts +10 -0
  78. package/vue-components/types/user.ts +22 -0
  79. package/vue-components/v2/card/Card.vue +1 -1
  80. package/vue-components/v2/card/OverviewCards.vue +17 -2
  81. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +21 -21
  82. package/vue-components/v2/icons/Ellipsis.vue +2 -1
  83. package/vue-components/v2/modal/Modal.vue +0 -5
  84. package/vue-components/v2/navbar/Appdrawer.vue +37 -12
  85. package/vue-components/v2/navbar/Navbar.vue +3 -3
  86. package/vue-components/v2/navbar/NavbarItem.vue +3 -1
  87. package/vue-components/v2/navbar/NavbarItemContent.vue +1 -1
  88. package/vue-components/v2/navbar/User.vue +5 -22
  89. package/vue-components/v2/pagination/Pagination.vue +65 -0
  90. package/vue-components/v2/sidebar/SidebarItem.vue +10 -7
  91. package/vue-components/v3/accordion/Accordion.vue +151 -0
  92. package/vue-components/v3/alert/Alert.vue +238 -0
  93. package/vue-components/v3/alert/Toast.vue +79 -0
  94. package/vue-components/v3/banner/Banner.vue +10 -0
  95. package/vue-components/v3/breadcrumbs/Breadcrumb.vue +104 -0
  96. package/vue-components/v3/button/Button.vue +831 -58
  97. package/vue-components/v3/button/Buttons.vue +6 -0
  98. package/vue-components/v3/button/DownloadBtn.vue +31 -0
  99. package/vue-components/v3/cards/Card.vue +32 -0
  100. package/vue-components/v3/cards/CardContent.vue +7 -0
  101. package/vue-components/v3/cards/CardHeader.vue +14 -0
  102. package/vue-components/v3/cards/Cards.vue +7 -0
  103. package/vue-components/v3/cards/Cluster.vue +150 -0
  104. package/vue-components/v3/cards/Counter.vue +27 -0
  105. package/vue-components/v3/cards/FeatureCard.vue +40 -0
  106. package/vue-components/v3/cards/FeatureCards.vue +6 -0
  107. package/vue-components/v3/cards/InfoCard.vue +248 -0
  108. package/vue-components/v3/cards/Monitoring.vue +94 -0
  109. package/vue-components/v3/cards/OverviewCard.vue +24 -0
  110. package/vue-components/v3/cards/OverviewCards.vue +31 -0
  111. package/vue-components/v3/cards/Payment.vue +62 -0
  112. package/vue-components/v3/cards/Vendor.vue +23 -0
  113. package/vue-components/v3/content/ContentHeader.vue +39 -30
  114. package/vue-components/v3/content/ContentLayout.vue +20 -0
  115. package/vue-components/v3/content/ContentTable.vue +37 -61
  116. package/vue-components/v3/dropdown/DropdownDivider.vue +2 -0
  117. package/vue-components/v3/dropdown/DropdownItem.vue +2 -0
  118. package/vue-components/v3/dropdown/DropdownMenu.vue +85 -91
  119. package/vue-components/v3/editor/Editor.vue +100 -113
  120. package/vue-components/v3/editor/FilteredFileEditor.vue +124 -127
  121. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +70 -94
  122. package/vue-components/v3/footer/FooterArea.vue +34 -0
  123. package/vue-components/v3/footer/FooterItem.vue +32 -0
  124. package/vue-components/v3/footer/FooterItems.vue +15 -0
  125. package/vue-components/v3/footer/Info.vue +23 -0
  126. package/vue-components/v3/footer/Status.vue +42 -0
  127. package/vue-components/v3/footer/Usage.vue +44 -0
  128. package/vue-components/v3/form/Form.vue +24 -33
  129. package/vue-components/v3/form/FormFooterControl.vue +7 -0
  130. package/vue-components/v3/form/FormFooterControls.vue +7 -0
  131. package/vue-components/v3/form-fields/AcSingleInput.vue +520 -0
  132. package/vue-components/v3/form-fields/Input.vue +19 -14
  133. package/vue-components/v3/header/Header.vue +117 -24
  134. package/vue-components/v3/header/HeaderItem.vue +18 -0
  135. package/vue-components/v3/header/HeaderItems.vue +4 -0
  136. package/vue-components/v3/icons/Ellipsis.vue +2 -0
  137. package/vue-components/v3/loaders/ResourceLoader.vue +4 -12
  138. package/vue-components/v3/loaders/SidebarLoader.vue +4 -12
  139. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +17 -15
  140. package/vue-components/v3/modal/Modal.vue +292 -96
  141. package/vue-components/v3/modals/DeleteConfirmationModal.vue +37 -50
  142. package/vue-components/v3/modals/JsonShowModal.vue +62 -68
  143. package/vue-components/v3/modals/LongRunningTasksModal.vue +145 -143
  144. package/vue-components/v3/navbar/Appdrawer.vue +196 -51
  145. package/vue-components/v3/navbar/Navbar.vue +296 -0
  146. package/vue-components/v3/navbar/NavbarItem.vue +81 -0
  147. package/vue-components/v3/navbar/NavbarItemContent.vue +284 -0
  148. package/vue-components/v3/navbar/Notification.vue +179 -0
  149. package/vue-components/v3/navbar/ThemeMode.vue +128 -112
  150. package/vue-components/v3/navbar/User.vue +383 -268
  151. package/vue-components/v3/notification/AlertBox.vue +39 -42
  152. package/vue-components/v3/notification/Notification.vue +49 -43
  153. package/vue-components/v3/notification/NotificationItem.vue +51 -19
  154. package/vue-components/v3/option-dots/Options.vue +188 -0
  155. package/vue-components/v3/pagination/Pagination.vue +203 -99
  156. package/vue-components/v3/preloader/Preloader.vue +23 -0
  157. package/vue-components/v3/searchbars/SearchBar.vue +51 -34
  158. package/vue-components/v3/sidebar/AccentColorPicker.vue +97 -0
  159. package/vue-components/v3/sidebar/ClusterSwitcher.vue +834 -81
  160. package/vue-components/v3/sidebar/Sidebar.vue +271 -0
  161. package/vue-components/v3/sidebar/SidebarBody.vue +7 -0
  162. package/vue-components/v3/sidebar/SidebarFooter.vue +80 -0
  163. package/vue-components/v3/sidebar/SidebarHeader.vue +124 -0
  164. package/vue-components/v3/sidebar/SidebarItem.vue +62 -0
  165. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +101 -104
  166. package/vue-components/v3/sidebar/SidebarMenuList.vue +9 -0
  167. package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabs.vue +128 -0
  168. package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabsLayout.vue +29 -0
  169. package/vue-components/v3/sidebar/sidebar-tabs/TabsContent.vue +99 -0
  170. package/vue-components/v3/tab/TabItem.vue +10 -12
  171. package/vue-components/v3/tab/Tabs.vue +9 -0
  172. package/vue-components/v3/tab/TabsBody.vue +7 -0
  173. package/vue-components/v3/table/EmptyTableInfo.vue +8 -0
  174. package/vue-components/v3/table/FakeTableCell.vue +22 -31
  175. package/vue-components/v3/table/InfoTable.vue +85 -59
  176. package/vue-components/v3/table/MultiInfoTable.vue +72 -95
  177. package/vue-components/v3/table/Table.vue +582 -151
  178. package/vue-components/v3/table/TableCell.vue +20 -23
  179. package/vue-components/v3/table/TableContainer.vue +50 -28
  180. package/vue-components/v3/table/TableRow.vue +63 -85
  181. package/vue-components/v3/table/table-cell/ArrayCell.vue +67 -79
  182. package/vue-components/v3/table/table-cell/CellValue.vue +97 -103
  183. package/vue-components/v3/table/table-cell/GenericCell.vue +43 -42
  184. package/vue-components/v3/table/table-cell/ObjectCell.vue +67 -79
  185. package/vue-components/v3/table/table-cell/ValueWithModal.vue +22 -31
  186. package/vue-components/v3/tabs/EditorTabs.vue +18 -24
  187. package/vue-components/v3/tag/Tag.vue +15 -12
  188. package/vue-components/v3/tag/Tags.vue +7 -0
  189. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +26 -23
  190. package/base/utilities/_derived-variables.scss +0 -25
  191. package/base/utilities/_initial-variables.scss +0 -215
  192. package/components/_basic-card.scss +0 -128
  193. package/mixins/stickyContent.js +0 -141
  194. package/plugins/caching.ts +0 -243
@@ -1,486 +1,4 @@
1
1
  // Input fields
2
- .ac-single-input {
3
- position: relative;
4
- z-index: 1;
5
- margin-bottom: 15px;
6
-
7
- &.is-disable {
8
- opacity: 0.5;
9
-
10
- input,
11
- .button.is-information,
12
- .eye i.fa {
13
- cursor: not-allowed;
14
- }
15
- }
16
-
17
- &.is-information {
18
- input {
19
- padding-right: 45px;
20
-
21
- &[type="password"] {
22
- padding-right: 80px;
23
- }
24
- }
25
-
26
- span.eye i.fa {
27
- right: 35px;
28
- }
29
- }
30
-
31
- &.is-success {
32
- input,
33
- .ac-card,
34
- textarea {
35
- border: 1px solid $ac-primary !important;
36
- }
37
-
38
- p {
39
- color: $ac-primary;
40
- }
41
- }
42
-
43
- &.is-danger {
44
- input,
45
- .ac-card,
46
- textarea {
47
- border: 1px solid $ac-danger;
48
- }
49
-
50
- p {
51
- color: $ac-danger;
52
- }
53
- }
54
-
55
- &.is-loading {
56
- input,
57
- .ac-card,
58
- textarea {
59
- border: 1px solid $ac-info;
60
- opacity: 0.5;
61
- }
62
-
63
- p {
64
- color: $ac-info;
65
- opacity: 0.5;
66
- }
67
- }
68
-
69
- &.borderless-input {
70
- input {
71
- border: none;
72
- font-size: $font-size-small;
73
- padding: 4px 7px;
74
- height: 30px;
75
- background-color: $ac-white;
76
- padding-right: 30px;
77
-
78
- &[type="password"] {
79
- padding-right: 30px;
80
- }
81
-
82
- &:focus {
83
- outline: none;
84
- border: none;
85
- }
86
- }
87
-
88
- span.eye {
89
- i.fa {
90
- padding: 9px;
91
- font-size: 12px;
92
- }
93
- }
94
- }
95
-
96
- &.is-normal {
97
- input {
98
- height: 45px;
99
- font-size: 15px;
100
- font-family: $ac-family-paragraph;
101
- font-weight: 400;
102
- }
103
-
104
- .button {
105
- &.is-information {
106
- height: 45px;
107
- width: 45px;
108
- margin-top: 0;
109
- }
110
- }
111
-
112
- span.eye i.fa {
113
- padding: 14px 10px;
114
- }
115
-
116
- .ac-search-button {
117
- margin-top: -22.5px;
118
- }
119
-
120
- label {
121
- top: 13px;
122
- font-size: $font-size-small;
123
-
124
- &.show-label {
125
- font-size: 12px;
126
- color: $ac-color-value;
127
- top: -9px;
128
- font-weight: 500;
129
- background-color: $ac-white;
130
- }
131
- }
132
-
133
- .control {
134
- &.has-icons-right {
135
- .icon {
136
- height: 45px;
137
- width: 30px;
138
- font-size: $font-size-small;
139
- }
140
- }
141
- }
142
- }
143
-
144
- &.is-small {
145
- input {
146
- height: 36px;
147
- font-size: $font-size-small;
148
- font-family: $ac-family-paragraph;
149
- font-weight: 400;
150
- }
151
-
152
- .button {
153
- &.is-information {
154
- height: 36px;
155
- width: 36px;
156
- margin-top: 0;
157
- padding: 10px;
158
- }
159
- }
160
-
161
- span.eye i.fa {
162
- padding: 10px;
163
- }
164
-
165
- .ac-search-button {
166
- margin-top: -18px;
167
- }
168
-
169
- label {
170
- top: 8px;
171
- font-size: $font-size-small;
172
- &.switch-label {
173
- top: 0;
174
- }
175
-
176
- &.show-label {
177
- font-size: 12px;
178
- top: -9px;
179
- font-weight: 500;
180
- color: $ac-color-value;
181
- &.is-required {
182
- &:after {
183
- width: calc(100% + 10px);
184
- }
185
- }
186
- }
187
- }
188
-
189
- .control {
190
- &.has-icons-right {
191
- .icon {
192
- height: 36px;
193
- width: 25px;
194
- font-size: $font-size-small;
195
- }
196
- }
197
- }
198
- }
199
-
200
- &.is-extra-small {
201
- input {
202
- height: 32px;
203
- font-size: $font-size-small;
204
- font-family: $ac-family-paragraph;
205
- font-weight: 400;
206
- }
207
-
208
- .button {
209
- &.is-information {
210
- height: 32px;
211
- width: 32px;
212
- margin-top: 0;
213
- }
214
- }
215
-
216
- span.eye i.fa {
217
- padding: 10px;
218
- }
219
-
220
- .ac-search-button {
221
- margin-top: -16px;
222
- }
223
-
224
- label {
225
- top: 8px;
226
- font-size: $font-size-small;
227
- &.switch-label {
228
- top: 0;
229
- }
230
-
231
- &.show-label {
232
- font-size: 12px;
233
- top: -9px;
234
- }
235
- }
236
-
237
- .control {
238
- &.has-icons-right {
239
- .icon {
240
- height: 32px;
241
- width: 25px;
242
- font-size: $font-size-small;
243
- }
244
- }
245
- }
246
- }
247
-
248
- &:last-child {
249
- margin-bottom: 0;
250
- }
251
-
252
- &.is-dark {
253
- input {
254
- background-color: $ac-color-heading;
255
- border-color: transparent;
256
- color: $ac-white;
257
-
258
- &::placeholder {
259
- color: $ac-white-light;
260
- }
261
-
262
- button {
263
- i.fa {
264
- color: $ac-white;
265
- }
266
- }
267
- }
268
- }
269
-
270
- label {
271
- font-size: $font-size-small;
272
- left: 15px;
273
- top: 11px;
274
- cursor: text;
275
- color: $ac-label-text;
276
- position: absolute;
277
- z-index: 2;
278
- transition: 0.3s ease-in-out;
279
-
280
- .is-required {
281
- color: $ac-danger;
282
-
283
- img {
284
- position: absolute;
285
- top: 7px;
286
- padding-left: 3px;
287
- }
288
- }
289
-
290
- &.show-label {
291
- top: -9px;
292
- left: 10px;
293
- padding: 0 5px;
294
- font-size: $font-size-small;
295
- color: $ac-color-value;
296
-
297
- &:after {
298
- position: absolute;
299
- content: "";
300
- left: 0;
301
- top: 50%;
302
- background-color: $ac-white;
303
- width: 100%;
304
- height: 2px;
305
- margin-top: -1px;
306
- z-index: -1;
307
- }
308
-
309
- // &.is-required {
310
- // &:after {
311
- // width: calc(100% + 10px);
312
- // }
313
- // }
314
- }
315
- }
316
-
317
- .button {
318
- &.is-information {
319
- background-color: transparent;
320
- border: none;
321
- position: absolute;
322
- right: 0;
323
- height: 32px;
324
- width: 32px;
325
- margin-top: 0;
326
-
327
- &:focus {
328
- outline: none;
329
- box-shadow: none;
330
- background-color: #e4e8ef;
331
- transform: scale(0.8);
332
- }
333
- }
334
- }
335
-
336
- .ac-search-button {
337
- background-color: transparent;
338
- border: none;
339
- position: absolute;
340
- left: 0;
341
- top: 50%;
342
- width: 35px;
343
- height: 100%;
344
- margin-top: -22.5px;
345
- color: $ac-label-text;
346
- cursor: pointer;
347
- }
348
-
349
- .ac-dropdown-content {
350
- position: absolute;
351
- background-color: $ac-blue-light;
352
- width: 100%;
353
- height: auto;
354
- box-shadow: 0px 4px 16px rgba(132, 147, 168, 0.6);
355
- border-radius: 4px;
356
- overflow: hidden;
357
-
358
- ul {
359
- li {
360
- a {
361
- color: $ac-color-text;
362
- display: block;
363
- font-size: $font-size-small;
364
- padding: 8px 20px;
365
- transition: 0.3s;
366
-
367
- &:hover {
368
- background-color: hsla(
369
- var(--hsl-hue),
370
- var(--hsl-saturation),
371
- var(--hsl-lightness),
372
- 0.2
373
- );
374
- color: $ac-primary;
375
- }
376
- }
377
- }
378
- }
379
- }
380
-
381
- .ac-textarea {
382
- .ac-label {
383
- &.is-required {
384
- &:after {
385
- width: calc(100% + 10px);
386
- }
387
- }
388
- }
389
- textarea {
390
- border: 1px solid $ac-label-text;
391
- background-color: transparent;
392
- padding: 10px 15px;
393
- min-height: 50px;
394
- &.bg-white {
395
- background-color: transparent;
396
- }
397
-
398
- &:focus {
399
- outline: none;
400
- border: 1px solid $ac-primary;
401
- }
402
- }
403
- }
404
-
405
- input,
406
- .ac-card,
407
- textarea {
408
- background-color: $ac-white;
409
- color: $ac-color-text;
410
- height: 45px;
411
- font-weight: 400;
412
- width: 100%;
413
- border-radius: 4px;
414
- border: 1px solid $ac-label-text;
415
- padding: 8px 15px;
416
- font-size: $font-size-small;
417
-
418
- &:hover {
419
- border-color: $ac-gray-lightest;
420
- }
421
-
422
- &.bg-white {
423
- background-color: $ac-white;
424
- }
425
- &.StripeElement--focus {
426
- border: 1px solid $ac-primary;
427
- }
428
- &:focus {
429
- border: 1px solid $ac-primary;
430
- outline: none;
431
- background-color: $ac-white;
432
- }
433
-
434
- &[type="password"] {
435
- padding-right: 40px;
436
- }
437
-
438
- &[type="search"] {
439
- padding-left: 30px;
440
- }
441
-
442
- transition: background-color 0.3s ease-in-out;
443
- }
444
-
445
- .ac-card {
446
- height: 36px;
447
- padding: 10px 20px;
448
- }
449
-
450
- textarea {
451
- height: 55px;
452
- }
453
-
454
- b.isRequired {
455
- color: $ac-red;
456
- font-size: $font-size-small;
457
- position: absolute;
458
- right: 5px;
459
- z-index: 9;
460
- }
461
-
462
- span.eye {
463
- i.fa {
464
- color: $ac-label-text;
465
- position: absolute;
466
- cursor: pointer;
467
- padding: 15px;
468
- right: 0;
469
- top: 0;
470
- }
471
- }
472
-
473
- .is-error {
474
- font-size: 12px;
475
- line-height: 22px;
476
- color: $ac-red;
477
- text-align: left;
478
-
479
- i.fa {
480
- padding-right: 10px;
481
- }
482
- }
483
- }
484
2
 
485
3
  .ac-file-upload {
486
4
  margin-bottom: 20px;
@@ -500,20 +18,20 @@
500
18
  left: 180px;
501
19
  top: 10px;
502
20
  z-index: 1;
503
- font-size: $font-size-small;
21
+ font-size: 13px;
504
22
  color: $ac-label-text;
505
23
  font-weight: 400;
506
24
  }
507
25
  }
508
26
 
509
27
  .file-cta {
510
- background-color: $ac-primary;
28
+ background-color: $primary;
511
29
  margin-top: 3.5px;
512
30
  margin-left: 3px;
513
31
  height: 26px;
514
32
 
515
33
  .file-label {
516
- color: $ac-white;
34
+ color: $white-100;
517
35
  font-weight: 400;
518
36
  }
519
37
  }
@@ -526,7 +44,7 @@
526
44
  font-weight: 400;
527
45
  border-radius: 4px;
528
46
  border: 1px solid $ac-label-text;
529
- font-size: $font-size-small;
47
+ font-size: 13px;
530
48
 
531
49
  .file-cta {
532
50
  background-color: transparent;
@@ -534,28 +52,28 @@
534
52
  }
535
53
 
536
54
  &:hover {
537
- border-color: $ac-gray-lightest;
55
+ border-color: $black-80;
538
56
  }
539
57
 
540
58
  &.bg-white {
541
- background-color: $ac-white;
59
+ background-color: $white-100;
542
60
  }
543
61
 
544
62
  &:focus {
545
- border: 1px solid $ac-primary;
63
+ border: 1px solid $primary;
546
64
  outline: none;
547
- background-color: $ac-white;
65
+ background-color: $white-100;
548
66
  }
549
67
  }
550
68
  }
551
69
 
552
70
  input#captcha {
553
- background-color: $ac-white;
71
+ background-color: $white-100;
554
72
  height: 36px;
555
73
  font-weight: 400;
556
74
  width: 100%;
557
75
  border-radius: 4px;
558
- border: 1px solid $ac-white-light;
76
+ border: 1px solid $primary-90;
559
77
  padding: 8px 15px;
560
78
  font-size: 13px;
561
79
  transition: background-color 0.3s ease-in-out;
@@ -575,39 +93,39 @@ input#captcha {
575
93
  .is-checkradio[type="checkbox"].ac-checkbox + label::before {
576
94
  height: 16px;
577
95
  width: 16px;
578
- background-color: $ac-white-light;
96
+ background-color: $primary-90;
579
97
  }
580
98
 
581
99
  .is-checkradio[type="checkbox"].ac-checkbox:checked + label::before {
582
- background-color: $ac-primary;
583
- border-color: $ac-primary;
100
+ background-color: $primary;
101
+ border-color: $primary;
584
102
  }
585
103
 
586
104
  .is-checkradio[type="checkbox"].ac-checkbox + label::after {
587
105
  top: 6px;
588
106
  left: 6px;
589
- border-color: $ac-gray-lightest;
107
+ border-color: $black-80;
590
108
  width: 0.3rem;
591
109
  height: 0.5rem;
592
110
  }
593
111
 
594
112
  .is-checkradio[type="checkbox"].ac-checkbox:checked + label::after {
595
- border-color: $ac-white;
113
+ border-color: $white-100;
596
114
  }
597
115
 
598
116
  .is-checkradio[type="checkbox"].ac-checkbox + label {
599
- color: $ac-color-text;
117
+ color: $primary-10;
600
118
  font-size: 13px !important;
601
119
  padding-left: 25px;
602
120
  user-select: none;
603
121
  }
604
122
 
605
123
  .is-checkradio[type="checkbox"].ac-checkbox:checked + label {
606
- color: $ac-primary !important;
124
+ color: $primary !important;
607
125
  }
608
126
 
609
127
  .is-checkradio[type="checkbox"].ac-checkbox + label {
610
- color: $ac-color-text;
128
+ color: $primary-10;
611
129
  font-size: 13px;
612
130
  padding-left: 25px;
613
131
  user-select: none;
@@ -622,7 +140,7 @@ input#captcha {
622
140
  .ac-single-radio {
623
141
  &.is-selected {
624
142
  .is-checkradio[type="radio"].ac-radio + label {
625
- color: $ac-primary;
143
+ color: $primary;
626
144
  }
627
145
  }
628
146
  }
@@ -638,7 +156,7 @@ input#captcha {
638
156
  user-select: none;
639
157
  font-size: 13px;
640
158
  font-weight: 400;
641
- color: $ac-color-text;
159
+ color: $primary-10;
642
160
 
643
161
  &::before {
644
162
  background-color: #cad3df;
@@ -689,27 +207,27 @@ input#captcha {
689
207
 
690
208
  &.ac-switch {
691
209
  &.is-primary {
692
- @include ac-switch($ac-primary);
210
+ @include ac-switch($primary);
693
211
  }
694
212
 
695
213
  &.is-link {
696
- @include ac-switch($ac-blue);
214
+ @include ac-switch($info);
697
215
  }
698
216
 
699
217
  &.is-info {
700
- @include ac-switch($ac-info);
218
+ @include ac-switch($info);
701
219
  }
702
220
 
703
221
  &.is-success {
704
- @include ac-switch($ac-success);
222
+ @include ac-switch($success);
705
223
  }
706
224
 
707
225
  &.is-warning {
708
- @include ac-switch($ac-warning);
226
+ @include ac-switch($warning);
709
227
  }
710
228
 
711
229
  &.is-danger {
712
- @include ac-switch($ac-danger);
230
+ @include ac-switch($danger);
713
231
  }
714
232
  }
715
233
  }
@@ -738,8 +256,8 @@ input#captcha {
738
256
  background-color: transparent;
739
257
  font-size: 18px;
740
258
  font-weight: 400;
741
- font-family: $ac-family-heading;
742
- color: $ac-color-value;
259
+ font-family: $font-heading;
260
+ color: $primary-20;
743
261
  width: 100%;
744
262
  padding: 5px 0;
745
263
 
@@ -759,18 +277,18 @@ input#captcha {
759
277
  padding: 0.3rem 0.5rem 0.2rem 1.5rem;
760
278
 
761
279
  &::after {
762
- background-color: $ac-primary;
280
+ background-color: $primary;
763
281
  width: 16px;
764
282
  height: 16px;
765
283
  top: 5px;
766
284
  }
767
285
 
768
286
  &:after {
769
- background-color: $ac-primary;
287
+ background-color: $primary;
770
288
  }
771
289
 
772
290
  &:before {
773
- border-color: $ac-primary;
291
+ border-color: $primary;
774
292
  width: 16px;
775
293
  height: 16px;
776
294
  top: 5px;
@@ -781,7 +299,7 @@ input#captcha {
781
299
  &:not([disabled]) {
782
300
  & + label {
783
301
  &:before {
784
- border-color: $ac-primary !important;
302
+ border-color: $primary !important;
785
303
  }
786
304
  }
787
305
  }
@@ -790,7 +308,7 @@ input#captcha {
790
308
 
791
309
  .is-checkradio[type="radio"]:checked {
792
310
  & + label {
793
- color: $ac-primary;
311
+ color: $primary;
794
312
  }
795
313
  }
796
314
  }
@@ -820,22 +338,22 @@ Responsive Classes
820
338
  .ac-single-input {
821
339
  input {
822
340
  height: 36px;
823
- font-size: $font-size-small;
341
+ font-size: 13px;
824
342
  font-weight: 400;
825
343
  }
826
344
 
827
345
  label {
828
346
  top: 9px;
829
- font-size: $font-size-small;
347
+ font-size: 13px;
830
348
 
831
349
  &.show-label {
832
350
  top: -9px;
833
- font-size: $font-size-extra-small;
351
+ font-size: 12px;
834
352
  }
835
353
  }
836
354
 
837
355
  textarea {
838
- font-size: $font-size-small;
356
+ font-size: 13px;
839
357
  }
840
358
 
841
359
  span {
@@ -854,7 +372,7 @@ Responsive Classes
854
372
  .ac-file-upload {
855
373
  label {
856
374
  height: 36px;
857
- font-size: $font-size-small;
375
+ font-size: 13px;
858
376
  }
859
377
  }
860
378
  }