@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.
- package/base/_video-player.scss +65 -0
- package/base/utilities/_all.scss +6 -5
- package/base/utilities/_colors.scss +446 -0
- package/base/utilities/_customize-bulma.scss +23 -27
- package/base/utilities/_extended.scss +3 -2
- package/base/utilities/{_default.scss → _global.scss} +171 -323
- package/base/utilities/_layouts.scss +157 -0
- package/base/utilities/_mixin.scss +11 -11
- package/base/utilities/_spacing.scss +96 -0
- package/base/utilities/_typography.scss +56 -24
- package/base/utilities/dark-theme.scss +1 -1
- package/components/_ac-accordion.scss +117 -117
- package/components/_ac-alert-box.scss +205 -263
- package/components/_ac-calendar.scss +4 -4
- package/components/_ac-card.scss +122 -130
- package/components/_ac-code-highlight.scss +6 -6
- package/components/_ac-content-layout.scss +165 -165
- package/components/_ac-drag.scss +11 -11
- package/components/_ac-input.scss +38 -520
- package/components/_ac-modal.scss +212 -212
- package/components/_ac-multi-select.scss +780 -751
- package/components/_ac-options.scss +122 -123
- package/components/_ac-select-box.scss +5 -5
- package/components/_ac-table.scss +503 -502
- package/components/_ac-tabs.scss +39 -38
- package/components/_ac-tags.scss +116 -116
- package/components/_ac-terminal.scss +95 -51
- package/components/_add-card.scss +3 -3
- package/components/_all.scss +31 -28
- package/components/_app-drawer.scss +0 -134
- package/components/_breadcumb.scss +0 -71
- package/components/_buttons.scss +779 -779
- package/components/_card-body-wrapper.scss +5 -5
- package/components/_dashboard-header.scss +0 -115
- package/components/_direct-deploy.scss +8 -8
- package/components/_go-to-top.scss +1 -1
- package/components/_image-upload.scss +3 -3
- package/components/_left-sidebar-menu.scss +448 -579
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +786 -752
- package/components/_nested-list.scss +1 -1
- package/components/_overview-info.scss +7 -7
- package/components/_overview-page.scss +4 -4
- package/components/_pagination.scss +106 -124
- package/components/_payment-card.scss +21 -21
- package/components/_preloader.scss +1 -1
- package/components/_preview-modal.scss +18 -18
- package/components/_pricing-table.scss +10 -10
- package/components/_progress-bar.scss +12 -12
- package/components/_subscription-card.scss +14 -14
- package/components/_table-of-content.scss +4 -4
- package/components/_tfa.scss +9 -9
- package/components/_widget-menu.scss +247 -247
- package/components/_wizard.scss +82 -82
- package/components/ac-toaster/_ac-toasted.scss +1 -1
- package/components/bbum/_activities-header.scss +1 -1
- package/components/bbum/_card-team.scss +12 -12
- package/components/bbum/_information-center.scss +13 -13
- package/components/bbum/_left-sidebar.scss +8 -8
- package/components/bbum/_mobile-desktop.scss +7 -7
- package/components/bbum/_post.scss +5 -5
- package/components/bbum/_sign-up-notification.scss +10 -10
- package/components/bbum/_single-post-preview.scss +21 -21
- package/components/bbum/_user-profile.scss +10 -10
- package/components/ui-builder/_ui-builder.scss +15 -15
- package/components/ui-builder/_vue-open-api.scss +514 -2
- package/layouts/_code-preview.scss +11 -11
- package/main.scss +26 -10
- package/package.json +1 -1
- package/vue-components/plugins/time-convert.js +49 -0
- package/vue-components/text.vue +1 -0
- package/vue-components/types/cluster.ts +6 -0
- package/vue-components/types/longRunningTasks.ts +20 -0
- package/vue-components/types/notification.ts +6 -0
- package/vue-components/types/previewYaml.ts +8 -0
- package/vue-components/types/table.ts +54 -0
- package/vue-components/types/theme.ts +10 -0
- package/vue-components/types/user.ts +22 -0
- package/vue-components/v2/card/Card.vue +1 -1
- package/vue-components/v2/card/OverviewCards.vue +17 -2
- package/vue-components/v2/editor/ResourceKeyValueEditor.vue +21 -21
- package/vue-components/v2/icons/Ellipsis.vue +2 -1
- package/vue-components/v2/modal/Modal.vue +0 -5
- package/vue-components/v2/navbar/Appdrawer.vue +37 -12
- package/vue-components/v2/navbar/Navbar.vue +3 -3
- package/vue-components/v2/navbar/NavbarItem.vue +3 -1
- package/vue-components/v2/navbar/NavbarItemContent.vue +1 -1
- package/vue-components/v2/navbar/User.vue +5 -22
- package/vue-components/v2/pagination/Pagination.vue +65 -0
- package/vue-components/v2/sidebar/SidebarItem.vue +10 -7
- package/vue-components/v3/accordion/Accordion.vue +151 -0
- package/vue-components/v3/alert/Alert.vue +238 -0
- package/vue-components/v3/alert/Toast.vue +79 -0
- package/vue-components/v3/banner/Banner.vue +10 -0
- package/vue-components/v3/breadcrumbs/Breadcrumb.vue +104 -0
- package/vue-components/v3/button/Button.vue +831 -58
- package/vue-components/v3/button/Buttons.vue +6 -0
- package/vue-components/v3/button/DownloadBtn.vue +31 -0
- package/vue-components/v3/cards/Card.vue +32 -0
- package/vue-components/v3/cards/CardContent.vue +7 -0
- package/vue-components/v3/cards/CardHeader.vue +14 -0
- package/vue-components/v3/cards/Cards.vue +7 -0
- package/vue-components/v3/cards/Cluster.vue +150 -0
- package/vue-components/v3/cards/Counter.vue +27 -0
- package/vue-components/v3/cards/FeatureCard.vue +40 -0
- package/vue-components/v3/cards/FeatureCards.vue +6 -0
- package/vue-components/v3/cards/InfoCard.vue +248 -0
- package/vue-components/v3/cards/Monitoring.vue +94 -0
- package/vue-components/v3/cards/OverviewCard.vue +24 -0
- package/vue-components/v3/cards/OverviewCards.vue +31 -0
- package/vue-components/v3/cards/Payment.vue +62 -0
- package/vue-components/v3/cards/Vendor.vue +23 -0
- package/vue-components/v3/content/ContentHeader.vue +39 -30
- package/vue-components/v3/content/ContentLayout.vue +20 -0
- package/vue-components/v3/content/ContentTable.vue +37 -61
- package/vue-components/v3/dropdown/DropdownDivider.vue +2 -0
- package/vue-components/v3/dropdown/DropdownItem.vue +2 -0
- package/vue-components/v3/dropdown/DropdownMenu.vue +85 -91
- package/vue-components/v3/editor/Editor.vue +100 -113
- package/vue-components/v3/editor/FilteredFileEditor.vue +124 -127
- package/vue-components/v3/editor/ResourceKeyValueEditor.vue +70 -94
- package/vue-components/v3/footer/FooterArea.vue +34 -0
- package/vue-components/v3/footer/FooterItem.vue +32 -0
- package/vue-components/v3/footer/FooterItems.vue +15 -0
- package/vue-components/v3/footer/Info.vue +23 -0
- package/vue-components/v3/footer/Status.vue +42 -0
- package/vue-components/v3/footer/Usage.vue +44 -0
- package/vue-components/v3/form/Form.vue +24 -33
- package/vue-components/v3/form/FormFooterControl.vue +7 -0
- package/vue-components/v3/form/FormFooterControls.vue +7 -0
- package/vue-components/v3/form-fields/AcSingleInput.vue +520 -0
- package/vue-components/v3/form-fields/Input.vue +19 -14
- package/vue-components/v3/header/Header.vue +117 -24
- package/vue-components/v3/header/HeaderItem.vue +18 -0
- package/vue-components/v3/header/HeaderItems.vue +4 -0
- package/vue-components/v3/icons/Ellipsis.vue +2 -0
- package/vue-components/v3/loaders/ResourceLoader.vue +4 -12
- package/vue-components/v3/loaders/SidebarLoader.vue +4 -12
- package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +17 -15
- package/vue-components/v3/modal/Modal.vue +292 -96
- package/vue-components/v3/modals/DeleteConfirmationModal.vue +37 -50
- package/vue-components/v3/modals/JsonShowModal.vue +62 -68
- package/vue-components/v3/modals/LongRunningTasksModal.vue +145 -143
- package/vue-components/v3/navbar/Appdrawer.vue +196 -51
- package/vue-components/v3/navbar/Navbar.vue +296 -0
- package/vue-components/v3/navbar/NavbarItem.vue +81 -0
- package/vue-components/v3/navbar/NavbarItemContent.vue +284 -0
- package/vue-components/v3/navbar/Notification.vue +179 -0
- package/vue-components/v3/navbar/ThemeMode.vue +128 -112
- package/vue-components/v3/navbar/User.vue +383 -268
- package/vue-components/v3/notification/AlertBox.vue +39 -42
- package/vue-components/v3/notification/Notification.vue +49 -43
- package/vue-components/v3/notification/NotificationItem.vue +51 -19
- package/vue-components/v3/option-dots/Options.vue +188 -0
- package/vue-components/v3/pagination/Pagination.vue +203 -99
- package/vue-components/v3/preloader/Preloader.vue +23 -0
- package/vue-components/v3/searchbars/SearchBar.vue +51 -34
- package/vue-components/v3/sidebar/AccentColorPicker.vue +97 -0
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +834 -81
- package/vue-components/v3/sidebar/Sidebar.vue +271 -0
- package/vue-components/v3/sidebar/SidebarBody.vue +7 -0
- package/vue-components/v3/sidebar/SidebarFooter.vue +80 -0
- package/vue-components/v3/sidebar/SidebarHeader.vue +124 -0
- package/vue-components/v3/sidebar/SidebarItem.vue +62 -0
- package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +101 -104
- package/vue-components/v3/sidebar/SidebarMenuList.vue +9 -0
- package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabs.vue +128 -0
- package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabsLayout.vue +29 -0
- package/vue-components/v3/sidebar/sidebar-tabs/TabsContent.vue +99 -0
- package/vue-components/v3/tab/TabItem.vue +10 -12
- package/vue-components/v3/tab/Tabs.vue +9 -0
- package/vue-components/v3/tab/TabsBody.vue +7 -0
- package/vue-components/v3/table/EmptyTableInfo.vue +8 -0
- package/vue-components/v3/table/FakeTableCell.vue +22 -31
- package/vue-components/v3/table/InfoTable.vue +85 -59
- package/vue-components/v3/table/MultiInfoTable.vue +72 -95
- package/vue-components/v3/table/Table.vue +582 -151
- package/vue-components/v3/table/TableCell.vue +20 -23
- package/vue-components/v3/table/TableContainer.vue +50 -28
- package/vue-components/v3/table/TableRow.vue +63 -85
- package/vue-components/v3/table/table-cell/ArrayCell.vue +67 -79
- package/vue-components/v3/table/table-cell/CellValue.vue +97 -103
- package/vue-components/v3/table/table-cell/GenericCell.vue +43 -42
- package/vue-components/v3/table/table-cell/ObjectCell.vue +67 -79
- package/vue-components/v3/table/table-cell/ValueWithModal.vue +22 -31
- package/vue-components/v3/tabs/EditorTabs.vue +18 -24
- package/vue-components/v3/tag/Tag.vue +15 -12
- package/vue-components/v3/tag/Tags.vue +7 -0
- package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +26 -23
- package/base/utilities/_derived-variables.scss +0 -25
- package/base/utilities/_initial-variables.scss +0 -215
- package/components/_basic-card.scss +0 -128
- package/mixins/stickyContent.js +0 -141
- package/plugins/caching.ts +0 -243
package/components/_wizard.scss
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
.single-wizard-section {
|
|
2
2
|
padding: 20px;
|
|
3
|
-
background-color: $
|
|
4
|
-
border: 1px solid $
|
|
3
|
+
background-color: $white-100;
|
|
4
|
+
border: 1px solid $primary-90;
|
|
5
5
|
border-radius: 4px;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.wizard-description {
|
|
9
|
-
font-family: $
|
|
9
|
+
font-family: $font-paragraph;
|
|
10
10
|
font-style: normal;
|
|
11
11
|
font-weight: normal;
|
|
12
|
-
font-size:
|
|
12
|
+
font-size: 13px;
|
|
13
13
|
line-height: 100%;
|
|
14
|
-
color: $
|
|
14
|
+
color: $primary-10;
|
|
15
15
|
margin-bottom: 10px;
|
|
16
16
|
}
|
|
17
17
|
|
|
@@ -80,12 +80,12 @@
|
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
strong {
|
|
83
|
-
font-family: $
|
|
83
|
+
font-family: $font-paragraph;
|
|
84
84
|
font-style: normal;
|
|
85
85
|
font-weight: 500;
|
|
86
|
-
font-size:
|
|
86
|
+
font-size: 13px;
|
|
87
87
|
line-height: 16px;
|
|
88
|
-
color: $
|
|
88
|
+
color: $primary-10;
|
|
89
89
|
margin-right: 16px;
|
|
90
90
|
}
|
|
91
91
|
}
|
|
@@ -114,8 +114,8 @@
|
|
|
114
114
|
.card-select {
|
|
115
115
|
height: 94px;
|
|
116
116
|
padding: 10px;
|
|
117
|
-
background-color: $
|
|
118
|
-
border: 1px solid $
|
|
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;
|
|
@@ -162,16 +162,16 @@
|
|
|
162
162
|
border: none;
|
|
163
163
|
|
|
164
164
|
label {
|
|
165
|
-
color: $
|
|
165
|
+
color: $primary !important;
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
168
|
|
|
169
169
|
.ac-single-radio,
|
|
170
170
|
.ac-single-checkbox {
|
|
171
171
|
label {
|
|
172
|
-
font-size:
|
|
172
|
+
font-size: 13px;
|
|
173
173
|
line-height: 20px;
|
|
174
|
-
color: $
|
|
174
|
+
color: $primary-5;
|
|
175
175
|
padding-left: 25px !important;
|
|
176
176
|
}
|
|
177
177
|
|
|
@@ -192,13 +192,13 @@
|
|
|
192
192
|
background-color: transparent;
|
|
193
193
|
|
|
194
194
|
label {
|
|
195
|
-
color: $
|
|
195
|
+
color: $primary-10;
|
|
196
196
|
cursor: not-allowed;
|
|
197
197
|
}
|
|
198
198
|
}
|
|
199
199
|
|
|
200
200
|
.ac-single-radio .is-checkradio[type="radio"]:checked + label {
|
|
201
|
-
color: $
|
|
201
|
+
color: $primary;
|
|
202
202
|
}
|
|
203
203
|
|
|
204
204
|
.ac-single-radio {
|
|
@@ -207,7 +207,7 @@
|
|
|
207
207
|
}
|
|
208
208
|
|
|
209
209
|
&.is-disabled {
|
|
210
|
-
background-color: $
|
|
210
|
+
background-color: $white-100-lighter;
|
|
211
211
|
cursor: not-allowed;
|
|
212
212
|
opacity: 0.8;
|
|
213
213
|
|
|
@@ -223,7 +223,7 @@
|
|
|
223
223
|
}
|
|
224
224
|
|
|
225
225
|
&.is-selected {
|
|
226
|
-
border: 1px solid $
|
|
226
|
+
border: 1px solid $primary;
|
|
227
227
|
}
|
|
228
228
|
|
|
229
229
|
&:last-child {
|
|
@@ -269,7 +269,7 @@
|
|
|
269
269
|
z-index: 2;
|
|
270
270
|
right: 10px;
|
|
271
271
|
top: 10px;
|
|
272
|
-
background-color: $
|
|
272
|
+
background-color: $white-100;
|
|
273
273
|
box-shadow: $ac-shadow-2;
|
|
274
274
|
display: inline-block;
|
|
275
275
|
border-radius: 4px;
|
|
@@ -283,22 +283,22 @@
|
|
|
283
283
|
position: absolute;
|
|
284
284
|
right: -5px;
|
|
285
285
|
top: -5px;
|
|
286
|
-
border: 1px solid $
|
|
286
|
+
border: 1px solid $black-80;
|
|
287
287
|
font-size: 10px;
|
|
288
288
|
height: 25px;
|
|
289
289
|
width: 25px;
|
|
290
290
|
text-align: center;
|
|
291
|
-
background-color: $
|
|
291
|
+
background-color: $white-100;
|
|
292
292
|
border-radius: 50%;
|
|
293
293
|
cursor: pointer;
|
|
294
|
-
color: $
|
|
294
|
+
color: $danger;
|
|
295
295
|
transition: 0.3s ease-in-out;
|
|
296
296
|
display: block;
|
|
297
297
|
|
|
298
298
|
&:hover {
|
|
299
|
-
color: $
|
|
300
|
-
background-color: $
|
|
301
|
-
border: 1px solid $
|
|
299
|
+
color: $white-100;
|
|
300
|
+
background-color: $danger;
|
|
301
|
+
border: 1px solid $danger;
|
|
302
302
|
}
|
|
303
303
|
}
|
|
304
304
|
|
|
@@ -308,13 +308,13 @@
|
|
|
308
308
|
a {
|
|
309
309
|
display: block;
|
|
310
310
|
padding: 5px 10px 5px 0;
|
|
311
|
-
color: $
|
|
312
|
-
font-size:
|
|
311
|
+
color: $primary-20;
|
|
312
|
+
font-size: 11px;
|
|
313
313
|
text-decoration: underline;
|
|
314
314
|
font-weight: 400;
|
|
315
315
|
|
|
316
316
|
&:hover {
|
|
317
|
-
color: $
|
|
317
|
+
color: $primary;
|
|
318
318
|
}
|
|
319
319
|
}
|
|
320
320
|
}
|
|
@@ -330,25 +330,25 @@
|
|
|
330
330
|
}
|
|
331
331
|
|
|
332
332
|
label {
|
|
333
|
-
font-family: $
|
|
333
|
+
font-family: $font-heading;
|
|
334
334
|
font-style: normal;
|
|
335
335
|
font-weight: 500;
|
|
336
|
-
font-size:
|
|
336
|
+
font-size: 13px;
|
|
337
337
|
line-height: 24px;
|
|
338
|
-
color: $
|
|
338
|
+
color: $primary-5;
|
|
339
339
|
}
|
|
340
340
|
}
|
|
341
341
|
|
|
342
342
|
p {
|
|
343
|
-
font-family: $
|
|
343
|
+
font-family: $font-paragraph;
|
|
344
344
|
font-style: normal;
|
|
345
345
|
font-weight: normal;
|
|
346
|
-
font-size:
|
|
346
|
+
font-size: 13px;
|
|
347
347
|
line-height: 140%;
|
|
348
|
-
color: $
|
|
348
|
+
color: $primary-10;
|
|
349
349
|
|
|
350
350
|
&.is-warning {
|
|
351
|
-
color: $
|
|
351
|
+
color: $danger;
|
|
352
352
|
}
|
|
353
353
|
|
|
354
354
|
a {
|
|
@@ -377,12 +377,12 @@
|
|
|
377
377
|
.ac-single-checkbox {
|
|
378
378
|
.is-checkradio[type="checkbox"] {
|
|
379
379
|
&.ac-checkbox + label {
|
|
380
|
-
font-family: $
|
|
380
|
+
font-family: $font-heading;
|
|
381
381
|
font-style: normal;
|
|
382
382
|
font-weight: 500;
|
|
383
383
|
font-size: 13px;
|
|
384
384
|
line-height: 20px;
|
|
385
|
-
color: $
|
|
385
|
+
color: $primary-5;
|
|
386
386
|
}
|
|
387
387
|
}
|
|
388
388
|
}
|
|
@@ -400,12 +400,12 @@
|
|
|
400
400
|
|
|
401
401
|
.state-left {
|
|
402
402
|
h5 {
|
|
403
|
-
font-family: $
|
|
403
|
+
font-family: $font-paragraph;
|
|
404
404
|
font-style: normal;
|
|
405
405
|
font-weight: 500;
|
|
406
|
-
font-size:
|
|
406
|
+
font-size: 14px;
|
|
407
407
|
line-height: 19px;
|
|
408
|
-
color: $
|
|
408
|
+
color: $primary-10;
|
|
409
409
|
}
|
|
410
410
|
|
|
411
411
|
img {
|
|
@@ -449,7 +449,7 @@
|
|
|
449
449
|
// final state end
|
|
450
450
|
|
|
451
451
|
.circle-list-shape {
|
|
452
|
-
border: 3px solid $
|
|
452
|
+
border: 3px solid $primary-10;
|
|
453
453
|
border-radius: 50%;
|
|
454
454
|
width: 10px;
|
|
455
455
|
height: 10px;
|
|
@@ -460,12 +460,12 @@
|
|
|
460
460
|
.ac-selected-item {
|
|
461
461
|
.selected-left {
|
|
462
462
|
.item-name {
|
|
463
|
-
font-family: $
|
|
463
|
+
font-family: $font-paragraph;
|
|
464
464
|
font-style: normal;
|
|
465
465
|
font-weight: 500;
|
|
466
|
-
font-size:
|
|
466
|
+
font-size: 13px;
|
|
467
467
|
line-height: 16px;
|
|
468
|
-
color: $
|
|
468
|
+
color: $primary-10;
|
|
469
469
|
}
|
|
470
470
|
|
|
471
471
|
button {
|
|
@@ -502,11 +502,11 @@
|
|
|
502
502
|
.ac-certificate-area {
|
|
503
503
|
box-shadow: $ac-shadow-1;
|
|
504
504
|
border-radius: 4px;
|
|
505
|
-
background-color: $
|
|
505
|
+
background-color: $white-100;
|
|
506
506
|
|
|
507
507
|
.list-items {
|
|
508
508
|
padding: 10px;
|
|
509
|
-
border-bottom: 1px solid $
|
|
509
|
+
border-bottom: 1px solid $primary-90;
|
|
510
510
|
|
|
511
511
|
&:last-child {
|
|
512
512
|
border-bottom: none;
|
|
@@ -519,18 +519,18 @@
|
|
|
519
519
|
|
|
520
520
|
li {
|
|
521
521
|
font-weight: 500;
|
|
522
|
-
color: $
|
|
522
|
+
color: $primary-5;
|
|
523
523
|
}
|
|
524
524
|
}
|
|
525
525
|
|
|
526
526
|
li {
|
|
527
527
|
width: 20%;
|
|
528
|
-
font-family: $
|
|
528
|
+
font-family: $font-paragraph;
|
|
529
529
|
font-style: normal;
|
|
530
530
|
font-weight: normal;
|
|
531
|
-
font-size:
|
|
531
|
+
font-size: 13px;
|
|
532
532
|
line-height: 16px;
|
|
533
|
-
color: $
|
|
533
|
+
color: $primary-10;
|
|
534
534
|
display: flex;
|
|
535
535
|
align-items: center;
|
|
536
536
|
|
|
@@ -543,7 +543,7 @@
|
|
|
543
543
|
|
|
544
544
|
.ac-certificate-info {
|
|
545
545
|
padding: 10px 15px;
|
|
546
|
-
background-color: $
|
|
546
|
+
background-color: $black-60;
|
|
547
547
|
border-radius: 4px;
|
|
548
548
|
|
|
549
549
|
.single-name-title {
|
|
@@ -559,13 +559,13 @@
|
|
|
559
559
|
}
|
|
560
560
|
|
|
561
561
|
label:not(.wizard-title) {
|
|
562
|
-
font-family: $
|
|
562
|
+
font-family: $font-paragraph;
|
|
563
563
|
font-style: normal;
|
|
564
564
|
font-weight: normal;
|
|
565
|
-
font-size:
|
|
565
|
+
font-size: 13px;
|
|
566
566
|
line-height: 18px;
|
|
567
567
|
display: block;
|
|
568
|
-
color: $
|
|
568
|
+
color: $primary-10;
|
|
569
569
|
margin-bottom: 5px;
|
|
570
570
|
}
|
|
571
571
|
}
|
|
@@ -578,16 +578,16 @@
|
|
|
578
578
|
}
|
|
579
579
|
|
|
580
580
|
button.button.ac-button.is-square.is-white {
|
|
581
|
-
background-color: $
|
|
581
|
+
background-color: $white-100;
|
|
582
582
|
|
|
583
583
|
&:hover {
|
|
584
|
-
background-color: $
|
|
584
|
+
background-color: $primary-90;
|
|
585
585
|
}
|
|
586
586
|
}
|
|
587
587
|
|
|
588
588
|
.line-title {
|
|
589
589
|
span {
|
|
590
|
-
background-color: $
|
|
590
|
+
background-color: $black-60;
|
|
591
591
|
}
|
|
592
592
|
}
|
|
593
593
|
}
|
|
@@ -603,17 +603,17 @@
|
|
|
603
603
|
}
|
|
604
604
|
|
|
605
605
|
strong {
|
|
606
|
-
font-family: $
|
|
606
|
+
font-family: $font-paragraph;
|
|
607
607
|
font-style: normal;
|
|
608
608
|
font-weight: 500;
|
|
609
|
-
font-size:
|
|
609
|
+
font-size: 13px;
|
|
610
610
|
line-height: 16px;
|
|
611
611
|
display: flex;
|
|
612
612
|
align-items: center;
|
|
613
613
|
|
|
614
614
|
/* Gray 1 */
|
|
615
615
|
|
|
616
|
-
color: $
|
|
616
|
+
color: $primary-10;
|
|
617
617
|
}
|
|
618
618
|
}
|
|
619
619
|
}
|
|
@@ -640,7 +640,7 @@ label {
|
|
|
640
640
|
display: block;
|
|
641
641
|
|
|
642
642
|
span {
|
|
643
|
-
background-color: $
|
|
643
|
+
background-color: $white-100;
|
|
644
644
|
padding-right: 8px;
|
|
645
645
|
}
|
|
646
646
|
|
|
@@ -652,18 +652,18 @@ label {
|
|
|
652
652
|
margin-top: -0.5px;
|
|
653
653
|
width: 100%;
|
|
654
654
|
height: 1px;
|
|
655
|
-
background-color: $
|
|
655
|
+
background-color: $info-light;
|
|
656
656
|
z-index: -1;
|
|
657
657
|
}
|
|
658
658
|
}
|
|
659
659
|
|
|
660
660
|
span.inline-description {
|
|
661
|
-
font-family: $
|
|
661
|
+
font-family: $font-paragraph;
|
|
662
662
|
font-style: normal;
|
|
663
663
|
font-weight: normal;
|
|
664
|
-
font-size:
|
|
664
|
+
font-size: 12px;
|
|
665
665
|
line-height: 160%;
|
|
666
|
-
color: $
|
|
666
|
+
color: $primary-10;
|
|
667
667
|
transform: translate(5px, -2px);
|
|
668
668
|
display: inline-block;
|
|
669
669
|
}
|
|
@@ -718,7 +718,7 @@ button {
|
|
|
718
718
|
|
|
719
719
|
h5 {
|
|
720
720
|
&.wizard-title {
|
|
721
|
-
color: $
|
|
721
|
+
color: $primary-10;
|
|
722
722
|
|
|
723
723
|
.is-required {
|
|
724
724
|
transform: translateY(-2px);
|
|
@@ -743,10 +743,10 @@ h5 {
|
|
|
743
743
|
|
|
744
744
|
h5 {
|
|
745
745
|
margin-bottom: 10px;
|
|
746
|
-
font-family: $
|
|
746
|
+
font-family: $font-paragraph;
|
|
747
747
|
font-style: normal;
|
|
748
748
|
font-weight: 500;
|
|
749
|
-
color: $
|
|
749
|
+
color: $primary-5;
|
|
750
750
|
}
|
|
751
751
|
}
|
|
752
752
|
|
|
@@ -754,30 +754,30 @@ h5 {
|
|
|
754
754
|
|
|
755
755
|
// Wizard Notification Area Start
|
|
756
756
|
.wizard-notification-area {
|
|
757
|
-
background-color: $
|
|
757
|
+
background-color: $black-80;
|
|
758
758
|
border-radius: 10px;
|
|
759
759
|
padding: 10px;
|
|
760
760
|
width: 100%;
|
|
761
761
|
|
|
762
762
|
p {
|
|
763
|
-
font-family: $
|
|
763
|
+
font-family: $font-paragraph;
|
|
764
764
|
font-style: normal;
|
|
765
|
-
font-size:
|
|
765
|
+
font-size: 13px;
|
|
766
766
|
line-height: 18px;
|
|
767
|
-
color: $
|
|
767
|
+
color: $white-100;
|
|
768
768
|
font-weight: 400;
|
|
769
769
|
|
|
770
770
|
b {
|
|
771
771
|
font-weight: 500;
|
|
772
772
|
|
|
773
773
|
&.star-dots {
|
|
774
|
-
font-family: $
|
|
774
|
+
font-family: $font-paragraph;
|
|
775
775
|
font-style: normal;
|
|
776
776
|
font-weight: bold;
|
|
777
777
|
font-size: 20px;
|
|
778
778
|
line-height: 23px;
|
|
779
779
|
letter-spacing: 8px;
|
|
780
|
-
color: $
|
|
780
|
+
color: $white-100;
|
|
781
781
|
margin-top: 10px;
|
|
782
782
|
display: block;
|
|
783
783
|
}
|
|
@@ -796,29 +796,29 @@ h5 {
|
|
|
796
796
|
}
|
|
797
797
|
|
|
798
798
|
.ac-counter {
|
|
799
|
-
border: 1px solid $
|
|
799
|
+
border: 1px solid $primary-90;
|
|
800
800
|
padding: 10px 5px;
|
|
801
801
|
height: 40px;
|
|
802
802
|
width: 60px;
|
|
803
803
|
background-color: transparent;
|
|
804
804
|
border-radius: 4px;
|
|
805
805
|
text-align: center;
|
|
806
|
-
font-family: $
|
|
806
|
+
font-family: $font-paragraph;
|
|
807
807
|
font-weight: 500;
|
|
808
|
-
font-size:
|
|
808
|
+
font-size: 13px;
|
|
809
809
|
line-height: 19px;
|
|
810
|
-
color: $
|
|
810
|
+
color: $primary-10;
|
|
811
811
|
margin: 0 10px 10px 0;
|
|
812
812
|
|
|
813
813
|
&:focus {
|
|
814
814
|
outline: none;
|
|
815
|
-
border: 1px solid $
|
|
815
|
+
border: 1px solid $primary;
|
|
816
816
|
}
|
|
817
817
|
|
|
818
818
|
&.is-selected {
|
|
819
|
-
border: 1px solid $
|
|
820
|
-
background-color: $
|
|
821
|
-
color: $
|
|
819
|
+
border: 1px solid $primary;
|
|
820
|
+
background-color: $primary;
|
|
821
|
+
color: $white-100;
|
|
822
822
|
}
|
|
823
823
|
}
|
|
824
824
|
}
|
|
@@ -828,7 +828,7 @@ h5 {
|
|
|
828
828
|
// dark theme start
|
|
829
829
|
.is-dark-theme {
|
|
830
830
|
h6.wizard-title.has-line:after {
|
|
831
|
-
--ac-blue-light: $
|
|
831
|
+
--ac-blue-light: $primary-20;
|
|
832
832
|
}
|
|
833
833
|
|
|
834
834
|
.ac-certificate-info {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.single-team-card {
|
|
2
|
-
border: 1px solid $
|
|
2
|
+
border: 1px solid $primary-90;
|
|
3
3
|
background-color: hsla(
|
|
4
4
|
var(--hsl-hue),
|
|
5
5
|
var(--hsl-saturation),
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
|
|
13
13
|
&:hover {
|
|
14
14
|
// box-shadow: $ac-shadow-1;
|
|
15
|
-
border: 1px solid $
|
|
16
|
-
background-color: $
|
|
15
|
+
border: 1px solid $primary;
|
|
16
|
+
background-color: $white-100;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
.card-header {
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
align-items: center;
|
|
22
22
|
justify-content: space-between;
|
|
23
23
|
padding: 15px 20px;
|
|
24
|
-
border-bottom: 1px solid $
|
|
24
|
+
border-bottom: 1px solid $primary-90;
|
|
25
25
|
box-shadow: none;
|
|
26
26
|
|
|
27
27
|
strong {
|
|
28
|
-
font-size:
|
|
28
|
+
font-size: 16px;
|
|
29
29
|
line-height: 1.2;
|
|
30
30
|
color: #1c2d41;
|
|
31
31
|
}
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
height: 30px;
|
|
60
60
|
border-radius: 50%;
|
|
61
61
|
overflow: hidden;
|
|
62
|
-
border: 2px solid $
|
|
63
|
-
background-color: $
|
|
62
|
+
border: 2px solid $white-100;
|
|
63
|
+
background-color: $white-100;
|
|
64
64
|
|
|
65
65
|
img {
|
|
66
66
|
width: 100%;
|
|
@@ -71,15 +71,15 @@
|
|
|
71
71
|
|
|
72
72
|
a {
|
|
73
73
|
display: block;
|
|
74
|
-
font-size:
|
|
74
|
+
font-size: 11px;
|
|
75
75
|
font-weight: 500;
|
|
76
76
|
margin-bottom: 20px;
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
.meta {
|
|
81
|
-
font-size:
|
|
82
|
-
color: $
|
|
81
|
+
font-size: 13px;
|
|
82
|
+
color: $primary-20;
|
|
83
83
|
margin-bottom: 20px;
|
|
84
84
|
}
|
|
85
85
|
|
|
@@ -92,8 +92,8 @@
|
|
|
92
92
|
&:not(:first-child) {
|
|
93
93
|
list-style: disc;
|
|
94
94
|
}
|
|
95
|
-
font-size:
|
|
96
|
-
color: $
|
|
95
|
+
font-size: 13px;
|
|
96
|
+
color: $primary-20;
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
99
|
}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
.information-center {
|
|
2
2
|
.information-center-inner {
|
|
3
|
-
background-color: $
|
|
3
|
+
background-color: $white-100;
|
|
4
4
|
position: sticky;
|
|
5
5
|
top: 50px;
|
|
6
6
|
height: calc(100vh - 50px);
|
|
7
|
-
border-left: 1px solid $
|
|
7
|
+
border-left: 1px solid $primary-90;
|
|
8
8
|
|
|
9
9
|
.info-title {
|
|
10
10
|
display: flex;
|
|
11
11
|
align-items: center;
|
|
12
12
|
justify-content: space-between;
|
|
13
13
|
margin-bottom: 15px;
|
|
14
|
-
border-bottom: 1px solid $
|
|
14
|
+
border-bottom: 1px solid $primary-90;
|
|
15
15
|
height: 50px;
|
|
16
16
|
padding: 0 20px;
|
|
17
17
|
|
|
18
18
|
h3 {
|
|
19
19
|
font-size: 16px;
|
|
20
|
-
font-family: $
|
|
20
|
+
font-family: $font-paragraph;
|
|
21
21
|
line-height: 24px;
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -53,17 +53,17 @@
|
|
|
53
53
|
p {
|
|
54
54
|
font-size: 12px;
|
|
55
55
|
line-height: 160%;
|
|
56
|
-
color: $
|
|
56
|
+
color: $primary-10;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
hr {
|
|
60
|
-
background-color: $
|
|
60
|
+
background-color: $primary-90;
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
h3 {
|
|
64
64
|
font-size: 16px;
|
|
65
65
|
line-height: 26px;
|
|
66
|
-
font-family: $
|
|
66
|
+
font-family: $font-paragraph;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
.video-thambnail {
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
height: 160px;
|
|
73
73
|
background-size: cover;
|
|
74
74
|
background-position: center;
|
|
75
|
-
background-color: $
|
|
75
|
+
background-color: $black-80;
|
|
76
76
|
position: relative;
|
|
77
77
|
z-index: 1;
|
|
78
78
|
|
|
@@ -119,21 +119,21 @@
|
|
|
119
119
|
button {
|
|
120
120
|
background-color: transparent;
|
|
121
121
|
padding: 10px;
|
|
122
|
-
color: $
|
|
122
|
+
color: $white-100;
|
|
123
123
|
border: none;
|
|
124
124
|
cursor: pointer;
|
|
125
125
|
font-size: 16px;
|
|
126
126
|
transition: 0.3s;
|
|
127
127
|
|
|
128
128
|
&:hover {
|
|
129
|
-
color: $
|
|
129
|
+
color: $black-80;
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
132
|
}
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
.block-list {
|
|
136
|
-
background-color: $
|
|
136
|
+
background-color: $info-light;
|
|
137
137
|
padding: 7px;
|
|
138
138
|
border-radius: 4px;
|
|
139
139
|
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
|
|
152
152
|
li {
|
|
153
153
|
font-size: 12px;
|
|
154
|
-
color: $
|
|
154
|
+
color: $primary-10;
|
|
155
155
|
display: block;
|
|
156
156
|
padding: 3px 0;
|
|
157
157
|
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
left: 0;
|
|
163
163
|
padding-right: 8px;
|
|
164
164
|
margin-top: -3px;
|
|
165
|
-
color: $
|
|
165
|
+
color: $primary-10;
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
168
|
}
|