@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.
- package/base/utilities/_all.scss +1 -1
- package/base/utilities/_default.scss +41 -41
- package/base/utilities/_derived-variables.scss +8 -9
- package/base/utilities/_extended.scss +9 -5
- package/base/utilities/_initial-variables.scss +52 -50
- package/base/utilities/_mixin.scss +11 -11
- package/base/utilities/_typography.scss +22 -22
- package/base/utilities/dark-theme.scss +1 -1
- package/components/_ac-accordion.scss +6 -6
- package/components/_ac-alert-box.scss +27 -28
- package/components/_ac-calendar.scss +4 -4
- package/components/_ac-card.scss +55 -55
- 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 +85 -85
- package/components/_ac-modal.scss +8 -8
- package/components/_ac-multi-select.scss +751 -751
- package/components/_ac-options.scss +12 -13
- package/components/_ac-select-box.scss +5 -5
- package/components/_ac-table.scss +55 -55
- package/components/_ac-tabs.scss +36 -36
- package/components/_ac-tags.scss +22 -22
- package/components/_ac-terminal.scss +253 -253
- package/components/_add-card.scss +3 -3
- package/components/_app-drawer.scss +4 -4
- package/components/_basic-card.scss +108 -114
- package/components/_breadcumb.scss +5 -5
- package/components/_buttons.scss +64 -64
- package/components/_card-body-wrapper.scss +5 -5
- package/components/_dashboard-header.scss +29 -29
- 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 +374 -376
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +65 -65
- 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 +110 -110
- package/components/_payment-card.scss +20 -20
- 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 +17 -17
- 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 +2 -2
- package/layouts/_code-preview.scss +11 -11
- 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/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 +29 -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/mixins/stickyContent.js +0 -141
- package/plugins/caching.ts +0 -243
package/base/utilities/_all.scss
CHANGED
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
.inner-header {
|
|
35
35
|
position: sticky;
|
|
36
36
|
top: 100px;
|
|
37
|
-
background-color: $
|
|
37
|
+
background-color: $white-100;
|
|
38
38
|
z-index: 997;
|
|
39
39
|
}
|
|
40
40
|
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
position: fixed;
|
|
90
90
|
top: 140px;
|
|
91
91
|
width: 219px;
|
|
92
|
-
border-right: 1px solid $
|
|
92
|
+
border-right: 1px solid $primary-90;
|
|
93
93
|
height: 100%;
|
|
94
94
|
|
|
95
95
|
ul.menu-list-wrapper {
|
|
@@ -105,8 +105,8 @@
|
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
.ac-system-left-sidebar {
|
|
108
|
-
border-right: 1px solid $
|
|
109
|
-
box-shadow: none;
|
|
108
|
+
// border-right: 1px solid $primary-90;
|
|
109
|
+
// box-shadow: none;
|
|
110
110
|
|
|
111
111
|
&.is-expanded {
|
|
112
112
|
z-index: 998;
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
|
|
122
122
|
&.ac-menu-list {
|
|
123
123
|
width: 270px !important;
|
|
124
|
-
background-color: $
|
|
124
|
+
background-color: $white-100;
|
|
125
125
|
|
|
126
126
|
li {
|
|
127
127
|
a {
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
.dropdown-content {
|
|
158
|
-
background-color: $
|
|
158
|
+
background-color: $white-100;
|
|
159
159
|
}
|
|
160
160
|
|
|
161
161
|
// color swatch start
|
|
@@ -195,7 +195,7 @@ input[type="color"]::-moz-color-swatch {
|
|
|
195
195
|
}
|
|
196
196
|
|
|
197
197
|
.ac-preloader {
|
|
198
|
-
color: $
|
|
198
|
+
color: $primary-10;
|
|
199
199
|
}
|
|
200
200
|
|
|
201
201
|
.section-padding {
|
|
@@ -211,7 +211,7 @@ input[type="color"]::-moz-color-swatch {
|
|
|
211
211
|
}
|
|
212
212
|
|
|
213
213
|
.section-divider {
|
|
214
|
-
background-color: $
|
|
214
|
+
background-color: $primary-90;
|
|
215
215
|
}
|
|
216
216
|
|
|
217
217
|
.is-auto-hight {
|
|
@@ -238,7 +238,7 @@ input[type="color"]::-moz-color-swatch {
|
|
|
238
238
|
}
|
|
239
239
|
|
|
240
240
|
.b-1 {
|
|
241
|
-
border: 1px solid $
|
|
241
|
+
border: 1px solid $primary-90;
|
|
242
242
|
}
|
|
243
243
|
|
|
244
244
|
// border left, right, top, bottom none
|
|
@@ -258,7 +258,7 @@ $positions: (
|
|
|
258
258
|
// border 1px
|
|
259
259
|
@each $key, $position in $positions {
|
|
260
260
|
.b-#{$key}-1 {
|
|
261
|
-
border-#{$position}: 1px solid $
|
|
261
|
+
border-#{$position}: 1px solid $primary-90;
|
|
262
262
|
}
|
|
263
263
|
}
|
|
264
264
|
|
|
@@ -348,13 +348,13 @@ $positions: (
|
|
|
348
348
|
}
|
|
349
349
|
|
|
350
350
|
&::-webkit-scrollbar-thumb {
|
|
351
|
-
background-color: $
|
|
351
|
+
background-color: $black-80;
|
|
352
352
|
border-radius: 50px;
|
|
353
353
|
height: 2px !important;
|
|
354
354
|
}
|
|
355
355
|
|
|
356
356
|
&::-webkit-scrollbar-thumb:hover {
|
|
357
|
-
background-color: $
|
|
357
|
+
background-color: $black-80;
|
|
358
358
|
}
|
|
359
359
|
|
|
360
360
|
&:hover::-webkit-scrollbar-corner {
|
|
@@ -395,33 +395,33 @@ $positions: (
|
|
|
395
395
|
}
|
|
396
396
|
|
|
397
397
|
&::-webkit-scrollbar-thumb {
|
|
398
|
-
background-color: $
|
|
398
|
+
background-color: $black-80;
|
|
399
399
|
border-radius: 50px;
|
|
400
400
|
height: 2px !important;
|
|
401
401
|
}
|
|
402
402
|
|
|
403
403
|
&::-moz-scrollbar-thumb {
|
|
404
|
-
background-color: $
|
|
404
|
+
background-color: $black-80;
|
|
405
405
|
border-radius: 50px;
|
|
406
406
|
height: 2px !important;
|
|
407
407
|
}
|
|
408
408
|
|
|
409
409
|
&::-ms-scrollbar-thumb {
|
|
410
|
-
background-color: $
|
|
410
|
+
background-color: $black-80;
|
|
411
411
|
border-radius: 50px;
|
|
412
412
|
height: 2px !important;
|
|
413
413
|
}
|
|
414
414
|
|
|
415
415
|
&::-webkit-scrollbar-thumb:hover {
|
|
416
|
-
background-color: $
|
|
416
|
+
background-color: $black-80;
|
|
417
417
|
}
|
|
418
418
|
|
|
419
419
|
&::-moz-scrollbar-thumb:hover {
|
|
420
|
-
background-color: $
|
|
420
|
+
background-color: $black-80;
|
|
421
421
|
}
|
|
422
422
|
|
|
423
423
|
&::-ms-scrollbar-thumb:hover {
|
|
424
|
-
background-color: $
|
|
424
|
+
background-color: $black-80;
|
|
425
425
|
}
|
|
426
426
|
|
|
427
427
|
&:hover::-webkit-scrollbar-corner {
|
|
@@ -452,13 +452,13 @@ $positions: (
|
|
|
452
452
|
}
|
|
453
453
|
|
|
454
454
|
&::-webkit-scrollbar-thumb {
|
|
455
|
-
background-color: $
|
|
455
|
+
background-color: $black-80;
|
|
456
456
|
border-radius: 50px;
|
|
457
457
|
width: 2px !important;
|
|
458
458
|
}
|
|
459
459
|
|
|
460
460
|
&::-webkit-scrollbar-thumb:hover {
|
|
461
|
-
background-color: $
|
|
461
|
+
background-color: $black-80;
|
|
462
462
|
}
|
|
463
463
|
|
|
464
464
|
&:hover::-webkit-scrollbar-corner {
|
|
@@ -487,16 +487,16 @@ $positions: (
|
|
|
487
487
|
.is-error {
|
|
488
488
|
font-size: 12px;
|
|
489
489
|
line-height: 22px;
|
|
490
|
-
color: $
|
|
490
|
+
color: $danger;
|
|
491
491
|
text-align: left;
|
|
492
492
|
}
|
|
493
493
|
|
|
494
494
|
p.is-error {
|
|
495
|
-
color: $
|
|
495
|
+
color: $danger;
|
|
496
496
|
}
|
|
497
497
|
|
|
498
498
|
code {
|
|
499
|
-
color: $
|
|
499
|
+
color: $primary-5;
|
|
500
500
|
}
|
|
501
501
|
|
|
502
502
|
.is-dark-theme {
|
|
@@ -506,8 +506,8 @@ code {
|
|
|
506
506
|
}
|
|
507
507
|
}
|
|
508
508
|
|
|
509
|
-
.has-text-danger{
|
|
510
|
-
color: $
|
|
509
|
+
.has-text-danger {
|
|
510
|
+
color: $danger !important;
|
|
511
511
|
}
|
|
512
512
|
|
|
513
513
|
.responsive-only {
|
|
@@ -534,12 +534,12 @@ button {
|
|
|
534
534
|
top: 12px;
|
|
535
535
|
width: 100%;
|
|
536
536
|
height: 1px;
|
|
537
|
-
background-color: $
|
|
537
|
+
background-color: $primary-90;
|
|
538
538
|
}
|
|
539
539
|
|
|
540
540
|
h5 {
|
|
541
|
-
color: $
|
|
542
|
-
background-color: $
|
|
541
|
+
color: $primary-10;
|
|
542
|
+
background-color: $white-100;
|
|
543
543
|
z-index: 2;
|
|
544
544
|
display: inline-block;
|
|
545
545
|
position: relative;
|
|
@@ -564,11 +564,11 @@ button {
|
|
|
564
564
|
// docs preview end
|
|
565
565
|
// background color start
|
|
566
566
|
.is-bg-white {
|
|
567
|
-
background-color: $
|
|
567
|
+
background-color: $white-100 !important;
|
|
568
568
|
}
|
|
569
569
|
|
|
570
570
|
.bg-white {
|
|
571
|
-
background-color: $
|
|
571
|
+
background-color: $white-100 !important;
|
|
572
572
|
}
|
|
573
573
|
|
|
574
574
|
// background color end
|
|
@@ -699,8 +699,8 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
699
699
|
|
|
700
700
|
&.is-button-info {
|
|
701
701
|
.tooltip-inner {
|
|
702
|
-
background: $
|
|
703
|
-
color: $
|
|
702
|
+
background: $white-100;
|
|
703
|
+
color: $primary;
|
|
704
704
|
border-radius: 4px;
|
|
705
705
|
padding: 5px 20px 4px;
|
|
706
706
|
box-shadow: $ac-shadow-1;
|
|
@@ -714,14 +714,14 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
714
714
|
border-style: solid;
|
|
715
715
|
position: absolute;
|
|
716
716
|
margin: 5px;
|
|
717
|
-
border-color: $
|
|
717
|
+
border-color: $white-100;
|
|
718
718
|
}
|
|
719
719
|
}
|
|
720
720
|
|
|
721
721
|
&.is-errors-tooltip {
|
|
722
722
|
.tooltip-inner {
|
|
723
|
-
background: $
|
|
724
|
-
color: $
|
|
723
|
+
background: $white-100;
|
|
724
|
+
color: $danger;
|
|
725
725
|
border-radius: 4px;
|
|
726
726
|
padding: 5px 20px 4px;
|
|
727
727
|
box-shadow: $ac-shadow-1;
|
|
@@ -741,7 +741,7 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
741
741
|
border-style: solid;
|
|
742
742
|
position: absolute;
|
|
743
743
|
margin: 5px;
|
|
744
|
-
border-color: $
|
|
744
|
+
border-color: $white-100;
|
|
745
745
|
}
|
|
746
746
|
}
|
|
747
747
|
|
|
@@ -840,14 +840,14 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
840
840
|
.ac-footer-action {
|
|
841
841
|
margin-top: 10px;
|
|
842
842
|
padding-top: 10px;
|
|
843
|
-
background-color: $
|
|
843
|
+
background-color: $white-100;
|
|
844
844
|
padding: 10px 20px;
|
|
845
845
|
margin-left: 0;
|
|
846
846
|
margin-right: 0;
|
|
847
847
|
margin-left: -20px;
|
|
848
848
|
border: none;
|
|
849
849
|
border-radius: 0;
|
|
850
|
-
border-top: 1px solid $
|
|
850
|
+
border-top: 1px solid $primary-90;
|
|
851
851
|
|
|
852
852
|
&.is-sticky {
|
|
853
853
|
position: sticky;
|
|
@@ -856,7 +856,7 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
856
856
|
margin-bottom: -4px;
|
|
857
857
|
z-index: 999;
|
|
858
858
|
border: none;
|
|
859
|
-
border-top: 1px solid $
|
|
859
|
+
border-top: 1px solid $primary-90;
|
|
860
860
|
box-shadow: none;
|
|
861
861
|
}
|
|
862
862
|
}
|
|
@@ -866,8 +866,8 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
866
866
|
height: 10px;
|
|
867
867
|
width: 10px;
|
|
868
868
|
border-radius: 50%;
|
|
869
|
-
background-color: $
|
|
870
|
-
border: 2px solid $
|
|
869
|
+
background-color: $black-80;
|
|
870
|
+
border: 2px solid $white-100;
|
|
871
871
|
display: inline-flex;
|
|
872
872
|
|
|
873
873
|
&.is-success {
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
// color
|
|
2
|
-
$
|
|
3
|
-
$
|
|
4
|
-
$
|
|
5
|
-
$
|
|
2
|
+
$info: $blue;
|
|
3
|
+
$success: $primary;
|
|
4
|
+
$warning: $yellow;
|
|
5
|
+
$danger: $danger
|
|
6
6
|
|
|
7
7
|
// Text colors
|
|
8
|
-
$
|
|
9
|
-
$
|
|
8
|
+
$primary-10: var(--ac-text);
|
|
9
|
+
$primary-5: var(--ac-text-heading);
|
|
10
10
|
|
|
11
11
|
// Link colors
|
|
12
|
-
$ac-link: $
|
|
13
|
-
$ac-link-visited: $
|
|
12
|
+
$ac-link: $blue;
|
|
13
|
+
$ac-link-visited: $purple;
|
|
14
14
|
|
|
15
15
|
// Box Shadow
|
|
16
16
|
$ac-shadow-1: 0 1px 4px rgba(26, 80, 151, 0.16);
|
|
@@ -22,4 +22,3 @@ $ac-shadow-sm: 0 1px 4px rgba(26, 80, 151, 0.16);
|
|
|
22
22
|
$ac-shadow-xl: 0px 8px 57px rgba(0, 0, 0, 0.16);
|
|
23
23
|
$ac-shadow-lg: 0 3px 4px 0 rgba(0, 0, 0, 0.18),
|
|
24
24
|
0 3px 3px -2px rgba(0, 0, 0, 0.16), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
|
|
25
|
-
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
.has-hover-style{
|
|
2
|
+
cursor: pointer;
|
|
3
|
+
|
|
2
4
|
&::before {
|
|
3
|
-
content:
|
|
5
|
+
content: "";
|
|
4
6
|
position: absolute;
|
|
5
7
|
top: 0;
|
|
6
8
|
right: 0;
|
|
@@ -12,8 +14,9 @@
|
|
|
12
14
|
transform: scaleX(0);
|
|
13
15
|
border-color: #1971bd;
|
|
14
16
|
}
|
|
17
|
+
|
|
15
18
|
&::after {
|
|
16
|
-
content:
|
|
19
|
+
content: "";
|
|
17
20
|
position: absolute;
|
|
18
21
|
top: 0;
|
|
19
22
|
right: 0;
|
|
@@ -25,10 +28,11 @@
|
|
|
25
28
|
transform: scaleY(0);
|
|
26
29
|
border-color: #1971bd;
|
|
27
30
|
}
|
|
31
|
+
|
|
28
32
|
&:hover {
|
|
29
33
|
&::before,
|
|
30
|
-
&::after{
|
|
34
|
+
&::after {
|
|
31
35
|
transform: scale(1);
|
|
32
36
|
}
|
|
33
37
|
}
|
|
34
|
-
}
|
|
38
|
+
}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
// Typography
|
|
2
2
|
@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400;500;600;700&family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700&display=swap");
|
|
3
3
|
|
|
4
|
-
$
|
|
5
|
-
$
|
|
4
|
+
$font-heading: "Roboto", sans-serif;
|
|
5
|
+
$font-paragraph: "Roboto", sans-serif;
|
|
6
6
|
|
|
7
7
|
// body font size
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
8
|
+
16px: 16px;
|
|
9
|
+
15px: 15px;
|
|
10
|
+
14px: 14px;
|
|
11
|
+
13px: 13px;
|
|
12
|
+
12px: 12px;
|
|
13
|
+
11px: 11px;
|
|
14
14
|
|
|
15
15
|
// Base Color
|
|
16
16
|
$ac-orange: #ff8000;
|
|
17
|
-
$
|
|
18
|
-
$
|
|
19
|
-
$
|
|
20
|
-
$
|
|
17
|
+
$warning: #f7ad2a;
|
|
18
|
+
$success: #158748;
|
|
19
|
+
$info: #0aafff;
|
|
20
|
+
$purple: #791e94;
|
|
21
21
|
$ac-red: #ff3729;
|
|
22
22
|
|
|
23
23
|
// Products Color
|
|
@@ -63,7 +63,7 @@ $swift-primary: #3f51b6;
|
|
|
63
63
|
--dark-bg: #21272e;
|
|
64
64
|
--dark-bg-light: #2e323c;
|
|
65
65
|
|
|
66
|
-
--ac-blue-light: #eceff4;
|
|
66
|
+
// --ac-blue-light: #eceff4;
|
|
67
67
|
--ac-bg-light-gray: #f4f6f9;
|
|
68
68
|
--table-header: #e4e8ef;
|
|
69
69
|
--ac-label-text: #a6abbd;
|
|
@@ -72,53 +72,45 @@ $swift-primary: #3f51b6;
|
|
|
72
72
|
--font-hsl-saturation: 0%;
|
|
73
73
|
--font-hsl-lightness: 11%;
|
|
74
74
|
|
|
75
|
-
--ac-primary: hsla(
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
)
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
--ac-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
var(--font-hsl-lightness),
|
|
92
|
-
1
|
|
93
|
-
);
|
|
94
|
-
--ac-color-value: hsl(
|
|
95
|
-
var(--font-hsl-hue),
|
|
96
|
-
var(--font-hsl-saturation),
|
|
97
|
-
calc(var(--font-hsl-lightness) + 25%)
|
|
98
|
-
);
|
|
75
|
+
--ac-primary: hsla(var(--hsl-hue),
|
|
76
|
+
var(--hsl-saturation),
|
|
77
|
+
var(--hsl-lightness),
|
|
78
|
+
1);
|
|
79
|
+
|
|
80
|
+
--ac-text: hsla(var(--font-hsl-hue),
|
|
81
|
+
calc(var(--font-hsl-saturation) + 10%),
|
|
82
|
+
calc(var(--font-hsl-lightness) + 10%),
|
|
83
|
+
1);
|
|
84
|
+
--ac-text-heading: hsla(var(--font-hsl-hue),
|
|
85
|
+
var(--font-hsl-saturation),
|
|
86
|
+
var(--font-hsl-lightness),
|
|
87
|
+
1);
|
|
88
|
+
--ac-color-value: hsl(var(--font-hsl-hue),
|
|
89
|
+
var(--font-hsl-saturation),
|
|
90
|
+
calc(var(--font-hsl-lightness) + 25%));
|
|
99
91
|
}
|
|
100
92
|
|
|
101
93
|
$ac-bg: var(--ac-bg);
|
|
102
|
-
$
|
|
103
|
-
$
|
|
94
|
+
$primary: var(--ac-primary);
|
|
95
|
+
$primary-20: var(--ac-color-value);
|
|
104
96
|
|
|
105
97
|
// Colors
|
|
106
98
|
$ac-black: var(--ac-black);
|
|
107
|
-
$
|
|
99
|
+
$primary-10-90: var(--ac-color-text-90);
|
|
108
100
|
$ac-link-black: var(--ac-link-black);
|
|
109
|
-
$
|
|
110
|
-
$
|
|
101
|
+
$black-40: var(--ac-gray-darker);
|
|
102
|
+
$black-30: var(--ac-gray-dark);
|
|
111
103
|
$ac-gray: var(--ac-gray);
|
|
112
104
|
$ac-gray-light: var(--ac-gray-light);
|
|
113
105
|
$ac-gray-lighter: var(--ac-gray-lighter);
|
|
114
106
|
$ac-gray-lightest: var(--ac-gray-lightest);
|
|
115
|
-
$
|
|
116
|
-
$
|
|
117
|
-
$
|
|
118
|
-
$
|
|
107
|
+
$white-100-light: var(--ac-white-light);
|
|
108
|
+
$white-100-lighter: var(--ac-white-lighter);
|
|
109
|
+
$white-100-lightest: var(--ac-white-lightest);
|
|
110
|
+
$white-100: var(--ac-white);
|
|
119
111
|
$ac-full-white: var(--ac-full-white);
|
|
120
112
|
|
|
121
|
-
$
|
|
113
|
+
// $info-light: var(--ac-blue-light);
|
|
122
114
|
$ac-bg-light-gray: var(--ac-bg-light-gray);
|
|
123
115
|
$table-header: var(--table-header);
|
|
124
116
|
$ac-label-text: var(--ac-label-text);
|
|
@@ -185,10 +177,12 @@ $dark-bg-light: var(--dark-bg-light);
|
|
|
185
177
|
.mx-auto {
|
|
186
178
|
margin: 0 auto;
|
|
187
179
|
}
|
|
188
|
-
|
|
180
|
+
|
|
181
|
+
.mr-auto {
|
|
189
182
|
margin-right: auto;
|
|
190
183
|
}
|
|
191
|
-
|
|
184
|
+
|
|
185
|
+
.ml-auto {
|
|
192
186
|
margin-left: auto;
|
|
193
187
|
}
|
|
194
188
|
|
|
@@ -203,6 +197,14 @@ $dark-bg-light: var(--dark-bg-light);
|
|
|
203
197
|
}
|
|
204
198
|
}
|
|
205
199
|
|
|
200
|
+
.width-auto {
|
|
201
|
+
width: auto !important;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.height-auto {
|
|
205
|
+
height: auto !important;
|
|
206
|
+
}
|
|
207
|
+
|
|
206
208
|
/* Deafult z-index and font-weight*/
|
|
207
209
|
@for $i from 0 through 10 {
|
|
208
210
|
.z-index-#{$i} {
|
|
@@ -212,4 +214,4 @@ $dark-bg-light: var(--dark-bg-light);
|
|
|
212
214
|
.font-weight-#{$i*100} {
|
|
213
215
|
font-weight: #{$i * 100} !important;
|
|
214
216
|
}
|
|
215
|
-
}
|
|
217
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// ac-buttons
|
|
2
2
|
@mixin ac-button($colorName) {
|
|
3
3
|
background-color: $colorName;
|
|
4
|
-
color: $
|
|
4
|
+
color: $white-100;
|
|
5
5
|
border: none;
|
|
6
6
|
|
|
7
7
|
&:hover {
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
|
|
63
63
|
&:hover {
|
|
64
64
|
background-color: $colorName;
|
|
65
|
-
color: $
|
|
65
|
+
color: $white-100;
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
68
|
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
|
|
83
83
|
&:hover {
|
|
84
84
|
background-color: $colorName;
|
|
85
|
-
color: $
|
|
85
|
+
color: $white-100;
|
|
86
86
|
box-shadow: none;
|
|
87
87
|
|
|
88
88
|
img {
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
&.is-inverted {
|
|
95
|
-
background-color: $
|
|
95
|
+
background-color: $white-100;
|
|
96
96
|
color: $colorName;
|
|
97
97
|
|
|
98
98
|
&:hover {
|
|
@@ -110,11 +110,11 @@
|
|
|
110
110
|
|
|
111
111
|
&.is-outlined {
|
|
112
112
|
background-color: transparent;
|
|
113
|
-
border: 1px solid $
|
|
114
|
-
color: $
|
|
113
|
+
border: 1px solid $white-100;
|
|
114
|
+
color: $white-100;
|
|
115
115
|
|
|
116
116
|
&:hover {
|
|
117
|
-
background-color: $
|
|
117
|
+
background-color: $white-100;
|
|
118
118
|
color: $colorName;
|
|
119
119
|
}
|
|
120
120
|
}
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
|
|
129
129
|
&:hover {
|
|
130
130
|
background-color: $colorName;
|
|
131
|
-
color: $
|
|
131
|
+
color: $white-100;
|
|
132
132
|
|
|
133
133
|
@if (type_of($colorName) == "color") {
|
|
134
134
|
box-shadow: 0px 6px 12px scale-color($color: $colorName, $lightness: 70%);
|
|
@@ -168,14 +168,14 @@
|
|
|
168
168
|
&:hover {
|
|
169
169
|
background-color: $colorName;
|
|
170
170
|
box-shadow: none;
|
|
171
|
-
color: $
|
|
171
|
+
color: $white-100;
|
|
172
172
|
|
|
173
173
|
.ac-play {
|
|
174
|
-
border: 1px solid $
|
|
174
|
+
border: 1px solid $white-100;
|
|
175
175
|
}
|
|
176
176
|
|
|
177
177
|
span {
|
|
178
|
-
color: $
|
|
178
|
+
color: $white-100;
|
|
179
179
|
}
|
|
180
180
|
}
|
|
181
181
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
html,
|
|
2
2
|
body {
|
|
3
3
|
background-color: $ac-bg;
|
|
4
|
-
font-family: $
|
|
4
|
+
font-family: $font-paragraph;
|
|
5
5
|
font-weight: 400;
|
|
6
6
|
font-size: 13px;
|
|
7
|
-
color: $
|
|
7
|
+
color: $primary-10;
|
|
8
8
|
}
|
|
9
9
|
p {
|
|
10
10
|
font-size: 13px;
|
|
@@ -15,9 +15,9 @@ h3,
|
|
|
15
15
|
h4,
|
|
16
16
|
h5,
|
|
17
17
|
h6 {
|
|
18
|
-
font-family: $
|
|
18
|
+
font-family: $font-heading;
|
|
19
19
|
font-weight: 500;
|
|
20
|
-
color: $
|
|
20
|
+
color: $primary-5;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
h1 {
|
|
@@ -46,43 +46,43 @@ h6 {
|
|
|
46
46
|
|
|
47
47
|
h6 {
|
|
48
48
|
&.is-tiny {
|
|
49
|
-
font-size:
|
|
50
|
-
line-height:
|
|
49
|
+
font-size: 11px;
|
|
50
|
+
line-height: 11px + 10;
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
&.is-extra-small {
|
|
54
|
-
font-size:
|
|
55
|
-
line-height:
|
|
54
|
+
font-size: 12px;
|
|
55
|
+
line-height: 12px + 10;
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
&.is-small {
|
|
59
|
-
font-size:
|
|
60
|
-
line-height:
|
|
59
|
+
font-size: 13px;
|
|
60
|
+
line-height: 13px + 10;
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
&.is-normal {
|
|
64
|
-
font-size:
|
|
65
|
-
line-height:
|
|
64
|
+
font-size: 14px;
|
|
65
|
+
line-height: 14px + 10;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
&.is-semi-normal {
|
|
69
|
-
font-size:
|
|
70
|
-
line-height:
|
|
69
|
+
font-size: 15px;
|
|
70
|
+
line-height: 15px + 10;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
&.is-medium {
|
|
74
|
-
font-size:
|
|
75
|
-
line-height:
|
|
74
|
+
font-size: 16px;
|
|
75
|
+
line-height: 16px + 10;
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
a {
|
|
80
|
-
font-family: $
|
|
81
|
-
color: $
|
|
80
|
+
font-family: $font-paragraph;
|
|
81
|
+
color: $primary;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
hr {
|
|
85
|
-
background-color: $
|
|
85
|
+
background-color: $black-60;
|
|
86
86
|
border: none;
|
|
87
87
|
display: block;
|
|
88
88
|
height: 1px;
|
|
@@ -90,7 +90,7 @@ hr {
|
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
strong {
|
|
93
|
-
color: $
|
|
93
|
+
color: $primary-20;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
.is-font-medium {
|
|
@@ -100,6 +100,6 @@ strong {
|
|
|
100
100
|
.is-font-bold {
|
|
101
101
|
font-weight: 700;
|
|
102
102
|
}
|
|
103
|
-
.material-icons{
|
|
103
|
+
.material-icons {
|
|
104
104
|
font-size: 1em;
|
|
105
|
-
}
|
|
105
|
+
}
|
|
@@ -8,7 +8,7 @@ $dark-bg-light: var(--dark-bg-light);
|
|
|
8
8
|
--ac-black: var(--ac-white-text);
|
|
9
9
|
--ac-text-heading: var(--ac-white-text);
|
|
10
10
|
--ac-text: #98a6b4;
|
|
11
|
-
--ac-blue-light: #2e323c;
|
|
11
|
+
// --ac-blue-light: #2e323c;
|
|
12
12
|
--ac-gray-darker: #a6a6a6;
|
|
13
13
|
--ac-gray-light: #424242;
|
|
14
14
|
--ac-gray-lightest: #777777;
|