@appscode/design-system 1.1.0-alpha.8 → 1.1.0-beta.10

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 (200) hide show
  1. package/base/_video-player.scss +65 -0
  2. package/base/utilities/_all.scss +6 -5
  3. package/base/utilities/_colors.scss +408 -0
  4. package/base/utilities/_customize-bulma.scss +23 -27
  5. package/base/utilities/_extended.scss +9 -4
  6. package/base/utilities/{_default.scss → _global.scss} +185 -331
  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 +0 -597
  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 +477 -452
  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 +29 -26
  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 +5 -5
  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 +557 -559
  55. package/components/ac-toaster/_ac-toasted.scss +7 -12
  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 +515 -2
  67. package/layouts/_code-preview.scss +11 -11
  68. package/main.scss +26 -10
  69. package/package.json +1 -1
  70. package/plugins/theme.js +11 -9
  71. package/plugins/vue-toaster.js +1 -1
  72. package/vue-components/plugins/time-convert.js +49 -0
  73. package/vue-components/text.vue +1 -0
  74. package/vue-components/types/cluster.ts +6 -0
  75. package/vue-components/types/importFlow.ts +16 -0
  76. package/vue-components/types/longRunningTasks.ts +20 -0
  77. package/vue-components/types/notification.ts +6 -0
  78. package/vue-components/types/previewYaml.ts +8 -0
  79. package/vue-components/types/table.ts +54 -0
  80. package/vue-components/types/theme.ts +10 -0
  81. package/vue-components/types/user.ts +22 -0
  82. package/vue-components/v2/card/Card.vue +1 -1
  83. package/vue-components/v2/card/OverviewCards.vue +17 -2
  84. package/vue-components/v2/editor/FilteredFileEditor.vue +2 -2
  85. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +21 -21
  86. package/vue-components/v2/icons/Ellipsis.vue +2 -1
  87. package/vue-components/v2/modal/Modal.vue +0 -5
  88. package/vue-components/v2/navbar/Appdrawer.vue +37 -12
  89. package/vue-components/v2/navbar/Navbar.vue +3 -3
  90. package/vue-components/v2/navbar/NavbarItem.vue +3 -1
  91. package/vue-components/v2/navbar/NavbarItemContent.vue +1 -1
  92. package/vue-components/v2/navbar/User.vue +5 -22
  93. package/vue-components/v2/pagination/Pagination.vue +66 -0
  94. package/vue-components/v2/sidebar/SidebarItem.vue +10 -7
  95. package/vue-components/v3/accordion/Accordion.vue +151 -0
  96. package/vue-components/v3/alert/Alert.vue +238 -0
  97. package/vue-components/v3/alert/Toast.vue +79 -0
  98. package/vue-components/v3/banner/Banner.vue +10 -0
  99. package/vue-components/v3/breadcrumbs/Breadcrumb.vue +104 -0
  100. package/vue-components/v3/button/Button.vue +839 -58
  101. package/vue-components/v3/button/Buttons.vue +6 -0
  102. package/vue-components/v3/button/DownloadBtn.vue +31 -0
  103. package/vue-components/v3/cards/Card.vue +32 -0
  104. package/vue-components/v3/cards/CardContent.vue +7 -0
  105. package/vue-components/v3/cards/CardHeader.vue +14 -0
  106. package/vue-components/v3/cards/Cards.vue +7 -0
  107. package/vue-components/v3/cards/Cluster.vue +149 -0
  108. package/vue-components/v3/cards/Counter.vue +39 -0
  109. package/vue-components/v3/cards/FeatureCard.vue +71 -0
  110. package/vue-components/v3/cards/FeatureCards.vue +6 -0
  111. package/vue-components/v3/cards/InfoCard.vue +243 -0
  112. package/vue-components/v3/cards/Monitoring.vue +94 -0
  113. package/vue-components/v3/cards/OverviewCard.vue +24 -0
  114. package/vue-components/v3/cards/OverviewCards.vue +31 -0
  115. package/vue-components/v3/cards/Payment.vue +62 -0
  116. package/vue-components/v3/cards/Vendor.vue +85 -0
  117. package/vue-components/v3/content/ContentHeader.vue +39 -30
  118. package/vue-components/v3/content/ContentLayout.vue +20 -0
  119. package/vue-components/v3/content/ContentTable.vue +43 -62
  120. package/vue-components/v3/dropdown/DropdownDivider.vue +2 -0
  121. package/vue-components/v3/dropdown/DropdownItem.vue +2 -0
  122. package/vue-components/v3/dropdown/DropdownMenu.vue +85 -91
  123. package/vue-components/v3/editor/Editor.vue +100 -113
  124. package/vue-components/v3/editor/FilteredFileEditor.vue +317 -127
  125. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +70 -94
  126. package/vue-components/v3/footer/FooterArea.vue +34 -0
  127. package/vue-components/v3/footer/FooterItem.vue +32 -0
  128. package/vue-components/v3/footer/FooterItems.vue +15 -0
  129. package/vue-components/v3/footer/Info.vue +23 -0
  130. package/vue-components/v3/footer/Status.vue +42 -0
  131. package/vue-components/v3/footer/Usage.vue +44 -0
  132. package/vue-components/v3/form/Form.vue +24 -33
  133. package/vue-components/v3/form/FormFooterControl.vue +7 -0
  134. package/vue-components/v3/form/FormFooterControls.vue +7 -0
  135. package/vue-components/v3/form-fields/AcSingleInput.vue +528 -0
  136. package/vue-components/v3/form-fields/Input.vue +19 -14
  137. package/vue-components/v3/header/Header.vue +119 -25
  138. package/vue-components/v3/header/HeaderItem.vue +18 -0
  139. package/vue-components/v3/header/HeaderItems.vue +4 -0
  140. package/vue-components/v3/icons/Ellipsis.vue +2 -0
  141. package/vue-components/v3/loaders/InfoCardLoader.vue +65 -0
  142. package/vue-components/v3/loaders/ResourceLoader.vue +4 -12
  143. package/vue-components/v3/loaders/SidebarLoader.vue +4 -12
  144. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +17 -15
  145. package/vue-components/v3/modal/Modal.vue +292 -96
  146. package/vue-components/v3/modals/DeleteConfirmationModal.vue +37 -50
  147. package/vue-components/v3/modals/JsonShowModal.vue +62 -68
  148. package/vue-components/v3/modals/LongRunningTasksModal.vue +145 -143
  149. package/vue-components/v3/navbar/Appdrawer.vue +196 -51
  150. package/vue-components/v3/navbar/Navbar.vue +298 -0
  151. package/vue-components/v3/navbar/NavbarItem.vue +81 -0
  152. package/vue-components/v3/navbar/NavbarItemContent.vue +284 -0
  153. package/vue-components/v3/navbar/Notification.vue +179 -0
  154. package/vue-components/v3/navbar/ThemeMode.vue +128 -112
  155. package/vue-components/v3/navbar/User.vue +383 -268
  156. package/vue-components/v3/notification/AlertBox.vue +41 -44
  157. package/vue-components/v3/notification/Notification.vue +49 -43
  158. package/vue-components/v3/notification/NotificationItem.vue +51 -19
  159. package/vue-components/v3/option-dots/Options.vue +188 -0
  160. package/vue-components/v3/pagination/Pagination.vue +203 -99
  161. package/vue-components/v3/preloader/Preloader.vue +23 -0
  162. package/vue-components/v3/searchbars/SearchBar.vue +59 -34
  163. package/vue-components/v3/sidebar/AccentColorPicker.vue +97 -0
  164. package/vue-components/v3/sidebar/ClusterSwitcher.vue +835 -81
  165. package/vue-components/v3/sidebar/Sidebar.vue +267 -0
  166. package/vue-components/v3/sidebar/SidebarBody.vue +7 -0
  167. package/vue-components/v3/sidebar/SidebarFooter.vue +80 -0
  168. package/vue-components/v3/sidebar/SidebarHeader.vue +124 -0
  169. package/vue-components/v3/sidebar/SidebarItem.vue +62 -0
  170. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +101 -104
  171. package/vue-components/v3/sidebar/SidebarMenuList.vue +9 -0
  172. package/vue-components/v3/sidebar/Steps.vue +152 -0
  173. package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabs.vue +128 -0
  174. package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabsLayout.vue +29 -0
  175. package/vue-components/v3/sidebar/sidebar-tabs/TabsContent.vue +99 -0
  176. package/vue-components/v3/tab/TabItem.vue +10 -12
  177. package/vue-components/v3/tab/Tabs.vue +9 -0
  178. package/vue-components/v3/tab/TabsBody.vue +7 -0
  179. package/vue-components/v3/table/EmptyTableInfo.vue +8 -0
  180. package/vue-components/v3/table/FakeTableCell.vue +22 -31
  181. package/vue-components/v3/table/InfoTable.vue +89 -61
  182. package/vue-components/v3/table/MultiInfoTable.vue +72 -95
  183. package/vue-components/v3/table/Table.vue +589 -151
  184. package/vue-components/v3/table/TableCell.vue +20 -23
  185. package/vue-components/v3/table/TableContainer.vue +50 -28
  186. package/vue-components/v3/table/TableRow.vue +63 -85
  187. package/vue-components/v3/table/table-cell/ArrayCell.vue +67 -79
  188. package/vue-components/v3/table/table-cell/CellValue.vue +97 -103
  189. package/vue-components/v3/table/table-cell/GenericCell.vue +43 -42
  190. package/vue-components/v3/table/table-cell/ObjectCell.vue +67 -79
  191. package/vue-components/v3/table/table-cell/ValueWithModal.vue +22 -31
  192. package/vue-components/v3/tabs/EditorTabs.vue +18 -24
  193. package/vue-components/v3/tag/Tag.vue +15 -12
  194. package/vue-components/v3/tag/Tags.vue +7 -0
  195. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +26 -23
  196. package/base/utilities/_derived-variables.scss +0 -25
  197. package/base/utilities/_initial-variables.scss +0 -215
  198. package/components/_basic-card.scss +0 -124
  199. package/mixins/stickyContent.js +0 -141
  200. package/plugins/caching.ts +0 -243
@@ -1,112 +1,112 @@
1
- .single-wizard-section {
2
- padding: 20px;
3
- background-color: $ac-white;
4
- border: 1px solid $ac-white-light;
5
- border-radius: 4px;
6
- }
7
-
8
- .wizard-description {
9
- font-family: $ac-family-paragraph;
10
- font-style: normal;
11
- font-weight: normal;
12
- font-size: $font-size-small;
13
- line-height: 100%;
14
- color: $ac-color-text;
15
- margin-bottom: 10px;
16
- }
1
+ // .single-wizard-section {
2
+ // padding: 20px;
3
+ // background-color: $white-100;
4
+ // border: 1px solid $primary-90;
5
+ // border-radius: 4px;
6
+ // }
7
+
8
+ // .wizard-description {
9
+ // font-family: $font-paragraph;
10
+ // font-style: normal;
11
+ // font-weight: normal;
12
+ // font-size: 13px;
13
+ // line-height: 100%;
14
+ // color: $primary-10;
15
+ // margin-bottom: 10px;
16
+ // }
17
17
 
18
18
  // label action start
19
- .label-action {
20
- align-items: center;
21
- height: 21px;
22
-
23
- .ac-single-input {
24
- label {
25
- margin-top: 2px;
26
- }
27
- }
28
-
29
- button:not(.is-text) {
30
- opacity: 0;
31
- visibility: hidden;
32
- transition: 0.3s ease-in-out;
33
-
34
- img {
35
- width: 15px;
36
- }
37
-
38
- &.label-icon {
39
- border: none;
40
- background-color: transparent;
41
- cursor: pointer;
42
- padding: 0;
43
- transition: 0.3s ease-in-out;
44
-
45
- &:hover {
46
- opacity: 0.8;
47
- }
48
- }
49
- }
50
-
51
- &:hover {
52
- button {
53
- opacity: 1;
54
- visibility: visible;
55
- }
56
- }
57
-
58
- .ms-close-button,
59
- .ac-modal-footer {
60
- .buttons {
61
- button {
62
- opacity: 1;
63
- visibility: visible;
64
-
65
- &:hover {
66
- opacity: 0.7;
67
- }
68
- }
69
- }
70
- }
71
-
72
- .label-icon {
73
- display: flex;
74
- align-items: center;
75
- margin-right: 10px;
76
-
77
- img {
78
- width: 16px;
79
- }
80
- }
81
-
82
- strong {
83
- font-family: $ac-family-paragraph;
84
- font-style: normal;
85
- font-weight: 500;
86
- font-size: $font-size-small;
87
- line-height: 16px;
88
- color: $ac-color-text;
89
- margin-right: 16px;
90
- }
91
- }
19
+ // .label-action {
20
+ // align-items: center;
21
+ // height: 21px;
22
+
23
+ // .ac-single-input {
24
+ // label {
25
+ // margin-top: 2px;
26
+ // }
27
+ // }
28
+
29
+ // button:not(.is-text) {
30
+ // opacity: 0;
31
+ // visibility: hidden;
32
+ // transition: 0.3s ease-in-out;
33
+
34
+ // img {
35
+ // width: 15px;
36
+ // }
37
+
38
+ // &.label-icon {
39
+ // border: none;
40
+ // background-color: transparent;
41
+ // cursor: pointer;
42
+ // padding: 0;
43
+ // transition: 0.3s ease-in-out;
44
+
45
+ // &:hover {
46
+ // opacity: 0.8;
47
+ // }
48
+ // }
49
+ // }
50
+
51
+ // &:hover {
52
+ // button {
53
+ // opacity: 1;
54
+ // visibility: visible;
55
+ // }
56
+ // }
57
+
58
+ // .ms-close-button,
59
+ // .ac-modal-footer {
60
+ // .buttons {
61
+ // button {
62
+ // opacity: 1;
63
+ // visibility: visible;
64
+
65
+ // &:hover {
66
+ // opacity: 0.7;
67
+ // }
68
+ // }
69
+ // }
70
+ // }
71
+
72
+ // .label-icon {
73
+ // display: flex;
74
+ // align-items: center;
75
+ // margin-right: 10px;
76
+
77
+ // img {
78
+ // width: 16px;
79
+ // }
80
+ // }
81
+
82
+ // strong {
83
+ // font-family: $font-paragraph;
84
+ // font-style: normal;
85
+ // font-weight: 500;
86
+ // font-size: 13px;
87
+ // line-height: 16px;
88
+ // color: $primary-10;
89
+ // margin-right: 16px;
90
+ // }
91
+ // }
92
92
 
93
93
  // label action end
94
94
  // key-value-button start
95
- .key-value-button {
96
- display: grid;
97
- grid-template-columns: calc(50% - 83px) 10px calc(50% - 82px) 110px;
98
- grid-gap: 15px;
99
-
100
- .ac-single-input {
101
- margin-bottom: 0;
102
- }
103
-
104
- .lable-colone {
105
- font-size: 30px;
106
- font-weight: 500;
107
- line-height: 1.1;
108
- }
109
- }
95
+ // .key-value-button {
96
+ // display: grid;
97
+ // grid-template-columns: calc(50% - 83px) 10px calc(50% - 82px) 110px;
98
+ // grid-gap: 15px;
99
+
100
+ // .ac-single-input {
101
+ // margin-bottom: 0;
102
+ // }
103
+
104
+ // .lable-colone {
105
+ // font-size: 30px;
106
+ // font-weight: 500;
107
+ // line-height: 1.1;
108
+ // }
109
+ // }
110
110
 
111
111
  // key-value-button end
112
112
 
@@ -114,8 +114,8 @@
114
114
  .card-select {
115
115
  height: 94px;
116
116
  padding: 10px;
117
- background-color: $ac-white;
118
- border: 1px solid $ac-white-light;
117
+ background-color: $white-100;
118
+ border: 1px solid $primary-90;
119
119
  box-sizing: border-box;
120
120
  border-radius: 4px;
121
121
  transition: 0.3s ease-in-out;
@@ -154,36 +154,38 @@
154
154
  background-color: transparent;
155
155
  width: auto;
156
156
  margin-bottom: 0;
157
+
157
158
  label {
158
159
  font-weight: 400 !important;
159
160
  }
161
+
160
162
  &:hover {
161
163
  box-shadow: none;
162
164
  border: none;
163
165
 
164
166
  label {
165
- color: $ac-primary !important;
167
+ color: $primary !important;
166
168
  }
167
169
  }
168
170
 
169
171
  .ac-single-radio,
170
172
  .ac-single-checkbox {
171
173
  label {
172
- font-size: $font-size-small;
174
+ font-size: 13px;
173
175
  line-height: 20px;
174
- color: $ac-color-heading;
176
+ color: $primary-5;
175
177
  padding-left: 25px !important;
176
178
  }
177
179
 
178
- .is-checkradio[type="checkbox"].ac-checkbox + label::before,
179
- .is-checkradio[type="radio"] + label:before,
180
- .is-checkradio[type="radio"] + label:after {
180
+ .is-checkradio[type="checkbox"].ac-checkbox+label::before,
181
+ .is-checkradio[type="radio"]+label:before,
182
+ .is-checkradio[type="radio"]+label:after {
181
183
  width: 16px;
182
184
  height: 16px;
183
185
  top: 3px;
184
186
  }
185
187
 
186
- .is-checkradio[type="checkbox"].ac-checkbox + label::after {
188
+ .is-checkradio[type="checkbox"].ac-checkbox+label::after {
187
189
  left: 5px;
188
190
  }
189
191
  }
@@ -192,13 +194,13 @@
192
194
  background-color: transparent;
193
195
 
194
196
  label {
195
- color: $ac-color-text;
197
+ color: $primary-10;
196
198
  cursor: not-allowed;
197
199
  }
198
200
  }
199
201
 
200
- .ac-single-radio .is-checkradio[type="radio"]:checked + label {
201
- color: $ac-primary;
202
+ .ac-single-radio .is-checkradio[type="radio"]:checked+label {
203
+ color: $primary;
202
204
  }
203
205
 
204
206
  .ac-single-radio {
@@ -207,7 +209,7 @@
207
209
  }
208
210
 
209
211
  &.is-disabled {
210
- background-color: $ac-white-lighter;
212
+ background-color: $white-100-lighter;
211
213
  cursor: not-allowed;
212
214
  opacity: 0.8;
213
215
 
@@ -223,7 +225,7 @@
223
225
  }
224
226
 
225
227
  &.is-selected {
226
- border: 1px solid $ac-primary;
228
+ border: 1px solid $primary;
227
229
  }
228
230
 
229
231
  &:last-child {
@@ -269,7 +271,7 @@
269
271
  z-index: 2;
270
272
  right: 10px;
271
273
  top: 10px;
272
- background-color: $ac-white;
274
+ background-color: $white-100;
273
275
  box-shadow: $ac-shadow-2;
274
276
  display: inline-block;
275
277
  border-radius: 4px;
@@ -283,22 +285,22 @@
283
285
  position: absolute;
284
286
  right: -5px;
285
287
  top: -5px;
286
- border: 1px solid $ac-gray-lightest;
288
+ border: 1px solid $black-80;
287
289
  font-size: 10px;
288
290
  height: 25px;
289
291
  width: 25px;
290
292
  text-align: center;
291
- background-color: $ac-white;
293
+ background-color: $white-100;
292
294
  border-radius: 50%;
293
295
  cursor: pointer;
294
- color: $ac-danger;
296
+ color: $danger;
295
297
  transition: 0.3s ease-in-out;
296
298
  display: block;
297
299
 
298
300
  &:hover {
299
- color: $ac-white;
300
- background-color: $ac-danger;
301
- border: 1px solid $ac-danger;
301
+ color: $white-100;
302
+ background-color: $danger;
303
+ border: 1px solid $danger;
302
304
  }
303
305
  }
304
306
 
@@ -308,13 +310,13 @@
308
310
  a {
309
311
  display: block;
310
312
  padding: 5px 10px 5px 0;
311
- color: $ac-color-value;
312
- font-size: $font-size-tiny;
313
+ color: $primary-20;
314
+ font-size: 11px;
313
315
  text-decoration: underline;
314
316
  font-weight: 400;
315
317
 
316
318
  &:hover {
317
- color: $ac-primary;
319
+ color: $primary;
318
320
  }
319
321
  }
320
322
  }
@@ -330,25 +332,25 @@
330
332
  }
331
333
 
332
334
  label {
333
- font-family: $ac-family-heading;
335
+ font-family: $font-heading;
334
336
  font-style: normal;
335
337
  font-weight: 500;
336
- font-size: $font-size-small;
338
+ font-size: 13px;
337
339
  line-height: 24px;
338
- color: $ac-color-heading;
340
+ color: $primary-5;
339
341
  }
340
342
  }
341
343
 
342
344
  p {
343
- font-family: $ac-family-paragraph;
345
+ font-family: $font-paragraph;
344
346
  font-style: normal;
345
347
  font-weight: normal;
346
- font-size: $font-size-small;
348
+ font-size: 13px;
347
349
  line-height: 140%;
348
- color: $ac-color-text;
350
+ color: $primary-10;
349
351
 
350
352
  &.is-warning {
351
- color: $ac-danger;
353
+ color: $danger;
352
354
  }
353
355
 
354
356
  a {
@@ -357,7 +359,7 @@
357
359
  }
358
360
 
359
361
  .ac-single-radio {
360
- .is-checkradio[type="radio"] + label {
362
+ .is-checkradio[type="radio"]+label {
361
363
  padding-left: 25px;
362
364
 
363
365
  &:before {
@@ -376,13 +378,13 @@
376
378
 
377
379
  .ac-single-checkbox {
378
380
  .is-checkradio[type="checkbox"] {
379
- &.ac-checkbox + label {
380
- font-family: $ac-family-heading;
381
+ &.ac-checkbox+label {
382
+ font-family: $font-heading;
381
383
  font-style: normal;
382
384
  font-weight: 500;
383
385
  font-size: 13px;
384
386
  line-height: 20px;
385
- color: $ac-color-heading;
387
+ color: $primary-5;
386
388
  }
387
389
  }
388
390
  }
@@ -391,470 +393,466 @@
391
393
  // select card end
392
394
 
393
395
  // final state start
394
- .ac-final-state {
395
- margin-bottom: 10px;
396
-
397
- &:last-child {
398
- margin-bottom: 0;
399
- }
400
-
401
- .state-left {
402
- h5 {
403
- font-family: $ac-family-paragraph;
404
- font-style: normal;
405
- font-weight: 500;
406
- font-size: $font-size-normal;
407
- line-height: 19px;
408
- color: $ac-color-text;
409
- }
410
-
411
- img {
412
- width: 16px;
413
- margin-left: 10px;
414
- }
415
-
416
- button {
417
- &.ac-button {
418
- opacity: 0;
419
- visibility: hidden;
420
- transition: 0.3s ease-in-out;
421
- }
422
- }
423
- }
424
-
425
- &:hover {
426
- .state-left {
427
- button {
428
- &.ac-button {
429
- opacity: 1;
430
- visibility: visible;
431
- }
432
- }
433
- }
434
- }
435
- }
436
-
437
- .button {
438
- &.ac-button {
439
- &.is-hovered-underline {
440
- transition: 0.3s ease-in-out;
441
-
442
- &:hover {
443
- text-decoration: underline;
444
- }
445
- }
446
- }
447
- }
396
+ // .ac-final-state {
397
+ // margin-bottom: 10px;
398
+
399
+ // &:last-child {
400
+ // margin-bottom: 0;
401
+ // }
402
+
403
+ // .state-left {
404
+ // h5 {
405
+ // font-family: $font-paragraph;
406
+ // font-style: normal;
407
+ // font-weight: 500;
408
+ // font-size: 14px;
409
+ // line-height: 19px;
410
+ // color: $primary-10;
411
+ // }
412
+
413
+ // img {
414
+ // width: 16px;
415
+ // margin-left: 10px;
416
+ // }
417
+
418
+ // button {
419
+ // &.ac-button {
420
+ // opacity: 0;
421
+ // visibility: hidden;
422
+ // transition: 0.3s ease-in-out;
423
+ // }
424
+ // }
425
+ // }
426
+
427
+ // &:hover {
428
+ // .state-left {
429
+ // button {
430
+ // &.ac-button {
431
+ // opacity: 1;
432
+ // visibility: visible;
433
+ // }
434
+ // }
435
+ // }
436
+ // }
437
+ // }
438
+
439
+ // .button {
440
+ // &.ac-button {
441
+ // &.is-hovered-underline {
442
+ // transition: 0.3s ease-in-out;
443
+
444
+ // &:hover {
445
+ // text-decoration: underline;
446
+ // }
447
+ // }
448
+ // }
449
+ // }
448
450
 
449
451
  // final state end
450
452
 
451
- .circle-list-shape {
452
- border: 3px solid $ac-color-text;
453
- border-radius: 50%;
454
- width: 10px;
455
- height: 10px;
456
- margin-right: 10px;
457
- display: inline-block;
458
- }
459
-
460
- .ac-selected-item {
461
- .selected-left {
462
- .item-name {
463
- font-family: $ac-family-paragraph;
464
- font-style: normal;
465
- font-weight: 500;
466
- font-size: $font-size-small;
467
- line-height: 16px;
468
- color: $ac-color-text;
469
- }
470
-
471
- button {
472
- &.ac-button {
473
- opacity: 0;
474
- visibility: hidden;
475
- transition: 0.3s ease-in-out;
476
- }
477
- }
478
- }
479
-
480
- &:hover {
481
- .selected-left {
482
- button {
483
- &.ac-button {
484
- opacity: 1;
485
- visibility: visible;
486
- }
487
- }
488
- }
489
- }
490
- }
453
+ // .circle-list-shape {
454
+ // border: 3px solid $primary-10;
455
+ // border-radius: 50%;
456
+ // width: 10px;
457
+ // height: 10px;
458
+ // margin-right: 10px;
459
+ // display: inline-block;
460
+ // }
461
+
462
+ // .ac-selected-item {
463
+ // .selected-left {
464
+ // .item-name {
465
+ // font-family: $font-paragraph;
466
+ // font-style: normal;
467
+ // font-weight: 500;
468
+ // font-size: 13px;
469
+ // line-height: 16px;
470
+ // color: $primary-10;
471
+ // }
472
+
473
+ // button {
474
+ // &.ac-button {
475
+ // opacity: 0;
476
+ // visibility: hidden;
477
+ // transition: 0.3s ease-in-out;
478
+ // }
479
+ // }
480
+ // }
481
+
482
+ // &:hover {
483
+ // .selected-left {
484
+ // button {
485
+ // &.ac-button {
486
+ // opacity: 1;
487
+ // visibility: visible;
488
+ // }
489
+ // }
490
+ // }
491
+ // }
492
+ // }
491
493
 
492
494
  // key button start
493
- .key-button {
494
- display: grid;
495
- grid-template-columns: calc(100% - 135px) 120px;
496
- grid-gap: 15px;
497
- }
495
+ // .key-button {
496
+ // display: grid;
497
+ // grid-template-columns: calc(100% - 135px) 120px;
498
+ // grid-gap: 15px;
499
+ // }
498
500
 
499
501
  // key button end
500
502
 
501
503
  // certificate section start
502
- .ac-certificate-area {
503
- box-shadow: $ac-shadow-1;
504
- border-radius: 4px;
505
- background-color: $ac-white;
506
-
507
- .list-items {
508
- padding: 10px;
509
- border-bottom: 1px solid $ac-white-light;
510
-
511
- &:last-child {
512
- border-bottom: none;
513
- }
514
-
515
- &.t-title {
516
- background-color: $table-header;
517
- border-radius: 4px 4px 0px 0px;
518
- border-bottom: none;
519
-
520
- li {
521
- font-weight: 500;
522
- color: $ac-color-heading;
523
- }
524
- }
525
-
526
- li {
527
- width: 20%;
528
- font-family: $ac-family-paragraph;
529
- font-style: normal;
530
- font-weight: normal;
531
- font-size: $font-size-small;
532
- line-height: 16px;
533
- color: $ac-color-text;
534
- display: flex;
535
- align-items: center;
536
-
537
- &:last-child {
538
- justify-content: flex-end;
539
- }
540
- }
541
- }
542
- }
543
-
544
- .ac-certificate-info {
545
- padding: 10px 15px;
546
- background-color: $ac-bg-light-gray;
547
- border-radius: 4px;
548
-
549
- .single-name-title {
550
- margin-bottom: 25px;
551
- width: calc(100% - 140px);
552
-
553
- &.has-single-button {
554
- width: calc(100% - 50px);
555
- }
556
-
557
- &:last-child {
558
- margin-bottom: 0;
559
- }
560
-
561
- label:not(.wizard-title) {
562
- font-family: $ac-family-paragraph;
563
- font-style: normal;
564
- font-weight: normal;
565
- font-size: $font-size-small;
566
- line-height: 18px;
567
- display: block;
568
- color: $ac-color-text;
569
- margin-bottom: 5px;
570
- }
571
- }
572
-
573
- .wizard-title,
574
- .wizard-title.has-line {
575
- span {
576
- background-color: $ac-label-text;
577
- }
578
- }
579
-
580
- button.button.ac-button.is-square.is-white {
581
- background-color: $ac-white;
582
-
583
- &:hover {
584
- background-color: $ac-white-light;
585
- }
586
- }
587
-
588
- .line-title {
589
- span {
590
- background-color: $ac-bg-light-gray;
591
- }
592
- }
593
- }
594
-
595
- .ac-unordered-list-items {
596
- li {
597
- display: flex;
598
- align-items: center;
599
- margin-bottom: 10px;
600
-
601
- &:last-child {
602
- margin-bottom: 0;
603
- }
604
-
605
- strong {
606
- font-family: $ac-family-paragraph;
607
- font-style: normal;
608
- font-weight: 500;
609
- font-size: $font-size-small;
610
- line-height: 16px;
611
- display: flex;
612
- align-items: center;
613
-
614
- /* Gray 1 */
615
-
616
- color: $ac-color-text;
617
- }
618
- }
619
- }
504
+ // .ac-certificate-area {
505
+ // box-shadow: $ac-shadow-1;
506
+ // border-radius: 4px;
507
+ // background-color: $white-100;
508
+
509
+ // .list-items {
510
+ // padding: 10px;
511
+ // border-bottom: 1px solid $primary-90;
512
+
513
+ // &:last-child {
514
+ // border-bottom: none;
515
+ // }
516
+
517
+ // &.t-title {
518
+ // background-color: $table-header;
519
+ // border-radius: 4px 4px 0px 0px;
520
+ // border-bottom: none;
521
+
522
+ // li {
523
+ // font-weight: 500;
524
+ // color: $primary-5;
525
+ // }
526
+ // }
527
+
528
+ // li {
529
+ // width: 20%;
530
+ // font-family: $font-paragraph;
531
+ // font-style: normal;
532
+ // font-weight: normal;
533
+ // font-size: 13px;
534
+ // line-height: 16px;
535
+ // color: $primary-10;
536
+ // display: flex;
537
+ // align-items: center;
538
+
539
+ // &:last-child {
540
+ // justify-content: flex-end;
541
+ // }
542
+ // }
543
+ // }
544
+ // }
545
+
546
+ // .ac-certificate-info {
547
+ // padding: 10px 15px;
548
+ // background-color: $black-60;
549
+ // border-radius: 4px;
550
+
551
+ // .single-name-title {
552
+ // margin-bottom: 25px;
553
+ // width: calc(100% - 140px);
554
+
555
+ // &.has-single-button {
556
+ // width: calc(100% - 50px);
557
+ // }
558
+
559
+ // &:last-child {
560
+ // margin-bottom: 0;
561
+ // }
562
+
563
+ // label:not(.wizard-title) {
564
+ // font-family: $font-paragraph;
565
+ // font-style: normal;
566
+ // font-weight: normal;
567
+ // font-size: 13px;
568
+ // line-height: 18px;
569
+ // display: block;
570
+ // color: $primary-10;
571
+ // margin-bottom: 5px;
572
+ // }
573
+ // }
574
+
575
+ // .wizard-title,
576
+ // .wizard-title.has-line {
577
+ // span {
578
+ // background-color: $ac-label-text;
579
+ // }
580
+ // }
581
+
582
+ // button.button.ac-button.is-square.is-white {
583
+ // background-color: $white-100;
584
+
585
+ // &:hover {
586
+ // background-color: $primary-90;
587
+ // }
588
+ // }
589
+
590
+ // .line-title {
591
+ // span {
592
+ // background-color: $black-60;
593
+ // }
594
+ // }
595
+ // }
596
+
597
+ // .ac-unordered-list-items {
598
+ // li {
599
+ // display: flex;
600
+ // align-items: center;
601
+ // margin-bottom: 10px;
602
+
603
+ // &:last-child {
604
+ // margin-bottom: 0;
605
+ // }
606
+
607
+ // strong {
608
+ // font-family: $font-paragraph;
609
+ // font-style: normal;
610
+ // font-weight: 500;
611
+ // font-size: 13px;
612
+ // line-height: 16px;
613
+ // display: flex;
614
+ // align-items: center;
615
+
616
+ // /* Gray 1 */
617
+
618
+ // color: $primary-10;
619
+ // }
620
+ // }
621
+ // }
620
622
 
621
623
  // certificate section end
622
624
 
623
625
  // wizard title start
624
- h1,
625
- h2,
626
- h3,
627
- h4,
628
- h5,
629
- h6,
630
- label {
631
- &.wizard-title {
632
- margin-bottom: 15px;
633
- position: relative;
634
- z-index: 1;
635
- display: inline-block;
636
-
637
- &.has-line {
638
- position: relative;
639
- z-index: 1;
640
- display: block;
641
-
642
- span {
643
- background-color: $ac-white;
644
- padding-right: 8px;
645
- }
646
-
647
- &:after {
648
- position: absolute;
649
- content: "";
650
- left: 0;
651
- top: 50%;
652
- margin-top: -0.5px;
653
- width: 100%;
654
- height: 1px;
655
- background-color: $ac-blue-light;
656
- z-index: -1;
657
- }
658
- }
659
-
660
- span.inline-description {
661
- font-family: $ac-family-paragraph;
662
- font-style: normal;
663
- font-weight: normal;
664
- font-size: $font-size-extra-small;
665
- line-height: 160%;
666
- color: $ac-color-text;
667
- transform: translate(5px, -2px);
668
- display: inline-block;
669
- }
670
-
671
- .is-required {
672
- display: inline-block;
673
- width: 10px;
674
- text-align: center;
675
- line-height: 4px;
676
- transform: translateY(-3px);
677
- }
678
-
679
- .button {
680
- &.is-information {
681
- background-color: transparent;
682
- padding: 0;
683
- height: auto;
684
- padding: 4px;
685
- border: none;
686
- z-index: 99;
687
- height: 30px;
688
- width: 30px;
689
- margin-top: -4px;
690
-
691
- &:focus {
692
- box-shadow: none;
693
- box-shadow: none;
694
- background-color: #cbe3f8;
695
- border-radius: 50%;
696
- }
697
- }
698
- }
699
- }
700
- }
701
-
702
- button {
703
- &.is-information {
704
- padding: 4px;
705
- height: 30px;
706
- width: 30px;
707
- margin-left: 5px;
708
- margin-top: -4px;
709
-
710
- &:focus {
711
- border: none;
712
- box-shadow: none;
713
- background-color: #cbe3f8;
714
- border-radius: 50%;
715
- }
716
- }
717
- }
718
-
719
- h5 {
720
- &.wizard-title {
721
- color: $ac-color-text;
722
-
723
- .is-required {
724
- transform: translateY(-2px);
725
- }
726
- }
727
- }
626
+ // h1,
627
+ // h2,
628
+ // h3,
629
+ // h4,
630
+ // h5,
631
+ // h6,
632
+ // label {
633
+ // &.wizard-title {
634
+ // margin-bottom: 15px;
635
+ // position: relative;
636
+ // z-index: 1;
637
+ // display: inline-block;
638
+
639
+ // &.has-line {
640
+ // position: relative;
641
+ // z-index: 1;
642
+ // display: block;
643
+
644
+ // span {
645
+ // background-color: $white-100;
646
+ // padding-right: 8px;
647
+ // }
648
+
649
+ // &:after {
650
+ // position: absolute;
651
+ // content: "";
652
+ // left: 0;
653
+ // top: 50%;
654
+ // margin-top: -0.5px;
655
+ // width: 100%;
656
+ // height: 1px;
657
+ // background-color: $info-light;
658
+ // z-index: -1;
659
+ // }
660
+ // }
661
+
662
+ // span.inline-description {
663
+ // font-family: $font-paragraph;
664
+ // font-style: normal;
665
+ // font-weight: normal;
666
+ // font-size: 12px;
667
+ // line-height: 160%;
668
+ // color: $primary-10;
669
+ // transform: translate(5px, -2px);
670
+ // display: inline-block;
671
+ // }
672
+
673
+ // .is-required {
674
+ // display: inline-block;
675
+ // width: 10px;
676
+ // text-align: center;
677
+ // line-height: 4px;
678
+ // transform: translateY(-3px);
679
+ // }
680
+
681
+ // .button {
682
+ // &.is-information {
683
+ // background-color: transparent;
684
+ // padding: 0;
685
+ // height: auto;
686
+ // padding: 4px;
687
+ // border: none;
688
+ // z-index: 99;
689
+ // height: 30px;
690
+ // width: 30px;
691
+ // margin-top: -4px;
692
+
693
+ // &:focus {
694
+ // box-shadow: none;
695
+ // box-shadow: none;
696
+ // background-color: #cbe3f8;
697
+ // border-radius: 50%;
698
+ // }
699
+ // }
700
+ // }
701
+ // }
702
+ // }
703
+
704
+ // button {
705
+ // &.is-information {
706
+ // padding: 4px;
707
+ // height: 30px;
708
+ // width: 30px;
709
+ // margin-left: 5px;
710
+ // margin-top: -4px;
711
+
712
+ // &:focus {
713
+ // border: none;
714
+ // box-shadow: none;
715
+ // background-color: #cbe3f8;
716
+ // border-radius: 50%;
717
+ // }
718
+ // }
719
+ // }
720
+
721
+ // h5 {
722
+ // &.wizard-title {
723
+ // color: $primary-10;
724
+
725
+ // .is-required {
726
+ // transform: translateY(-2px);
727
+ // }
728
+ // }
729
+ // }
728
730
 
729
731
  // wizard title end
730
732
 
731
733
  // checkbox card start
732
- .card-checkbox {
733
- width: 358px;
734
- height: 115px;
735
- border: 1px solid $ac-label-text;
736
- }
734
+ // .card-checkbox {
735
+ // width: 358px;
736
+ // height: 115px;
737
+ // border: 1px solid $ac-label-text;
738
+ // }
737
739
 
738
740
  // checkbox card end
739
741
 
740
742
  // card radio box start
741
- .multiple-radio {
742
- height: auto;
743
-
744
- h5 {
745
- margin-bottom: 10px;
746
- font-family: $ac-family-paragraph;
747
- font-style: normal;
748
- font-weight: 500;
749
- color: $ac-color-heading;
750
- }
751
- }
743
+ // .multiple-radio {
744
+ // height: auto;
745
+
746
+ // h5 {
747
+ // margin-bottom: 10px;
748
+ // font-family: $font-paragraph;
749
+ // font-style: normal;
750
+ // font-weight: 500;
751
+ // color: $primary-5;
752
+ // }
753
+ // }
752
754
 
753
755
  // card radio box end
754
756
 
755
757
  // Wizard Notification Area Start
756
- .wizard-notification-area {
757
- background-color: $ac-gray-lightest;
758
- border-radius: 10px;
759
- padding: 10px;
760
- width: 100%;
761
-
762
- p {
763
- font-family: $ac-family-paragraph;
764
- font-style: normal;
765
- font-size: $font-size-small;
766
- line-height: 18px;
767
- color: $ac-white;
768
- font-weight: 400;
769
-
770
- b {
771
- font-weight: 500;
772
-
773
- &.star-dots {
774
- font-family: $ac-family-paragraph;
775
- font-style: normal;
776
- font-weight: bold;
777
- font-size: 20px;
778
- line-height: 23px;
779
- letter-spacing: 8px;
780
- color: $ac-white;
781
- margin-top: 10px;
782
- display: block;
783
- }
784
- }
785
- }
786
- }
758
+ // .wizard-notification-area {
759
+ // background-color: $black-80;
760
+ // border-radius: 10px;
761
+ // padding: 10px;
762
+ // width: 100%;
763
+
764
+ // p {
765
+ // font-family: $font-paragraph;
766
+ // font-style: normal;
767
+ // font-size: 13px;
768
+ // line-height: 18px;
769
+ // color: $white-100;
770
+ // font-weight: 400;
771
+
772
+ // b {
773
+ // font-weight: 500;
774
+
775
+ // &.star-dots {
776
+ // font-family: $font-paragraph;
777
+ // font-style: normal;
778
+ // font-weight: bold;
779
+ // font-size: 20px;
780
+ // line-height: 23px;
781
+ // letter-spacing: 8px;
782
+ // color: $white-100;
783
+ // margin-top: 10px;
784
+ // display: block;
785
+ // }
786
+ // }
787
+ // }
788
+ // }
787
789
 
788
790
  // Wizard Notification Area end
789
791
 
790
792
  // inline input start
791
- .ac-inline-input {
792
- &.are-width-100 {
793
- .ac-counter {
794
- width: 100px;
795
- }
796
- }
797
-
798
- .ac-counter {
799
- border: 1px solid $ac-white-light;
800
- padding: 10px 5px;
801
- height: 40px;
802
- width: 60px;
803
- background-color: transparent;
804
- border-radius: 4px;
805
- text-align: center;
806
- font-family: $ac-family-paragraph;
807
- font-weight: 500;
808
- font-size: $font-size-small;
809
- line-height: 19px;
810
- color: $ac-color-text;
811
- margin: 0 10px 10px 0;
812
-
813
- &:focus {
814
- outline: none;
815
- border: 1px solid $ac-primary;
816
- }
817
-
818
- &.is-selected {
819
- border: 1px solid $ac-primary;
820
- background-color: $ac-primary;
821
- color: $ac-white;
822
- }
823
- }
824
- }
793
+ // .ac-inline-input {
794
+ // &.are-width-100 {
795
+ // .ac-counter {
796
+ // width: 100px;
797
+ // }
798
+ // }
799
+
800
+ // .ac-counter {
801
+ // border: 1px solid $primary-90;
802
+ // padding: 10px 5px;
803
+ // height: 40px;
804
+ // width: 60px;
805
+ // background-color: transparent;
806
+ // border-radius: 4px;
807
+ // text-align: center;
808
+ // font-family: $font-paragraph;
809
+ // font-weight: 500;
810
+ // font-size: 13px;
811
+ // line-height: 19px;
812
+ // color: $primary-10;
813
+ // margin: 0 10px 10px 0;
814
+
815
+ // &:focus {
816
+ // outline: none;
817
+ // border: 1px solid $primary;
818
+ // }
819
+
820
+ // &.is-selected {
821
+ // border: 1px solid $primary;
822
+ // background-color: $primary;
823
+ // color: $white-100;
824
+ // }
825
+ // }
826
+ // }
825
827
 
826
828
  // inline input end
827
829
 
828
830
  // dark theme start
829
- .is-dark-theme {
830
- h6.wizard-title.has-line:after {
831
- --ac-blue-light: $ac-color-value;
832
- }
831
+ // .is-dark-theme {
832
+ // h6.wizard-title.has-line:after {
833
+ // --ac-blue-light: $primary-20;
834
+ // }
835
+
836
+ // .ac-certificate-info {
837
+ // --ac-bg-light-gray: var(--dark-bg-light);
838
+ // }
839
+ // }
833
840
 
834
- .ac-certificate-info {
835
- --ac-bg-light-gray: var(--dark-bg-light);
836
- }
837
- }
838
841
  // dark theme end
839
842
  /****************************************
840
843
  Responsive Classes
841
844
  *****************************************/
842
845
  // Extra small devices (portrait phones, less than 576px)
843
- @media (max-width: 575.98px) {
844
- }
846
+ @media (max-width: 575.98px) {}
845
847
 
846
848
  // Small devices (landscape phones, 576px and up)
847
- @media (min-width: 576px) and (max-width: 767.98px) {
848
- }
849
+ @media (min-width: 576px) and (max-width: 767.98px) {}
849
850
 
850
851
  // Medium devices (tablets, 768px and up)
851
- @media (min-width: 768px) and (max-width: 991.98px) {
852
- }
852
+ @media (min-width: 768px) and (max-width: 991.98px) {}
853
853
 
854
854
  // Large devices (desktops, 992px and up)
855
- @media (min-width: 992px) and (max-width: 1199.98px) {
856
- }
855
+ @media (min-width: 992px) and (max-width: 1199.98px) {}
857
856
 
858
857
  // Extra large devices (large desktops, 1200px and up)
859
- @media (min-width: 1200px) {
860
- }
858
+ @media (min-width: 1200px) {}