@appscode/design-system 0.0.21-alpha.2 → 0.4.27
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 +7 -0
- package/base/utilities/_customize-bulma.scss +191 -0
- package/base/utilities/_default.scss +319 -110
- package/base/utilities/_derived-variables.scss +8 -15
- package/base/utilities/_grid.scss +29 -0
- package/base/utilities/_initial-variables.scss +111 -72
- package/base/utilities/_mixin.scss +90 -10
- package/base/utilities/_typography.scss +29 -19
- package/base/utilities/dark-theme.scss +26 -0
- package/components/_ac-accordion.scss +15 -5
- package/components/_ac-alert-box.scss +109 -26
- package/components/_ac-card.scss +71 -24
- package/components/_ac-code-highlight.scss +7 -1
- package/components/_ac-content-layout.scss +5 -5
- package/components/_ac-drag.scss +8 -6
- package/components/_ac-input.scss +196 -38
- package/components/_ac-modal.scss +6 -5
- package/components/_ac-multi-select.scss +281 -23
- package/components/_ac-options.scss +31 -16
- package/components/_ac-report.scss +53 -0
- package/components/_ac-select-box.scss +15 -5
- package/components/_ac-table.scss +160 -39
- package/components/_ac-tabs.scss +86 -23
- package/components/_ac-tags.scss +87 -2
- package/components/_ac-terminal.scss +270 -0
- package/components/_all.scss +28 -0
- package/components/_app-drawer.scss +134 -0
- package/components/_breadcumb.scss +8 -3
- package/components/_buttons.scss +96 -62
- package/components/_card-body-wrapper.scss +3 -3
- package/components/_dashboard-header.scss +33 -1
- package/components/_direct-deploy.scss +69 -0
- package/components/_go-to-top.scss +1 -1
- package/components/_graph.scss +45 -0
- package/components/_image-upload.scss +6 -4
- package/components/_left-sidebar-menu.scss +212 -52
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +193 -31
- package/components/_overview-info.scss +4 -4
- package/components/_overview-page.scss +1 -2
- package/components/_pagination.scss +45 -7
- package/components/_payment-card.scss +28 -12
- package/components/_preloader.scss +1 -1
- package/components/_preview-modal.scss +22 -9
- package/components/_pricing-table.scss +1 -1
- package/components/_progress-bar.scss +5 -5
- package/components/_subscription-card.scss +15 -8
- package/components/_table-of-content.scss +1 -1
- package/components/_tfa.scss +69 -0
- package/components/_transitions.scss +261 -0
- package/components/_widget-menu.scss +9 -9
- package/components/_wizard.scss +33 -20
- package/components/ac-toaster/_ac-toasted.scss +40 -8
- package/components/bbum/_all.scss +9 -0
- package/components/bbum/_card-team.scss +18 -10
- package/components/bbum/_information-center.scss +19 -5
- package/components/bbum/_mobile-desktop.scss +6 -6
- package/components/bbum/_post.scss +5 -4
- package/components/bbum/_sign-up-notification.scss +6 -6
- package/components/bbum/_single-post-preview.scss +10 -10
- package/components/bbum/_user-profile.scss +97 -90
- package/components/ui-builder/_ui-builder.scss +98 -21
- package/components/ui-builder/_vue-open-api.scss +104 -0
- package/layouts/_404.scss +159 -0
- package/layouts/_all.scss +2 -0
- package/layouts/_code-preview.scss +19 -8
- package/main.scss +6 -53
- package/package.json +4 -7
- package/plugins/caching.ts +243 -0
- package/plugins/theme.js +142 -0
- package/plugins/time-convert.js +49 -0
- package/plugins/vue-toaster.js +10 -6
- package/vue-components/v2/banner/Banner.vue +2 -2
- package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
- package/vue-components/v2/button/Button.vue +10 -1
- package/vue-components/v2/button/DownloadBtn.vue +45 -0
- package/vue-components/v2/card/Card.vue +1 -0
- package/vue-components/v2/card/CardContent.vue +5 -0
- package/vue-components/v2/card/CardHeader.vue +12 -0
- package/vue-components/v2/card/OverviewCard.vue +10 -0
- package/vue-components/v2/card/OverviewCards.vue +5 -0
- package/vue-components/v2/card/PaymentCard.vue +69 -0
- package/vue-components/v2/card/PaymentCardOptionButtons.vue +35 -0
- package/vue-components/v2/card/PaymentCards.vue +44 -0
- package/vue-components/v2/content/ContentHeader.vue +9 -5
- package/vue-components/v2/content/ContentTable.vue +12 -7
- package/vue-components/v2/editor/Editor.vue +38 -5
- package/vue-components/v2/editor/FilteredFileEditor.vue +189 -0
- package/vue-components/v2/editor/MonacoEditor.vue +125 -0
- package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
- package/vue-components/v2/form/Form.vue +12 -7
- package/vue-components/v2/form-fields/Input.vue +1 -1
- package/vue-components/v2/header/Header.vue +0 -1
- package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
- package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
- package/vue-components/v2/modal/Modal.vue +40 -7
- package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
- package/vue-components/v2/modals/JsonShowModal.vue +12 -3
- package/vue-components/v2/navbar/Appdrawer.vue +10 -9
- package/vue-components/v2/navbar/ThemeMode.vue +120 -0
- package/vue-components/v2/navbar/User.vue +229 -17
- package/vue-components/v2/notification/Notification.vue +101 -0
- package/vue-components/v2/notification/NotificationItem.vue +44 -0
- package/vue-components/v2/pagination/Pagination.vue +24 -4
- package/vue-components/v2/preloader/Preloader.vue +5 -5
- package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
- package/vue-components/v2/sidebar/SidebarItem.vue +24 -2
- package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
- package/vue-components/v2/tab/TabItem.vue +1 -1
- package/vue-components/v2/table/FakeTableCell.vue +36 -0
- package/vue-components/v2/table/InfoTable.vue +13 -3
- package/vue-components/v2/table/NarrowTable.vue +0 -2
- package/vue-components/v2/table/Table.vue +170 -10
- package/vue-components/v2/table/TableRow.vue +29 -2
- package/vue-components/v2/table/table-cell/CellValue.vue +33 -4
- package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
- package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
- package/vue-components/v2/tabs/EditorTabs.vue +1 -1
- package/vue-components/v3/button/Button.vue +78 -0
- package/vue-components/v3/content/ContentHeader.vue +55 -0
- package/vue-components/v3/content/ContentTable.vue +83 -0
- package/vue-components/v3/dropdown/DropdownDivider.vue +3 -0
- package/vue-components/v3/dropdown/DropdownItem.vue +5 -0
- package/vue-components/v3/dropdown/DropdownMenu.vue +111 -0
- package/vue-components/v3/editor/Editor.vue +160 -0
- package/vue-components/v3/editor/FilteredFileEditor.vue +186 -0
- package/vue-components/v3/editor/MonacoEditor.vue +131 -0
- package/vue-components/v3/editor/ResourceKeyValueEditor.vue +125 -0
- package/vue-components/v3/form/Form.vue +63 -0
- package/vue-components/v3/form-fields/Input.vue +22 -0
- package/vue-components/v3/header/Header.vue +45 -0
- package/vue-components/v3/header/HeaderItem.vue +5 -0
- package/vue-components/v3/header/HeaderItems.vue +5 -0
- package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
- package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
- package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +92 -0
- package/vue-components/v3/modal/Modal.vue +158 -0
- package/vue-components/v3/modals/DeleteConfirmationModal.vue +85 -0
- package/vue-components/v3/modals/JsonShowModal.vue +96 -0
- package/vue-components/v3/modals/LongRunningTasksModal.vue +373 -0
- package/vue-components/v3/navbar/Appdrawer.vue +63 -0
- package/vue-components/v3/navbar/ThemeMode.vue +120 -0
- package/vue-components/v3/navbar/User.vue +288 -0
- package/vue-components/v3/notification/Notification.vue +98 -0
- package/vue-components/v3/notification/NotificationItem.vue +52 -0
- package/vue-components/v3/pagination/Pagination.vue +172 -0
- package/vue-components/v3/searchbars/SearchBar.vue +47 -0
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
- package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
- package/vue-components/v3/tab/TabItem.vue +17 -0
- package/vue-components/v3/table/FakeTableCell.vue +39 -0
- package/vue-components/v3/table/InfoTable.vue +105 -0
- package/vue-components/v3/table/MultiInfoTable.vue +143 -0
- package/vue-components/v3/table/Table.vue +272 -0
- package/vue-components/v3/table/TableCell.vue +28 -0
- package/vue-components/v3/table/TableContainer.vue +34 -0
- package/vue-components/v3/table/TableRow.vue +147 -0
- package/vue-components/v3/table/table-cell/ArrayCell.vue +111 -0
- package/vue-components/v3/table/table-cell/CellValue.vue +133 -0
- package/vue-components/v3/table/table-cell/GenericCell.vue +75 -0
- package/vue-components/v3/table/table-cell/ObjectCell.vue +110 -0
- package/vue-components/v3/table/table-cell/ValueWithModal.vue +43 -0
- package/vue-components/v3/tabs/EditorTabs.vue +36 -0
- package/vue-components/v3/tag/Tag.vue +17 -0
- package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
.preview-icon {
|
|
2
2
|
width: 60px;
|
|
3
3
|
height: 60px;
|
|
4
|
-
background: rgba(25, 113, 189, 0.4);
|
|
4
|
+
background-color: rgba(25, 113, 189, 0.4);
|
|
5
5
|
box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.16);
|
|
6
6
|
border-radius: 4px 0px 0px 4px;
|
|
7
7
|
position: fixed;
|
|
@@ -55,8 +55,10 @@
|
|
|
55
55
|
top: -50px;
|
|
56
56
|
width: calc(100% + 90px);
|
|
57
57
|
height: 100%;
|
|
58
|
-
background:
|
|
59
|
-
|
|
58
|
+
background-color: $ac-white;
|
|
59
|
+
|
|
60
|
+
// remove opacity for fix cluster ui project
|
|
61
|
+
// opacity: 0.8;
|
|
60
62
|
z-index: -1;
|
|
61
63
|
}
|
|
62
64
|
|
|
@@ -81,11 +83,11 @@
|
|
|
81
83
|
font-weight: normal;
|
|
82
84
|
font-size: 16px;
|
|
83
85
|
line-height: 100%;
|
|
84
|
-
color:
|
|
86
|
+
color: $ac-gray-lightest;
|
|
85
87
|
cursor: pointer;
|
|
86
88
|
|
|
87
89
|
i.fa {
|
|
88
|
-
color:
|
|
90
|
+
color: $ac-gray-lightest;
|
|
89
91
|
padding-left: 5px;
|
|
90
92
|
}
|
|
91
93
|
}
|
|
@@ -106,7 +108,7 @@
|
|
|
106
108
|
li {
|
|
107
109
|
&.is-active {
|
|
108
110
|
a {
|
|
109
|
-
background: $ac-primary;
|
|
111
|
+
background-color: $ac-primary;
|
|
110
112
|
border-radius: 5px;
|
|
111
113
|
color: $ac-white;
|
|
112
114
|
padding: 10px 10px;
|
|
@@ -138,7 +140,7 @@
|
|
|
138
140
|
font-size: 14px;
|
|
139
141
|
line-height: 100%;
|
|
140
142
|
color: $ac-color-text;
|
|
141
|
-
border-top: 1px solid
|
|
143
|
+
border-top: 1px solid $ac-white-light;
|
|
142
144
|
|
|
143
145
|
span {
|
|
144
146
|
img {
|
|
@@ -150,7 +152,7 @@
|
|
|
150
152
|
|
|
151
153
|
&:last-child {
|
|
152
154
|
a {
|
|
153
|
-
border-bottom: 1px solid
|
|
155
|
+
border-bottom: 1px solid $ac-white-light;
|
|
154
156
|
}
|
|
155
157
|
}
|
|
156
158
|
}
|
|
@@ -162,7 +164,7 @@
|
|
|
162
164
|
width: 100%;
|
|
163
165
|
|
|
164
166
|
.code-preview {
|
|
165
|
-
background:
|
|
167
|
+
background-color: $ac-white-light;
|
|
166
168
|
border-radius: 4px;
|
|
167
169
|
display: flex;
|
|
168
170
|
|
|
@@ -178,3 +180,14 @@
|
|
|
178
180
|
}
|
|
179
181
|
}
|
|
180
182
|
}
|
|
183
|
+
.left-content {
|
|
184
|
+
.ac-files {
|
|
185
|
+
max-height: 350px;
|
|
186
|
+
overflow-y: auto;
|
|
187
|
+
padding: 10px;
|
|
188
|
+
span {
|
|
189
|
+
width: 20px;
|
|
190
|
+
white-space: nowrap;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
|
|
15
15
|
.progress-tooltip-info {
|
|
16
16
|
align-items: center;
|
|
17
|
-
background: $ac-bg-light-gray;
|
|
18
|
-
border: 1px solid $ac-
|
|
17
|
+
background-color: $ac-bg-light-gray;
|
|
18
|
+
border: 1px solid $ac-label-text;
|
|
19
19
|
border-radius: 10px;
|
|
20
|
-
box-shadow: 0 0 2px $ac-
|
|
20
|
+
box-shadow: 0 0 2px $ac-label-text;
|
|
21
21
|
color: $ac-primary;
|
|
22
22
|
display: inline-flex;
|
|
23
23
|
font-family: sans-serif;
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
left: 50%;
|
|
42
42
|
transform: translateX(-50%);
|
|
43
43
|
border-width: 8px;
|
|
44
|
-
border-top-color: $ac-
|
|
44
|
+
border-top-color: $ac-label-text;
|
|
45
45
|
bottom: -16px;
|
|
46
46
|
left: 50%;
|
|
47
47
|
}
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
display: flex;
|
|
201
201
|
justify-content: space-between;
|
|
202
202
|
font-size: 12px;
|
|
203
|
-
color:
|
|
203
|
+
color: $ac-color-value;
|
|
204
204
|
margin-bottom: 5px;
|
|
205
205
|
}
|
|
206
206
|
.progress-line {
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.single-subscription-card {
|
|
6
|
-
border: 1px solid $ac-
|
|
7
|
-
background:
|
|
6
|
+
border: 1px solid $ac-blue-light;
|
|
7
|
+
background-color: $ac-white;
|
|
8
8
|
padding: 10px;
|
|
9
9
|
transition: 0.3s ease-in-out;
|
|
10
10
|
border-radius: 4px;
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
box-shadow: none;
|
|
47
47
|
border-bottom: 1px solid $ac-white-light;
|
|
48
48
|
margin-bottom: 10px;
|
|
49
|
-
background: transparent;
|
|
49
|
+
background-color: transparent;
|
|
50
50
|
padding: 0;
|
|
51
51
|
|
|
52
52
|
h5 {
|
|
53
|
-
font-family:
|
|
53
|
+
font-family: $ac-family-heading;
|
|
54
54
|
font-style: normal;
|
|
55
55
|
font-weight: 600;
|
|
56
56
|
font-size: 14px;
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
font-weight: normal;
|
|
72
72
|
font-size: 12px;
|
|
73
73
|
line-height: 14px;
|
|
74
|
-
color:
|
|
74
|
+
color: $ac-color-value;
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
li {
|
|
@@ -81,10 +81,10 @@
|
|
|
81
81
|
font-size: 14px;
|
|
82
82
|
line-height: 16px;
|
|
83
83
|
padding-bottom: 8px;
|
|
84
|
-
color:
|
|
84
|
+
color: $ac-color-value;
|
|
85
85
|
|
|
86
86
|
.fa {
|
|
87
|
-
color:
|
|
87
|
+
color: $ac-color-value;
|
|
88
88
|
margin-right: 10px;
|
|
89
89
|
}
|
|
90
90
|
}
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
.quantity {
|
|
109
|
-
background: #f99a00;
|
|
109
|
+
background-color: #f99a00;
|
|
110
110
|
border-radius: 3px;
|
|
111
111
|
font-weight: normal;
|
|
112
112
|
font-size: 12px;
|
|
@@ -121,6 +121,13 @@
|
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
+
// dark theme start
|
|
125
|
+
.is-dark-theme {
|
|
126
|
+
.single-subscription-card {
|
|
127
|
+
background-color: var(--dark-bg-light);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
// dark theme end
|
|
124
131
|
/****************************************
|
|
125
132
|
Responsive Classes
|
|
126
133
|
*****************************************/
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
.qr-code-wrapper {
|
|
2
|
+
background: $ac-blue-light;
|
|
3
|
+
width: 240px;
|
|
4
|
+
height: 240px;
|
|
5
|
+
padding: 20px;
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
border-radius: 4px;
|
|
10
|
+
.qr-code-inner {
|
|
11
|
+
position: relative;
|
|
12
|
+
z-index: 1;
|
|
13
|
+
padding: 20px;
|
|
14
|
+
height: 200px;
|
|
15
|
+
img {
|
|
16
|
+
object-fit: cover;
|
|
17
|
+
height: 160px;
|
|
18
|
+
width: 160px;
|
|
19
|
+
}
|
|
20
|
+
.scanner {
|
|
21
|
+
position: absolute;
|
|
22
|
+
content: "";
|
|
23
|
+
left: 0;
|
|
24
|
+
top: 0;
|
|
25
|
+
width: 100%;
|
|
26
|
+
height: 100%;
|
|
27
|
+
&.shape-1:after {
|
|
28
|
+
position: absolute;
|
|
29
|
+
content: "";
|
|
30
|
+
left: 0;
|
|
31
|
+
top: 0;
|
|
32
|
+
width: 20px;
|
|
33
|
+
height: 20px;
|
|
34
|
+
border-top: 1px solid $ac-color-heading;
|
|
35
|
+
border-left: 1px solid $ac-color-heading;
|
|
36
|
+
}
|
|
37
|
+
&.shape-1:before {
|
|
38
|
+
position: absolute;
|
|
39
|
+
content: "";
|
|
40
|
+
right: 0;
|
|
41
|
+
top: 0;
|
|
42
|
+
width: 20px;
|
|
43
|
+
height: 20px;
|
|
44
|
+
border-top: 1px solid $ac-color-heading;
|
|
45
|
+
border-right: 1px solid $ac-color-heading;
|
|
46
|
+
}
|
|
47
|
+
&.shape-2:after {
|
|
48
|
+
position: absolute;
|
|
49
|
+
content: "";
|
|
50
|
+
left: 0;
|
|
51
|
+
bottom: 0;
|
|
52
|
+
width: 20px;
|
|
53
|
+
height: 20px;
|
|
54
|
+
border-bottom: 1px solid $ac-color-heading;
|
|
55
|
+
border-left: 1px solid $ac-color-heading;
|
|
56
|
+
}
|
|
57
|
+
&.shape-2:before {
|
|
58
|
+
position: absolute;
|
|
59
|
+
content: "";
|
|
60
|
+
right: 0;
|
|
61
|
+
bottom: 0;
|
|
62
|
+
width: 20px;
|
|
63
|
+
height: 20px;
|
|
64
|
+
border-bottom: 1px solid $ac-color-heading;
|
|
65
|
+
border-right: 1px solid $ac-color-heading;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
.sidebar-appear-enter-active,
|
|
2
|
+
.sidebar-appear-leave-active {
|
|
3
|
+
position: absolute;
|
|
4
|
+
width: 270px;
|
|
5
|
+
transition: all 0.2s ease;
|
|
6
|
+
}
|
|
7
|
+
.sidebar-appear-enter-from {
|
|
8
|
+
left: -100%;
|
|
9
|
+
opacity: 0;
|
|
10
|
+
}
|
|
11
|
+
.sidebar-appear-enter-to {
|
|
12
|
+
left: 0px;
|
|
13
|
+
opacity: 1;
|
|
14
|
+
}
|
|
15
|
+
.sidebar-appear-leave-from {
|
|
16
|
+
left: 0px;
|
|
17
|
+
opacity: 1;
|
|
18
|
+
}
|
|
19
|
+
.sidebar-appear-leave-to {
|
|
20
|
+
left: 100%;
|
|
21
|
+
opacity: 0;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.navbar-appear-enter-active,
|
|
25
|
+
.navbar-appear-leave-active {
|
|
26
|
+
position: absolute;
|
|
27
|
+
height: 50px;
|
|
28
|
+
transition: all 0.2s ease;
|
|
29
|
+
}
|
|
30
|
+
.navbar-appear-enter-from {
|
|
31
|
+
top: -100%;
|
|
32
|
+
opacity: 0;
|
|
33
|
+
}
|
|
34
|
+
.navbar-appear-enter-to {
|
|
35
|
+
top: 0px;
|
|
36
|
+
opacity: 1;
|
|
37
|
+
}
|
|
38
|
+
.navbar-appear-leave-from {
|
|
39
|
+
top: 0px;
|
|
40
|
+
opacity: 1;
|
|
41
|
+
}
|
|
42
|
+
.navbar-appear-leave-to {
|
|
43
|
+
top: 100%;
|
|
44
|
+
opacity: 0;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.nested-enter-active .inner,
|
|
48
|
+
.nested-leave-active .inner {
|
|
49
|
+
transition: all 0.2s ease-in-out;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.nested-enter-from .inner,
|
|
53
|
+
.nested-leave-to .inner {
|
|
54
|
+
transform: translateX(20px);
|
|
55
|
+
opacity: 0;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.slide-left-enter-active,
|
|
59
|
+
.slide-left-leave-active {
|
|
60
|
+
transition: all 0.3s ease-in-out;
|
|
61
|
+
}
|
|
62
|
+
.slide-left-enter-from {
|
|
63
|
+
transform: translateX(20px);
|
|
64
|
+
opacity: 0;
|
|
65
|
+
}
|
|
66
|
+
.slide-left-enter-to {
|
|
67
|
+
transform: translateX(0px);
|
|
68
|
+
opacity: 1;
|
|
69
|
+
}
|
|
70
|
+
.slide-left-leave-from {
|
|
71
|
+
transform: translateX(0px);
|
|
72
|
+
opacity: 1;
|
|
73
|
+
}
|
|
74
|
+
.slide-left-leave-to {
|
|
75
|
+
transform: translateX(-20px);
|
|
76
|
+
opacity: 0;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.slide-right-enter-active,
|
|
80
|
+
.slide-right-leave-active {
|
|
81
|
+
transition: all 0.2s ease-in-out;
|
|
82
|
+
}
|
|
83
|
+
.slide-right-enter-from {
|
|
84
|
+
transform: translateX(-20px);
|
|
85
|
+
opacity: 0;
|
|
86
|
+
}
|
|
87
|
+
.slide-right-enter-to {
|
|
88
|
+
transform: translateX(0px);
|
|
89
|
+
opacity: 1;
|
|
90
|
+
}
|
|
91
|
+
.slide-right-leave-from {
|
|
92
|
+
transform: translateX(0px);
|
|
93
|
+
opacity: 1;
|
|
94
|
+
}
|
|
95
|
+
.slide-right-leave-to {
|
|
96
|
+
transform: translateX(20px);
|
|
97
|
+
opacity: 0;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.slide-down-enter-active,
|
|
101
|
+
.slide-down-leave-active {
|
|
102
|
+
transition: all 0.2s ease-in-out;
|
|
103
|
+
}
|
|
104
|
+
.slide-down-enter-from {
|
|
105
|
+
transform: translateY(-10px);
|
|
106
|
+
opacity: 0;
|
|
107
|
+
}
|
|
108
|
+
.slide-down-enter-to {
|
|
109
|
+
transform: translateY(0px);
|
|
110
|
+
opacity: 1;
|
|
111
|
+
}
|
|
112
|
+
.slide-down-leave-from {
|
|
113
|
+
transform: translateY(0px);
|
|
114
|
+
opacity: 1;
|
|
115
|
+
}
|
|
116
|
+
.slide-down-leave-to {
|
|
117
|
+
transform: translateY(-10px);
|
|
118
|
+
opacity: 0;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.fade-enter-active,
|
|
122
|
+
.fade-leave-active {
|
|
123
|
+
transition: all 0.2s ease-in-out;
|
|
124
|
+
}
|
|
125
|
+
.fade-enter-from {
|
|
126
|
+
opacity: 0;
|
|
127
|
+
}
|
|
128
|
+
.fade-enter-to {
|
|
129
|
+
opacity: 1;
|
|
130
|
+
}
|
|
131
|
+
.fade-leave-from {
|
|
132
|
+
opacity: 1;
|
|
133
|
+
}
|
|
134
|
+
.fade-leave-to {
|
|
135
|
+
opacity: 0;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.list-move, /* apply transition to moving elements */
|
|
139
|
+
.list-enter-active,
|
|
140
|
+
.list-leave-active {
|
|
141
|
+
transition: all 0.5s ease;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.list-enter-from,
|
|
145
|
+
.list-leave-to {
|
|
146
|
+
opacity: 0;
|
|
147
|
+
transform: translateX(35px);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.list-leave-active {
|
|
151
|
+
position: absolute;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.overview-card-enter-active {
|
|
155
|
+
transition: all 0.2s ease-in-out;
|
|
156
|
+
}
|
|
157
|
+
.overview-card-leave-active {
|
|
158
|
+
transition: all 0.2s ease-in-out;
|
|
159
|
+
position: absolute;
|
|
160
|
+
}
|
|
161
|
+
.overview-card-enter-from {
|
|
162
|
+
transform: translateY(-20px);
|
|
163
|
+
opacity: 0;
|
|
164
|
+
}
|
|
165
|
+
.overview-card-enter-to {
|
|
166
|
+
transform: translateY(0px);
|
|
167
|
+
opacity: 1;
|
|
168
|
+
}
|
|
169
|
+
.overview-card-leave-from {
|
|
170
|
+
transform: translateY(0px);
|
|
171
|
+
opacity: 1;
|
|
172
|
+
}
|
|
173
|
+
.overview-card-leave-to {
|
|
174
|
+
transform: translateY(-10px);
|
|
175
|
+
opacity: 0;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.cluster-card-enter-active {
|
|
179
|
+
transition: all 0.2s ease-in-out;
|
|
180
|
+
}
|
|
181
|
+
.cluster-card-leave-active {
|
|
182
|
+
transition: all 0s;
|
|
183
|
+
position: absolute;
|
|
184
|
+
}
|
|
185
|
+
.cluster-card-enter-from {
|
|
186
|
+
transform: translateX(-20px);
|
|
187
|
+
opacity: 0;
|
|
188
|
+
}
|
|
189
|
+
.cluster-card-enter-to {
|
|
190
|
+
transform: translateX(0px);
|
|
191
|
+
opacity: 1;
|
|
192
|
+
}
|
|
193
|
+
.cluster-card-leave-from {
|
|
194
|
+
transform: translateX(0px);
|
|
195
|
+
opacity: 1;
|
|
196
|
+
}
|
|
197
|
+
.cluster-card-leave-to {
|
|
198
|
+
opacity: 0;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.dropdown-animate.dropdown-show-animation .dropdown-content {
|
|
202
|
+
animation: dropdownAnim 0.2s ease-in-out;
|
|
203
|
+
}
|
|
204
|
+
.dropdown-animate.dropdown-hide-animation .dropdown-content {
|
|
205
|
+
animation: dropdownAnim reverse 0.2s ease-in-out;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
@keyframes dropdownAnim {
|
|
209
|
+
0% {
|
|
210
|
+
opacity: 0;
|
|
211
|
+
transform: translateY(-10px);
|
|
212
|
+
}
|
|
213
|
+
100% {
|
|
214
|
+
opacity: 1;
|
|
215
|
+
transform: translateY(0px);
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.accordion-enter-active,
|
|
220
|
+
.accordion-leave-active {
|
|
221
|
+
transition: all 0.3s ease-in-out;
|
|
222
|
+
position: relative;
|
|
223
|
+
}
|
|
224
|
+
.accordion-enter-from {
|
|
225
|
+
top: -10px;
|
|
226
|
+
opacity: 0;
|
|
227
|
+
}
|
|
228
|
+
.accordion-enter-to {
|
|
229
|
+
top: 0px;
|
|
230
|
+
opacity: 1;
|
|
231
|
+
}
|
|
232
|
+
.accordion-leave-from {
|
|
233
|
+
top: 0px;
|
|
234
|
+
opacity: 1;
|
|
235
|
+
}
|
|
236
|
+
.accordion-leave-to {
|
|
237
|
+
top: -10px;
|
|
238
|
+
opacity: 0;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.fa.fa-spinner.spin {
|
|
242
|
+
-webkit-animation: spin 1s linear infinite;
|
|
243
|
+
-moz-animation: spinAnim 1s linear infinite;
|
|
244
|
+
animation: spinAnim 1s linear infinite;
|
|
245
|
+
}
|
|
246
|
+
@-moz-keyframes spinAnim {
|
|
247
|
+
100% {
|
|
248
|
+
-moz-transform: rotate(360deg);
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
@-webkit-keyframes spinAnim {
|
|
252
|
+
100% {
|
|
253
|
+
-webkit-transform: rotate(360deg);
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
@keyframes spinAnim {
|
|
257
|
+
100% {
|
|
258
|
+
-webkit-transform: rotate(360deg);
|
|
259
|
+
transform: rotate(360deg);
|
|
260
|
+
}
|
|
261
|
+
}
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
// width: 6px;
|
|
47
47
|
// height: 6px;
|
|
48
48
|
// border-radius: 50%;
|
|
49
|
-
// background-color:
|
|
49
|
+
// background-color: $ac-color-value;
|
|
50
50
|
// }
|
|
51
51
|
|
|
52
52
|
&::after {
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
top: -7px;
|
|
58
58
|
width: 1px;
|
|
59
59
|
height: calc(100% - 4px);
|
|
60
|
-
background-color:
|
|
60
|
+
background-color: $ac-color-value;
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
li {
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
width: 7px;
|
|
75
75
|
height: 7px;
|
|
76
76
|
border-radius: 50%;
|
|
77
|
-
background-color:
|
|
77
|
+
background-color: $ac-color-value;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
&::after {
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
top: 18.4px;
|
|
85
85
|
width: 20px;
|
|
86
86
|
height: 1px;
|
|
87
|
-
background:
|
|
87
|
+
background-color: $ac-color-value;
|
|
88
88
|
z-index: 9;
|
|
89
89
|
}
|
|
90
90
|
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
width: 100%;
|
|
135
135
|
justify-content: space-between;
|
|
136
136
|
padding: 18px;
|
|
137
|
-
background: $ac-white-light;
|
|
137
|
+
background-color: $ac-white-light;
|
|
138
138
|
|
|
139
139
|
p {
|
|
140
140
|
font-size: 13px;
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
top: 0;
|
|
200
200
|
width: 1px;
|
|
201
201
|
height: calc(100% - 22px);
|
|
202
|
-
background-color:
|
|
202
|
+
background-color: $ac-color-value;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
&::before {
|
|
@@ -211,7 +211,7 @@
|
|
|
211
211
|
width: 6px;
|
|
212
212
|
height: 6px;
|
|
213
213
|
border-radius: 50%;
|
|
214
|
-
background-color:
|
|
214
|
+
background-color: $ac-color-value;
|
|
215
215
|
}
|
|
216
216
|
|
|
217
217
|
li {
|
|
@@ -226,7 +226,7 @@
|
|
|
226
226
|
bottom: 22px;
|
|
227
227
|
width: 20px;
|
|
228
228
|
height: 1px;
|
|
229
|
-
background:
|
|
229
|
+
background-color: $ac-color-value;
|
|
230
230
|
z-index: 9;
|
|
231
231
|
}
|
|
232
232
|
|
|
@@ -239,7 +239,7 @@
|
|
|
239
239
|
width: 6px;
|
|
240
240
|
height: 6px;
|
|
241
241
|
border-radius: 50%;
|
|
242
|
-
background-color:
|
|
242
|
+
background-color: $ac-color-value;
|
|
243
243
|
}
|
|
244
244
|
}
|
|
245
245
|
}
|