@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
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
li {
|
|
38
38
|
a {
|
|
39
39
|
display: block;
|
|
40
|
-
color: $
|
|
40
|
+
color: $primary-10 !important;
|
|
41
41
|
padding: 10px 20px !important;
|
|
42
42
|
font-size: 13px !important;
|
|
43
43
|
transition: 0.2s;
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
.media-content {
|
|
51
51
|
.content {
|
|
52
52
|
p {
|
|
53
|
-
color: $
|
|
53
|
+
color: $white-100;
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
}
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
strong {
|
|
79
79
|
font-weight: 600;
|
|
80
80
|
font-size: 17px;
|
|
81
|
-
font-family: $
|
|
81
|
+
font-family: $font-heading;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
span {
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
|
|
95
95
|
&:hover {
|
|
96
96
|
> a {
|
|
97
|
-
background-color: $
|
|
97
|
+
background-color: $white-100;
|
|
98
98
|
}
|
|
99
99
|
}
|
|
100
100
|
|
|
@@ -1,124 +1,118 @@
|
|
|
1
|
-
.card-details {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
@extend %card-hover;
|
|
1
|
+
// .card-details {
|
|
2
|
+
// border: 1px solid #d2e7f9;
|
|
3
|
+
// padding: 30px 20px;
|
|
4
|
+
// width: calc(33.3% - 8px);
|
|
5
|
+
// min-width: 400px;
|
|
6
|
+
// max-width: 525px;
|
|
7
|
+
// // border-radius: 4px;
|
|
8
|
+
// transition: 0.3s ease-in-out;
|
|
9
|
+
// position: relative;
|
|
10
|
+
// z-index: 1;
|
|
12
11
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
// .c-header {
|
|
13
|
+
// display: flex;
|
|
14
|
+
// margin-bottom: 20px;
|
|
16
15
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
// .c-logo {
|
|
17
|
+
// width: 54px;
|
|
18
|
+
// height: 54px;
|
|
19
|
+
// background: #e8f3fc;
|
|
20
|
+
// border-radius: 50%;
|
|
21
|
+
// display: flex;
|
|
22
|
+
// align-items: center;
|
|
23
|
+
// justify-content: center;
|
|
24
|
+
// margin-right: 24px;
|
|
20
25
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
border-radius: 50%;
|
|
26
|
-
display: flex;
|
|
27
|
-
align-items: center;
|
|
28
|
-
justify-content: center;
|
|
29
|
-
margin-right: 24px;
|
|
26
|
+
// img {
|
|
27
|
+
// height: 24px;
|
|
28
|
+
// }
|
|
29
|
+
// }
|
|
30
30
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
31
|
+
// .c-content {
|
|
32
|
+
// width: calc(100% - 78px);
|
|
33
|
+
// h4 {
|
|
34
|
+
// font-size: 18px;
|
|
35
|
+
// line-height: 130%;
|
|
36
|
+
// color: #030d17;
|
|
37
|
+
// }
|
|
38
|
+
// .icon {
|
|
39
|
+
// color: #0c365a;
|
|
40
|
+
// cursor: pointer;
|
|
41
|
+
// position: relative;
|
|
42
|
+
// z-index: 1;
|
|
43
|
+
// &:after {
|
|
44
|
+
// position: absolute;
|
|
45
|
+
// content: "";
|
|
46
|
+
// border-radius: 50%;
|
|
47
|
+
// width: 32px;
|
|
48
|
+
// height: 32px;
|
|
49
|
+
// background: #e8f3fc;
|
|
50
|
+
// opacity: 0;
|
|
51
|
+
// visibility: hidden;
|
|
52
|
+
// transition: 0.3s ease-in-out;
|
|
53
|
+
// z-index: -1;
|
|
54
|
+
// }
|
|
55
|
+
// &:hover {
|
|
56
|
+
// &:after {
|
|
57
|
+
// opacity: 1;
|
|
58
|
+
// visibility: visible;
|
|
59
|
+
// }
|
|
60
|
+
// }
|
|
61
|
+
// }
|
|
62
|
+
// .tags {
|
|
63
|
+
// margin-top: 12px;
|
|
64
|
+
// }
|
|
65
|
+
// }
|
|
66
|
+
// }
|
|
35
67
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
.icon {
|
|
44
|
-
color: #0c365a;
|
|
45
|
-
cursor: pointer;
|
|
46
|
-
position: relative;
|
|
47
|
-
z-index: 1;
|
|
48
|
-
&:after {
|
|
49
|
-
position: absolute;
|
|
50
|
-
content: "";
|
|
51
|
-
border-radius: 50%;
|
|
52
|
-
width: 32px;
|
|
53
|
-
height: 32px;
|
|
54
|
-
background: #e8f3fc;
|
|
55
|
-
opacity: 0;
|
|
56
|
-
visibility: hidden;
|
|
57
|
-
transition: 0.3s ease-in-out;
|
|
58
|
-
z-index: -1;
|
|
59
|
-
}
|
|
60
|
-
&:hover {
|
|
61
|
-
&:after {
|
|
62
|
-
opacity: 1;
|
|
63
|
-
visibility: visible;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
.tags {
|
|
68
|
-
margin-top: 12px;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
}
|
|
68
|
+
// .c-body {
|
|
69
|
+
// display: flex;
|
|
70
|
+
// flex-wrap: wrap;
|
|
71
|
+
// gap: 20px;
|
|
72
|
+
// justify-content: space-between;
|
|
73
|
+
// p {
|
|
74
|
+
// width: calc(25% - 16px);
|
|
72
75
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
76
|
+
// span {
|
|
77
|
+
// font-size: 11px;
|
|
78
|
+
// color: #666666;
|
|
79
|
+
// display: block;
|
|
80
|
+
// }
|
|
81
|
+
// strong {
|
|
82
|
+
// color: #061b2d;
|
|
83
|
+
// font-size: 13px;
|
|
84
|
+
// font-weight: 400;
|
|
85
|
+
// }
|
|
86
|
+
// }
|
|
87
|
+
// }
|
|
88
|
+
// }
|
|
80
89
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
font-size: 13px;
|
|
89
|
-
font-weight: 400;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
}
|
|
90
|
+
// // ac card
|
|
91
|
+
// .card-basic {
|
|
92
|
+
// padding: 20px;
|
|
93
|
+
// width: calc(25% - 8px);
|
|
94
|
+
// max-width: 390px;
|
|
95
|
+
// min-width: 290px;
|
|
96
|
+
// position: relative;
|
|
94
97
|
|
|
95
|
-
//
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
@extend %card-hover;
|
|
98
|
+
// .required {
|
|
99
|
+
// position: absolute;
|
|
100
|
+
// left: 20px;
|
|
101
|
+
// top: -9px;
|
|
102
|
+
// }
|
|
103
|
+
// .c-header {
|
|
104
|
+
// .c-title {
|
|
103
105
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
.c-title {
|
|
106
|
+
// h4 {
|
|
107
|
+
// font-size: 18px;
|
|
108
|
+
// color: #061b2d;
|
|
109
|
+
// }
|
|
110
|
+
// }
|
|
111
|
+
// }
|
|
111
112
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
.c-body {
|
|
120
|
-
p {
|
|
121
|
-
color: #0C365A;
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
}
|
|
113
|
+
// .c-body {
|
|
114
|
+
// p {
|
|
115
|
+
// color: #0C365A;
|
|
116
|
+
// }
|
|
117
|
+
// }
|
|
118
|
+
// }
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/* breadcumb style */
|
|
2
2
|
.ac-breadcrumb {
|
|
3
3
|
padding: 13px 20px;
|
|
4
|
-
border-bottom: 1px solid $
|
|
4
|
+
border-bottom: 1px solid $primary-90;
|
|
5
5
|
position: sticky;
|
|
6
6
|
top: 50px;
|
|
7
7
|
height: 50px;
|
|
8
|
-
background-color: $
|
|
8
|
+
background-color: $white-100;
|
|
9
9
|
z-index: 998;
|
|
10
10
|
display: flex;
|
|
11
11
|
align-items: center;
|
|
@@ -13,17 +13,17 @@
|
|
|
13
13
|
|
|
14
14
|
.breadcrumb {
|
|
15
15
|
a {
|
|
16
|
-
color: $
|
|
16
|
+
color: $primary-20;
|
|
17
17
|
font-size: 13px;
|
|
18
18
|
padding: 0px 3px;
|
|
19
19
|
&:hover {
|
|
20
|
-
color: $
|
|
20
|
+
color: $primary-10;
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
li.is-active {
|
|
25
25
|
a {
|
|
26
|
-
color: $
|
|
26
|
+
color: $primary-10;
|
|
27
27
|
font-weight: 500;
|
|
28
28
|
}
|
|
29
29
|
}
|
package/components/_buttons.scss
CHANGED
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
|
|
4
4
|
// ac-button
|
|
5
5
|
&.ac-button {
|
|
6
|
-
border-color: $
|
|
6
|
+
border-color: $primary;
|
|
7
7
|
border-radius: 4px;
|
|
8
8
|
font-size: 14px;
|
|
9
|
-
font-family: $
|
|
9
|
+
font-family: $font-paragraph;
|
|
10
10
|
letter-spacing: 0.2px;
|
|
11
|
-
color: $
|
|
11
|
+
color: $primary;
|
|
12
12
|
font-weight: 500;
|
|
13
13
|
height: 36px;
|
|
14
14
|
padding-left: 25px;
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
letter-spacing: 1px;
|
|
42
42
|
|
|
43
43
|
&.is-primary {
|
|
44
|
-
color: $
|
|
44
|
+
color: $primary;
|
|
45
45
|
background-color: transparent;
|
|
46
46
|
|
|
47
47
|
&:hover {
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
|
|
61
61
|
.ac-icon {
|
|
62
62
|
margin-left: 25px;
|
|
63
|
-
background-color: $
|
|
64
|
-
color: $
|
|
63
|
+
background-color: $white-100;
|
|
64
|
+
color: $primary;
|
|
65
65
|
padding: 2px 6px;
|
|
66
66
|
border-radius: 4px;
|
|
67
67
|
width: 20px;
|
|
@@ -137,12 +137,12 @@
|
|
|
137
137
|
padding: 0;
|
|
138
138
|
&:hover {
|
|
139
139
|
svg {
|
|
140
|
-
color: $
|
|
140
|
+
color: $white-100;
|
|
141
141
|
}
|
|
142
142
|
}
|
|
143
143
|
&.is-gray {
|
|
144
|
-
background-color: $
|
|
145
|
-
color: $
|
|
144
|
+
background-color: $primary-90;
|
|
145
|
+
color: $black-80;
|
|
146
146
|
border-color: transparent;
|
|
147
147
|
|
|
148
148
|
img {
|
|
@@ -151,30 +151,30 @@
|
|
|
151
151
|
|
|
152
152
|
i.fa {
|
|
153
153
|
font-size: 18px;
|
|
154
|
-
color: $
|
|
154
|
+
color: $black-80;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
&:hover {
|
|
158
|
-
background-color: $
|
|
158
|
+
background-color: $black-80;
|
|
159
159
|
}
|
|
160
160
|
}
|
|
161
161
|
|
|
162
162
|
&.is-outlined-gray {
|
|
163
|
-
border: 1px solid $
|
|
163
|
+
border: 1px solid $primary-90;
|
|
164
164
|
font-size: 15px;
|
|
165
165
|
}
|
|
166
166
|
|
|
167
167
|
&.is-transparent {
|
|
168
168
|
background-color: transparent;
|
|
169
|
-
color: $
|
|
169
|
+
color: $black-40;
|
|
170
170
|
|
|
171
171
|
&:hover {
|
|
172
|
-
background-color: $
|
|
172
|
+
background-color: $white-100-lighter;
|
|
173
173
|
color: $ac-black;
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
&:focus {
|
|
177
|
-
background-color: $
|
|
177
|
+
background-color: $white-100-lighter;
|
|
178
178
|
color: $ac-black;
|
|
179
179
|
}
|
|
180
180
|
}
|
|
@@ -223,25 +223,25 @@
|
|
|
223
223
|
font-size: 14px;
|
|
224
224
|
font-weight: 500;
|
|
225
225
|
background-color: transparent;
|
|
226
|
-
color: $
|
|
226
|
+
color: $primary-10;
|
|
227
227
|
|
|
228
228
|
&.is-primary {
|
|
229
229
|
background-color: transparent;
|
|
230
|
-
color: $
|
|
230
|
+
color: $primary;
|
|
231
231
|
|
|
232
232
|
&:hover {
|
|
233
233
|
background-color: transparent;
|
|
234
|
-
color: $
|
|
234
|
+
color: $primary;
|
|
235
235
|
}
|
|
236
236
|
}
|
|
237
237
|
|
|
238
238
|
&.is-danger {
|
|
239
239
|
background-color: transparent;
|
|
240
|
-
color: $
|
|
240
|
+
color: $danger;
|
|
241
241
|
|
|
242
242
|
&:hover {
|
|
243
243
|
background-color: transparent;
|
|
244
|
-
color: $
|
|
244
|
+
color: $danger;
|
|
245
245
|
}
|
|
246
246
|
}
|
|
247
247
|
|
|
@@ -257,12 +257,12 @@
|
|
|
257
257
|
}
|
|
258
258
|
|
|
259
259
|
&.is-white {
|
|
260
|
-
background-color: $
|
|
260
|
+
background-color: $white-100;
|
|
261
261
|
border: none;
|
|
262
262
|
}
|
|
263
263
|
|
|
264
264
|
&.is-light {
|
|
265
|
-
background-color: $
|
|
265
|
+
background-color: $primary-90;
|
|
266
266
|
border: none;
|
|
267
267
|
|
|
268
268
|
&:hover {
|
|
@@ -271,19 +271,19 @@
|
|
|
271
271
|
}
|
|
272
272
|
|
|
273
273
|
&.is-dark {
|
|
274
|
-
background-color: $
|
|
274
|
+
background-color: $black-30;
|
|
275
275
|
border: none;
|
|
276
|
-
color: $
|
|
276
|
+
color: $white-100;
|
|
277
277
|
|
|
278
278
|
&:hover {
|
|
279
|
-
background-color: $
|
|
279
|
+
background-color: $primary-20;
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
282
|
|
|
283
283
|
&.is-black {
|
|
284
|
-
background-color: $
|
|
284
|
+
background-color: $primary-10;
|
|
285
285
|
border: none;
|
|
286
|
-
color: $
|
|
286
|
+
color: $white-100;
|
|
287
287
|
|
|
288
288
|
&:hover {
|
|
289
289
|
background-color: hsla(0, 0, calc(var(--hsl-lightness) - 9%), 1);
|
|
@@ -291,7 +291,7 @@
|
|
|
291
291
|
}
|
|
292
292
|
|
|
293
293
|
&.is-text {
|
|
294
|
-
background-color: $
|
|
294
|
+
background-color: $white-100;
|
|
295
295
|
border: none;
|
|
296
296
|
|
|
297
297
|
&:hover {
|
|
@@ -319,37 +319,37 @@
|
|
|
319
319
|
|
|
320
320
|
&.is-static {
|
|
321
321
|
border: none;
|
|
322
|
-
background-color: $
|
|
323
|
-
color: $
|
|
322
|
+
background-color: $primary-90;
|
|
323
|
+
color: $white-100;
|
|
324
324
|
}
|
|
325
325
|
|
|
326
326
|
// ac-button from mixin
|
|
327
327
|
&.is-primary {
|
|
328
|
-
@include ac-button($
|
|
328
|
+
@include ac-button($primary);
|
|
329
329
|
}
|
|
330
330
|
|
|
331
331
|
&.is-link {
|
|
332
|
-
@include ac-button($
|
|
332
|
+
@include ac-button($info);
|
|
333
333
|
}
|
|
334
334
|
|
|
335
335
|
&.is-info {
|
|
336
|
-
@include ac-button($
|
|
336
|
+
@include ac-button($info);
|
|
337
337
|
}
|
|
338
338
|
|
|
339
339
|
&.is-success {
|
|
340
|
-
@include ac-button($
|
|
340
|
+
@include ac-button($success);
|
|
341
341
|
}
|
|
342
342
|
|
|
343
343
|
&.is-warning {
|
|
344
|
-
@include ac-button($
|
|
344
|
+
@include ac-button($warning);
|
|
345
345
|
}
|
|
346
346
|
|
|
347
347
|
&.is-danger {
|
|
348
|
-
@include ac-button($
|
|
348
|
+
@include ac-button($danger);
|
|
349
349
|
}
|
|
350
350
|
|
|
351
351
|
&.is-green {
|
|
352
|
-
@include ac-button($
|
|
352
|
+
@include ac-button($success);
|
|
353
353
|
}
|
|
354
354
|
}
|
|
355
355
|
|
|
@@ -359,8 +359,8 @@
|
|
|
359
359
|
height: 60px;
|
|
360
360
|
background-color: transparent;
|
|
361
361
|
transition: 0.3s ease-in-out;
|
|
362
|
-
border: 2px solid $
|
|
363
|
-
color: $
|
|
362
|
+
border: 2px solid $black-30;
|
|
363
|
+
color: $black-30;
|
|
364
364
|
|
|
365
365
|
i.fa {
|
|
366
366
|
padding-left: 5px;
|
|
@@ -368,27 +368,27 @@
|
|
|
368
368
|
|
|
369
369
|
// ac-button from mixin
|
|
370
370
|
&.is-primary {
|
|
371
|
-
@include ac-play-button($
|
|
371
|
+
@include ac-play-button($primary);
|
|
372
372
|
}
|
|
373
373
|
|
|
374
374
|
&.is-link {
|
|
375
|
-
@include ac-play-button($
|
|
375
|
+
@include ac-play-button($info);
|
|
376
376
|
}
|
|
377
377
|
|
|
378
378
|
&.is-info {
|
|
379
|
-
@include ac-play-button($
|
|
379
|
+
@include ac-play-button($info);
|
|
380
380
|
}
|
|
381
381
|
|
|
382
382
|
&.is-success {
|
|
383
|
-
@include ac-play-button($
|
|
383
|
+
@include ac-play-button($success);
|
|
384
384
|
}
|
|
385
385
|
|
|
386
386
|
&.is-warning {
|
|
387
|
-
@include ac-play-button($
|
|
387
|
+
@include ac-play-button($warning);
|
|
388
388
|
}
|
|
389
389
|
|
|
390
390
|
&.is-danger {
|
|
391
|
-
@include ac-play-button($
|
|
391
|
+
@include ac-play-button($danger);
|
|
392
392
|
}
|
|
393
393
|
|
|
394
394
|
&.is-large {
|
|
@@ -396,7 +396,7 @@
|
|
|
396
396
|
display: inline-block;
|
|
397
397
|
padding: 0 25px 0 4px;
|
|
398
398
|
height: 53px;
|
|
399
|
-
border: 1px solid $
|
|
399
|
+
border: 1px solid $primary;
|
|
400
400
|
|
|
401
401
|
.ac-play {
|
|
402
402
|
width: 44px;
|
|
@@ -404,7 +404,7 @@
|
|
|
404
404
|
font-size: 16px;
|
|
405
405
|
line-height: 44px;
|
|
406
406
|
display: inline-block;
|
|
407
|
-
border: 1px solid $
|
|
407
|
+
border: 1px solid $primary;
|
|
408
408
|
border-radius: 50%;
|
|
409
409
|
margin-right: 10px;
|
|
410
410
|
}
|
|
@@ -412,7 +412,7 @@
|
|
|
412
412
|
span {
|
|
413
413
|
font-size: 16px;
|
|
414
414
|
font-weight: 600;
|
|
415
|
-
color: $
|
|
415
|
+
color: $primary;
|
|
416
416
|
}
|
|
417
417
|
}
|
|
418
418
|
}
|
|
@@ -427,10 +427,10 @@
|
|
|
427
427
|
width: 52px;
|
|
428
428
|
margin-bottom: 0;
|
|
429
429
|
margin-right: 10px;
|
|
430
|
-
background-color: $
|
|
430
|
+
background-color: $primary;
|
|
431
431
|
|
|
432
432
|
i.fa {
|
|
433
|
-
color: $
|
|
433
|
+
color: $white-100;
|
|
434
434
|
}
|
|
435
435
|
}
|
|
436
436
|
|
|
@@ -438,7 +438,7 @@
|
|
|
438
438
|
font-size: 16px;
|
|
439
439
|
font-weight: 600;
|
|
440
440
|
display: block;
|
|
441
|
-
color: $
|
|
441
|
+
color: $primary-10;
|
|
442
442
|
|
|
443
443
|
span {
|
|
444
444
|
font-size: 12px;
|
|
@@ -449,7 +449,7 @@
|
|
|
449
449
|
|
|
450
450
|
&:hover {
|
|
451
451
|
p {
|
|
452
|
-
color: $
|
|
452
|
+
color: $primary;
|
|
453
453
|
}
|
|
454
454
|
}
|
|
455
455
|
}
|
|
@@ -477,7 +477,7 @@
|
|
|
477
477
|
padding: 10px;
|
|
478
478
|
font-size: 15px;
|
|
479
479
|
font-weight: 500;
|
|
480
|
-
color: $
|
|
480
|
+
color: $primary-20;
|
|
481
481
|
background-color: transparent;
|
|
482
482
|
width: 100%;
|
|
483
483
|
-moz-appearance: textfield;
|
|
@@ -491,7 +491,7 @@
|
|
|
491
491
|
|
|
492
492
|
&:focus {
|
|
493
493
|
outline: none;
|
|
494
|
-
background-color: $
|
|
494
|
+
background-color: $white-100;
|
|
495
495
|
}
|
|
496
496
|
}
|
|
497
497
|
}
|
|
@@ -503,7 +503,7 @@
|
|
|
503
503
|
|
|
504
504
|
.ac-counter-arrow-wrapper {
|
|
505
505
|
height: 100%;
|
|
506
|
-
color: $
|
|
506
|
+
color: $primary-10;
|
|
507
507
|
border-left: 1px solid $ac-label-text;
|
|
508
508
|
|
|
509
509
|
.ac-counter-arrow {
|
|
@@ -514,7 +514,7 @@
|
|
|
514
514
|
height: 23px;
|
|
515
515
|
|
|
516
516
|
&:hover {
|
|
517
|
-
color: $
|
|
517
|
+
color: $primary-10;
|
|
518
518
|
}
|
|
519
519
|
|
|
520
520
|
&:first-child {
|
|
@@ -545,7 +545,7 @@
|
|
|
545
545
|
}
|
|
546
546
|
|
|
547
547
|
.up-down-button {
|
|
548
|
-
background-color: $
|
|
548
|
+
background-color: $primary-90;
|
|
549
549
|
border: none;
|
|
550
550
|
display: block;
|
|
551
551
|
cursor: pointer;
|
|
@@ -554,8 +554,8 @@
|
|
|
554
554
|
color: #a4a4a4;
|
|
555
555
|
|
|
556
556
|
&.is-info {
|
|
557
|
-
background-color: $
|
|
558
|
-
color: $
|
|
557
|
+
background-color: $primary;
|
|
558
|
+
color: $white-100;
|
|
559
559
|
transition: 0.3s;
|
|
560
560
|
}
|
|
561
561
|
|
|
@@ -577,7 +577,7 @@
|
|
|
577
577
|
width: 5px;
|
|
578
578
|
height: 5px;
|
|
579
579
|
border-radius: 50%;
|
|
580
|
-
background-color: $
|
|
580
|
+
background-color: $primary-20;
|
|
581
581
|
margin-bottom: 3px;
|
|
582
582
|
|
|
583
583
|
&:last-child {
|
|
@@ -590,15 +590,15 @@
|
|
|
590
590
|
// dark theme start
|
|
591
591
|
.is-dark-theme {
|
|
592
592
|
.button.ac-button.is-primary.is-light {
|
|
593
|
-
background-color: $
|
|
594
|
-
color: $
|
|
593
|
+
background-color: $primary;
|
|
594
|
+
color: $white-100;
|
|
595
595
|
&:hover {
|
|
596
596
|
opacity: 0.8;
|
|
597
597
|
}
|
|
598
598
|
}
|
|
599
599
|
.button.ac-button.is-danger.is-light {
|
|
600
|
-
background-color: $
|
|
601
|
-
color: $
|
|
600
|
+
background-color: $danger;
|
|
601
|
+
color: $white-100;
|
|
602
602
|
&:hover {
|
|
603
603
|
opacity: 0.8;
|
|
604
604
|
}
|