@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
@@ -32,11 +32,11 @@
32
32
  input,
33
33
  .ac-card,
34
34
  textarea {
35
- border: 1px solid $ac-primary !important;
35
+ border: 1px solid $primary !important;
36
36
  }
37
37
 
38
38
  p {
39
- color: $ac-primary;
39
+ color: $primary;
40
40
  }
41
41
  }
42
42
 
@@ -44,11 +44,11 @@
44
44
  input,
45
45
  .ac-card,
46
46
  textarea {
47
- border: 1px solid $ac-danger;
47
+ border: 1px solid $danger;
48
48
  }
49
49
 
50
50
  p {
51
- color: $ac-danger;
51
+ color: $danger;
52
52
  }
53
53
  }
54
54
 
@@ -56,12 +56,12 @@
56
56
  input,
57
57
  .ac-card,
58
58
  textarea {
59
- border: 1px solid $ac-info;
59
+ border: 1px solid $info;
60
60
  opacity: 0.5;
61
61
  }
62
62
 
63
63
  p {
64
- color: $ac-info;
64
+ color: $info;
65
65
  opacity: 0.5;
66
66
  }
67
67
  }
@@ -69,10 +69,10 @@
69
69
  &.borderless-input {
70
70
  input {
71
71
  border: none;
72
- font-size: $font-size-small;
72
+ font-size: 13px;
73
73
  padding: 4px 7px;
74
74
  height: 30px;
75
- background-color: $ac-white;
75
+ background-color: $white-100;
76
76
  padding-right: 30px;
77
77
 
78
78
  &[type="password"] {
@@ -97,7 +97,7 @@
97
97
  input {
98
98
  height: 45px;
99
99
  font-size: 15px;
100
- font-family: $ac-family-paragraph;
100
+ font-family: $font-paragraph;
101
101
  font-weight: 400;
102
102
  }
103
103
 
@@ -119,14 +119,14 @@
119
119
 
120
120
  label {
121
121
  top: 13px;
122
- font-size: $font-size-small;
122
+ font-size: 13px;
123
123
 
124
124
  &.show-label {
125
125
  font-size: 12px;
126
- color: $ac-color-value;
126
+ color: $primary-20;
127
127
  top: -9px;
128
128
  font-weight: 500;
129
- background-color: $ac-white;
129
+ background-color: $white-100;
130
130
  }
131
131
  }
132
132
 
@@ -135,7 +135,7 @@
135
135
  .icon {
136
136
  height: 45px;
137
137
  width: 30px;
138
- font-size: $font-size-small;
138
+ font-size: 13px;
139
139
  }
140
140
  }
141
141
  }
@@ -144,8 +144,8 @@
144
144
  &.is-small {
145
145
  input {
146
146
  height: 36px;
147
- font-size: $font-size-small;
148
- font-family: $ac-family-paragraph;
147
+ font-size: 13px;
148
+ font-family: $font-paragraph;
149
149
  font-weight: 400;
150
150
  }
151
151
 
@@ -168,7 +168,7 @@
168
168
 
169
169
  label {
170
170
  top: 8px;
171
- font-size: $font-size-small;
171
+ font-size: 13px;
172
172
  &.switch-label {
173
173
  top: 0;
174
174
  }
@@ -177,7 +177,7 @@
177
177
  font-size: 12px;
178
178
  top: -9px;
179
179
  font-weight: 500;
180
- color: $ac-color-value;
180
+ color: $primary-20;
181
181
  &.is-required {
182
182
  &:after {
183
183
  width: calc(100% + 10px);
@@ -191,7 +191,7 @@
191
191
  .icon {
192
192
  height: 36px;
193
193
  width: 25px;
194
- font-size: $font-size-small;
194
+ font-size: 13px;
195
195
  }
196
196
  }
197
197
  }
@@ -200,8 +200,8 @@
200
200
  &.is-extra-small {
201
201
  input {
202
202
  height: 32px;
203
- font-size: $font-size-small;
204
- font-family: $ac-family-paragraph;
203
+ font-size: 13px;
204
+ font-family: $font-paragraph;
205
205
  font-weight: 400;
206
206
  }
207
207
 
@@ -223,7 +223,7 @@
223
223
 
224
224
  label {
225
225
  top: 8px;
226
- font-size: $font-size-small;
226
+ font-size: 13px;
227
227
  &.switch-label {
228
228
  top: 0;
229
229
  }
@@ -239,7 +239,7 @@
239
239
  .icon {
240
240
  height: 32px;
241
241
  width: 25px;
242
- font-size: $font-size-small;
242
+ font-size: 13px;
243
243
  }
244
244
  }
245
245
  }
@@ -251,24 +251,24 @@
251
251
 
252
252
  &.is-dark {
253
253
  input {
254
- background-color: $ac-color-heading;
254
+ background-color: $primary-5;
255
255
  border-color: transparent;
256
- color: $ac-white;
256
+ color: $white-100;
257
257
 
258
258
  &::placeholder {
259
- color: $ac-white-light;
259
+ color: $primary-90;
260
260
  }
261
261
 
262
262
  button {
263
263
  i.fa {
264
- color: $ac-white;
264
+ color: $white-100;
265
265
  }
266
266
  }
267
267
  }
268
268
  }
269
269
 
270
270
  label {
271
- font-size: $font-size-small;
271
+ font-size: 13px;
272
272
  left: 15px;
273
273
  top: 11px;
274
274
  cursor: text;
@@ -278,7 +278,7 @@
278
278
  transition: 0.3s ease-in-out;
279
279
 
280
280
  .is-required {
281
- color: $ac-danger;
281
+ color: $danger;
282
282
 
283
283
  img {
284
284
  position: absolute;
@@ -291,15 +291,15 @@
291
291
  top: -9px;
292
292
  left: 10px;
293
293
  padding: 0 5px;
294
- font-size: $font-size-small;
295
- color: $ac-color-value;
294
+ font-size: 13px;
295
+ color: $primary-20;
296
296
 
297
297
  &:after {
298
298
  position: absolute;
299
299
  content: "";
300
300
  left: 0;
301
301
  top: 50%;
302
- background-color: $ac-white;
302
+ background-color: $white-100;
303
303
  width: 100%;
304
304
  height: 2px;
305
305
  margin-top: -1px;
@@ -348,7 +348,7 @@
348
348
 
349
349
  .ac-dropdown-content {
350
350
  position: absolute;
351
- background-color: $ac-blue-light;
351
+ background-color: $info-light;
352
352
  width: 100%;
353
353
  height: auto;
354
354
  box-shadow: 0px 4px 16px rgba(132, 147, 168, 0.6);
@@ -358,9 +358,9 @@
358
358
  ul {
359
359
  li {
360
360
  a {
361
- color: $ac-color-text;
361
+ color: $primary-10;
362
362
  display: block;
363
- font-size: $font-size-small;
363
+ font-size: 13px;
364
364
  padding: 8px 20px;
365
365
  transition: 0.3s;
366
366
 
@@ -371,7 +371,7 @@
371
371
  var(--hsl-lightness),
372
372
  0.2
373
373
  );
374
- color: $ac-primary;
374
+ color: $primary;
375
375
  }
376
376
  }
377
377
  }
@@ -397,7 +397,7 @@
397
397
 
398
398
  &:focus {
399
399
  outline: none;
400
- border: 1px solid $ac-primary;
400
+ border: 1px solid $primary;
401
401
  }
402
402
  }
403
403
  }
@@ -405,30 +405,30 @@
405
405
  input,
406
406
  .ac-card,
407
407
  textarea {
408
- background-color: $ac-white;
409
- color: $ac-color-text;
408
+ background-color: $white-100;
409
+ color: $primary-10;
410
410
  height: 45px;
411
411
  font-weight: 400;
412
412
  width: 100%;
413
413
  border-radius: 4px;
414
414
  border: 1px solid $ac-label-text;
415
415
  padding: 8px 15px;
416
- font-size: $font-size-small;
416
+ font-size: 13px;
417
417
 
418
418
  &:hover {
419
- border-color: $ac-gray-lightest;
419
+ border-color: $black-80;
420
420
  }
421
421
 
422
422
  &.bg-white {
423
- background-color: $ac-white;
423
+ background-color: $white-100;
424
424
  }
425
425
  &.StripeElement--focus {
426
- border: 1px solid $ac-primary;
426
+ border: 1px solid $primary;
427
427
  }
428
428
  &:focus {
429
- border: 1px solid $ac-primary;
429
+ border: 1px solid $primary;
430
430
  outline: none;
431
- background-color: $ac-white;
431
+ background-color: $white-100;
432
432
  }
433
433
 
434
434
  &[type="password"] {
@@ -452,8 +452,8 @@
452
452
  }
453
453
 
454
454
  b.isRequired {
455
- color: $ac-red;
456
- font-size: $font-size-small;
455
+ color: $danger
456
+ font-size: 13px;
457
457
  position: absolute;
458
458
  right: 5px;
459
459
  z-index: 9;
@@ -473,7 +473,7 @@
473
473
  .is-error {
474
474
  font-size: 12px;
475
475
  line-height: 22px;
476
- color: $ac-red;
476
+ color: $danger;
477
477
  text-align: left;
478
478
 
479
479
  i.fa {
@@ -500,20 +500,20 @@
500
500
  left: 180px;
501
501
  top: 10px;
502
502
  z-index: 1;
503
- font-size: $font-size-small;
503
+ font-size: 13px;
504
504
  color: $ac-label-text;
505
505
  font-weight: 400;
506
506
  }
507
507
  }
508
508
 
509
509
  .file-cta {
510
- background-color: $ac-primary;
510
+ background-color: $primary;
511
511
  margin-top: 3.5px;
512
512
  margin-left: 3px;
513
513
  height: 26px;
514
514
 
515
515
  .file-label {
516
- color: $ac-white;
516
+ color: $white-100;
517
517
  font-weight: 400;
518
518
  }
519
519
  }
@@ -526,7 +526,7 @@
526
526
  font-weight: 400;
527
527
  border-radius: 4px;
528
528
  border: 1px solid $ac-label-text;
529
- font-size: $font-size-small;
529
+ font-size: 13px;
530
530
 
531
531
  .file-cta {
532
532
  background-color: transparent;
@@ -534,28 +534,28 @@
534
534
  }
535
535
 
536
536
  &:hover {
537
- border-color: $ac-gray-lightest;
537
+ border-color: $black-80;
538
538
  }
539
539
 
540
540
  &.bg-white {
541
- background-color: $ac-white;
541
+ background-color: $white-100;
542
542
  }
543
543
 
544
544
  &:focus {
545
- border: 1px solid $ac-primary;
545
+ border: 1px solid $primary;
546
546
  outline: none;
547
- background-color: $ac-white;
547
+ background-color: $white-100;
548
548
  }
549
549
  }
550
550
  }
551
551
 
552
552
  input#captcha {
553
- background-color: $ac-white;
553
+ background-color: $white-100;
554
554
  height: 36px;
555
555
  font-weight: 400;
556
556
  width: 100%;
557
557
  border-radius: 4px;
558
- border: 1px solid $ac-white-light;
558
+ border: 1px solid $primary-90;
559
559
  padding: 8px 15px;
560
560
  font-size: 13px;
561
561
  transition: background-color 0.3s ease-in-out;
@@ -575,39 +575,39 @@ input#captcha {
575
575
  .is-checkradio[type="checkbox"].ac-checkbox + label::before {
576
576
  height: 16px;
577
577
  width: 16px;
578
- background-color: $ac-white-light;
578
+ background-color: $primary-90;
579
579
  }
580
580
 
581
581
  .is-checkradio[type="checkbox"].ac-checkbox:checked + label::before {
582
- background-color: $ac-primary;
583
- border-color: $ac-primary;
582
+ background-color: $primary;
583
+ border-color: $primary;
584
584
  }
585
585
 
586
586
  .is-checkradio[type="checkbox"].ac-checkbox + label::after {
587
587
  top: 6px;
588
588
  left: 6px;
589
- border-color: $ac-gray-lightest;
589
+ border-color: $black-80;
590
590
  width: 0.3rem;
591
591
  height: 0.5rem;
592
592
  }
593
593
 
594
594
  .is-checkradio[type="checkbox"].ac-checkbox:checked + label::after {
595
- border-color: $ac-white;
595
+ border-color: $white-100;
596
596
  }
597
597
 
598
598
  .is-checkradio[type="checkbox"].ac-checkbox + label {
599
- color: $ac-color-text;
599
+ color: $primary-10;
600
600
  font-size: 13px !important;
601
601
  padding-left: 25px;
602
602
  user-select: none;
603
603
  }
604
604
 
605
605
  .is-checkradio[type="checkbox"].ac-checkbox:checked + label {
606
- color: $ac-primary !important;
606
+ color: $primary !important;
607
607
  }
608
608
 
609
609
  .is-checkradio[type="checkbox"].ac-checkbox + label {
610
- color: $ac-color-text;
610
+ color: $primary-10;
611
611
  font-size: 13px;
612
612
  padding-left: 25px;
613
613
  user-select: none;
@@ -622,7 +622,7 @@ input#captcha {
622
622
  .ac-single-radio {
623
623
  &.is-selected {
624
624
  .is-checkradio[type="radio"].ac-radio + label {
625
- color: $ac-primary;
625
+ color: $primary;
626
626
  }
627
627
  }
628
628
  }
@@ -638,7 +638,7 @@ input#captcha {
638
638
  user-select: none;
639
639
  font-size: 13px;
640
640
  font-weight: 400;
641
- color: $ac-color-text;
641
+ color: $primary-10;
642
642
 
643
643
  &::before {
644
644
  background-color: #cad3df;
@@ -689,27 +689,27 @@ input#captcha {
689
689
 
690
690
  &.ac-switch {
691
691
  &.is-primary {
692
- @include ac-switch($ac-primary);
692
+ @include ac-switch($primary);
693
693
  }
694
694
 
695
695
  &.is-link {
696
- @include ac-switch($ac-blue);
696
+ @include ac-switch($info);
697
697
  }
698
698
 
699
699
  &.is-info {
700
- @include ac-switch($ac-info);
700
+ @include ac-switch($info);
701
701
  }
702
702
 
703
703
  &.is-success {
704
- @include ac-switch($ac-success);
704
+ @include ac-switch($success);
705
705
  }
706
706
 
707
707
  &.is-warning {
708
- @include ac-switch($ac-warning);
708
+ @include ac-switch($warning);
709
709
  }
710
710
 
711
711
  &.is-danger {
712
- @include ac-switch($ac-danger);
712
+ @include ac-switch($danger);
713
713
  }
714
714
  }
715
715
  }
@@ -738,8 +738,8 @@ input#captcha {
738
738
  background-color: transparent;
739
739
  font-size: 18px;
740
740
  font-weight: 400;
741
- font-family: $ac-family-heading;
742
- color: $ac-color-value;
741
+ font-family: $font-heading;
742
+ color: $primary-20;
743
743
  width: 100%;
744
744
  padding: 5px 0;
745
745
 
@@ -759,18 +759,18 @@ input#captcha {
759
759
  padding: 0.3rem 0.5rem 0.2rem 1.5rem;
760
760
 
761
761
  &::after {
762
- background-color: $ac-primary;
762
+ background-color: $primary;
763
763
  width: 16px;
764
764
  height: 16px;
765
765
  top: 5px;
766
766
  }
767
767
 
768
768
  &:after {
769
- background-color: $ac-primary;
769
+ background-color: $primary;
770
770
  }
771
771
 
772
772
  &:before {
773
- border-color: $ac-primary;
773
+ border-color: $primary;
774
774
  width: 16px;
775
775
  height: 16px;
776
776
  top: 5px;
@@ -781,7 +781,7 @@ input#captcha {
781
781
  &:not([disabled]) {
782
782
  & + label {
783
783
  &:before {
784
- border-color: $ac-primary !important;
784
+ border-color: $primary !important;
785
785
  }
786
786
  }
787
787
  }
@@ -790,7 +790,7 @@ input#captcha {
790
790
 
791
791
  .is-checkradio[type="radio"]:checked {
792
792
  & + label {
793
- color: $ac-primary;
793
+ color: $primary;
794
794
  }
795
795
  }
796
796
  }
@@ -820,22 +820,22 @@ Responsive Classes
820
820
  .ac-single-input {
821
821
  input {
822
822
  height: 36px;
823
- font-size: $font-size-small;
823
+ font-size: 13px;
824
824
  font-weight: 400;
825
825
  }
826
826
 
827
827
  label {
828
828
  top: 9px;
829
- font-size: $font-size-small;
829
+ font-size: 13px;
830
830
 
831
831
  &.show-label {
832
832
  top: -9px;
833
- font-size: $font-size-extra-small;
833
+ font-size: 12px;
834
834
  }
835
835
  }
836
836
 
837
837
  textarea {
838
- font-size: $font-size-small;
838
+ font-size: 13px;
839
839
  }
840
840
 
841
841
  span {
@@ -854,7 +854,7 @@ Responsive Classes
854
854
  .ac-file-upload {
855
855
  label {
856
856
  height: 36px;
857
- font-size: $font-size-small;
857
+ font-size: 13px;
858
858
  }
859
859
  }
860
860
  }
@@ -47,28 +47,28 @@
47
47
 
48
48
  .ac-modal-inner {
49
49
  margin: 0 auto;
50
- background-color: $ac-white;
50
+ background-color: $white-100;
51
51
  border-radius: 4px;
52
52
  overflow: hidden;
53
53
  box-shadow: 12px 26px 118px rgba(0, 0, 0, 0.16);
54
54
 
55
55
  .ac-modal-header {
56
- background-color: $ac-white;
56
+ background-color: $white-100;
57
57
  padding: 10px 20px;
58
58
  display: flex;
59
59
  align-items: center;
60
60
  justify-content: space-between;
61
- border: 1px solid $ac-white-light;
61
+ border: 1px solid $primary-90;
62
62
 
63
63
  h6 {
64
- color: $ac-color-text;
64
+ color: $primary-10;
65
65
  }
66
66
 
67
67
  .ms-close-button {
68
68
  button {
69
69
  cursor: pointer;
70
70
  padding: 3px 5px;
71
- color: $ac-color-text;
71
+ color: $primary-10;
72
72
  }
73
73
  }
74
74
  }
@@ -94,9 +94,9 @@
94
94
  }
95
95
 
96
96
  &.is-description {
97
- font-family: $ac-family-heading;
97
+ font-family: $font-heading;
98
98
  font-weight: 400;
99
- color: $ac-color-value;
99
+ color: $primary-20;
100
100
 
101
101
  strong {
102
102
  font-weight: 500;
@@ -108,7 +108,7 @@
108
108
  }
109
109
 
110
110
  .ac-modal-footer {
111
- border-top: 1px solid $ac-white-light;
111
+ border-top: 1px solid $primary-90;
112
112
  padding: 10px 20px;
113
113
  }
114
114
  }