@appscode/design-system 1.1.0-alpha.9 → 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 +1 -1
- 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 -118
- 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/components/_navbar.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.ac-navbar-area {
|
|
2
|
-
background-color: $
|
|
2
|
+
background-color: $primary;
|
|
3
3
|
box-shadow: $ac-shadow-3;
|
|
4
4
|
position: fixed;
|
|
5
5
|
width: 100%;
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
z-index: 999;
|
|
8
8
|
|
|
9
9
|
&.is-light {
|
|
10
|
-
background-color: $
|
|
10
|
+
background-color: $white-100;
|
|
11
11
|
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
|
|
12
12
|
|
|
13
13
|
.ac-navbar-menu .ac-menu-item .ac-nav-button.ac-profile-button {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.drawer-icon svg {
|
|
18
|
-
fill: $
|
|
18
|
+
fill: $primary-10 !important;
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
.logo {
|
|
33
33
|
font-size: 20px;
|
|
34
34
|
font-weight: 600;
|
|
35
|
-
color: $
|
|
35
|
+
color: $white-100;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
img {
|
|
@@ -48,21 +48,21 @@
|
|
|
48
48
|
border-radius: 4px;
|
|
49
49
|
|
|
50
50
|
span {
|
|
51
|
-
color: $
|
|
51
|
+
color: $white-100;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
input {
|
|
55
55
|
background-color: transparent;
|
|
56
56
|
border: none;
|
|
57
|
-
color: $
|
|
58
|
-
font-size:
|
|
57
|
+
color: $white-100;
|
|
58
|
+
font-size: 13px;
|
|
59
59
|
font-weight: 600;
|
|
60
|
-
font-family: $
|
|
60
|
+
font-family: $font-heading;
|
|
61
61
|
width: 100%;
|
|
62
62
|
padding-left: 15px;
|
|
63
63
|
|
|
64
64
|
&::placeholder {
|
|
65
|
-
color: $
|
|
65
|
+
color: $white-100-lighter;
|
|
66
66
|
font-weight: 500;
|
|
67
67
|
}
|
|
68
68
|
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
height: 26px;
|
|
90
90
|
border-radius: 50%;
|
|
91
91
|
overflow: hidden;
|
|
92
|
-
border: 2px solid $
|
|
92
|
+
border: 2px solid $white-100;
|
|
93
93
|
|
|
94
94
|
&:last-child {
|
|
95
95
|
margin-right: 0;
|
|
@@ -98,10 +98,10 @@
|
|
|
98
98
|
|
|
99
99
|
.more-items {
|
|
100
100
|
text-align: center;
|
|
101
|
-
color: $
|
|
101
|
+
color: $white-100;
|
|
102
102
|
z-index: 99;
|
|
103
103
|
position: absolute;
|
|
104
|
-
font-size:
|
|
104
|
+
font-size: 12px;
|
|
105
105
|
font-weight: 500;
|
|
106
106
|
}
|
|
107
107
|
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
&:hover {
|
|
151
151
|
.ac-nav-button:not(.ac-profile-button) {
|
|
152
152
|
i.fa {
|
|
153
|
-
color: $
|
|
153
|
+
color: $white-100;
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
|
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
overflow-y: auto;
|
|
168
168
|
border-radius: 4px;
|
|
169
169
|
left: 0;
|
|
170
|
-
background-color: $
|
|
170
|
+
background-color: $white-100;
|
|
171
171
|
|
|
172
172
|
ul {
|
|
173
173
|
li {
|
|
@@ -179,8 +179,8 @@
|
|
|
179
179
|
cursor: pointer;
|
|
180
180
|
|
|
181
181
|
&.is-active {
|
|
182
|
-
color: $
|
|
183
|
-
background: $
|
|
182
|
+
color: $white-100;
|
|
183
|
+
background: $primary;
|
|
184
184
|
}
|
|
185
185
|
}
|
|
186
186
|
}
|
|
@@ -195,7 +195,7 @@
|
|
|
195
195
|
content: "";
|
|
196
196
|
right: 15px;
|
|
197
197
|
top: -6px;
|
|
198
|
-
background-color: $
|
|
198
|
+
background-color: $white-100;
|
|
199
199
|
width: 15px;
|
|
200
200
|
height: 15px;
|
|
201
201
|
transform: rotate(45deg);
|
|
@@ -212,12 +212,12 @@
|
|
|
212
212
|
.ac-nav-button {
|
|
213
213
|
background-color: transparent;
|
|
214
214
|
border: none;
|
|
215
|
-
color: $
|
|
215
|
+
color: $white-100-lighter;
|
|
216
216
|
padding: 0 14px;
|
|
217
217
|
margin-left: 15px;
|
|
218
218
|
|
|
219
219
|
&.ac-profile-button {
|
|
220
|
-
color: $
|
|
220
|
+
color: $white-100;
|
|
221
221
|
}
|
|
222
222
|
|
|
223
223
|
&:last-child {
|
|
@@ -230,11 +230,11 @@
|
|
|
230
230
|
right: 5px;
|
|
231
231
|
width: 15px;
|
|
232
232
|
height: 15px;
|
|
233
|
-
background-color: $
|
|
233
|
+
background-color: $white-100;
|
|
234
234
|
font-size: 12px;
|
|
235
235
|
line-height: 15px;
|
|
236
236
|
border-radius: 50%;
|
|
237
|
-
color: $
|
|
237
|
+
color: $primary;
|
|
238
238
|
z-index: 9;
|
|
239
239
|
}
|
|
240
240
|
|
|
@@ -245,10 +245,10 @@
|
|
|
245
245
|
|
|
246
246
|
&.ac-profile-button {
|
|
247
247
|
strong {
|
|
248
|
-
color: $
|
|
248
|
+
color: $white-100;
|
|
249
249
|
margin-left: 16px;
|
|
250
250
|
font-weight: 500;
|
|
251
|
-
font-size:
|
|
251
|
+
font-size: 13px;
|
|
252
252
|
}
|
|
253
253
|
|
|
254
254
|
.ac-user-profile {
|
|
@@ -280,14 +280,14 @@
|
|
|
280
280
|
}
|
|
281
281
|
|
|
282
282
|
.user-profile-wrapper {
|
|
283
|
-
background-color: $
|
|
283
|
+
background-color: $white-100;
|
|
284
284
|
padding: 20px;
|
|
285
285
|
border-radius: 4px;
|
|
286
286
|
|
|
287
287
|
.profile-area {
|
|
288
288
|
display: flex;
|
|
289
289
|
align-items: center;
|
|
290
|
-
border-bottom: 1px solid $
|
|
290
|
+
border-bottom: 1px solid $primary-90;
|
|
291
291
|
padding-bottom: 10px;
|
|
292
292
|
margin-bottom: 10px;
|
|
293
293
|
|
|
@@ -316,14 +316,14 @@
|
|
|
316
316
|
|
|
317
317
|
.profile-info {
|
|
318
318
|
p {
|
|
319
|
-
color: $
|
|
320
|
-
font-size:
|
|
319
|
+
color: $primary-10;
|
|
320
|
+
font-size: 13px;
|
|
321
321
|
font-weight: 500;
|
|
322
322
|
line-height: 1.3;
|
|
323
323
|
}
|
|
324
324
|
|
|
325
325
|
a {
|
|
326
|
-
font-size:
|
|
326
|
+
font-size: 12px;
|
|
327
327
|
color: #74818d;
|
|
328
328
|
line-height: 1.3;
|
|
329
329
|
}
|
|
@@ -336,8 +336,8 @@
|
|
|
336
336
|
padding: 8px 0px;
|
|
337
337
|
|
|
338
338
|
&:hover {
|
|
339
|
-
background-color: transparent;
|
|
340
|
-
color: $
|
|
339
|
+
// background-color: transparent;
|
|
340
|
+
color: $primary;
|
|
341
341
|
}
|
|
342
342
|
}
|
|
343
343
|
}
|
|
@@ -345,7 +345,7 @@
|
|
|
345
345
|
}
|
|
346
346
|
|
|
347
347
|
&.quick-access {
|
|
348
|
-
background-color: $
|
|
348
|
+
background-color: $white-100;
|
|
349
349
|
padding: 20px;
|
|
350
350
|
min-width: 260px !important;
|
|
351
351
|
max-height: 250px;
|
|
@@ -356,19 +356,19 @@
|
|
|
356
356
|
display: flex;
|
|
357
357
|
justify-content: space-between;
|
|
358
358
|
align-items: center;
|
|
359
|
-
border-bottom: 1px solid $
|
|
359
|
+
border-bottom: 1px solid $primary-90;
|
|
360
360
|
padding-bottom: 20px;
|
|
361
361
|
|
|
362
362
|
p {
|
|
363
|
-
font-size:
|
|
364
|
-
color: $
|
|
363
|
+
font-size: 13px;
|
|
364
|
+
color: $primary-10;
|
|
365
365
|
}
|
|
366
366
|
|
|
367
367
|
button {
|
|
368
368
|
background-color: transparent;
|
|
369
369
|
border: none;
|
|
370
370
|
cursor: pointer;
|
|
371
|
-
color: $
|
|
371
|
+
color: $primary-20;
|
|
372
372
|
}
|
|
373
373
|
}
|
|
374
374
|
|
|
@@ -376,8 +376,8 @@
|
|
|
376
376
|
margin-top: 20px;
|
|
377
377
|
|
|
378
378
|
p {
|
|
379
|
-
font-size:
|
|
380
|
-
color: $
|
|
379
|
+
font-size: 13px;
|
|
380
|
+
color: $primary-10;
|
|
381
381
|
}
|
|
382
382
|
|
|
383
383
|
.organizations {
|
|
@@ -401,7 +401,7 @@
|
|
|
401
401
|
.remove {
|
|
402
402
|
border: none;
|
|
403
403
|
padding: 0;
|
|
404
|
-
font-size:
|
|
404
|
+
font-size: 11px;
|
|
405
405
|
color: #eb5757;
|
|
406
406
|
background-color: transparent;
|
|
407
407
|
}
|
|
@@ -437,7 +437,7 @@
|
|
|
437
437
|
|
|
438
438
|
&.is-notification {
|
|
439
439
|
right: 0;
|
|
440
|
-
background-color: $
|
|
440
|
+
background-color: $white-100;
|
|
441
441
|
box-shadow: 0px 4px 8px rgba(84, 101, 126, 0.2);
|
|
442
442
|
border-radius: 4px;
|
|
443
443
|
min-width: 330px;
|
|
@@ -453,7 +453,7 @@
|
|
|
453
453
|
.left-content {
|
|
454
454
|
p {
|
|
455
455
|
font-weight: 500;
|
|
456
|
-
font-size:
|
|
456
|
+
font-size: 13px;
|
|
457
457
|
line-height: 19px;
|
|
458
458
|
margin-bottom: 15px;
|
|
459
459
|
|
|
@@ -462,7 +462,7 @@
|
|
|
462
462
|
}
|
|
463
463
|
|
|
464
464
|
&.date {
|
|
465
|
-
font-size:
|
|
465
|
+
font-size: 11px;
|
|
466
466
|
line-height: 14px;
|
|
467
467
|
font-weight: normal;
|
|
468
468
|
margin-bottom: 0;
|
|
@@ -475,11 +475,11 @@
|
|
|
475
475
|
border: none;
|
|
476
476
|
margin: 0;
|
|
477
477
|
padding: 10px;
|
|
478
|
-
font-size:
|
|
478
|
+
font-size: 13px;
|
|
479
479
|
|
|
480
480
|
&.is-active {
|
|
481
|
-
background-color: $
|
|
482
|
-
color: $
|
|
481
|
+
background-color: $primary;
|
|
482
|
+
color: $white-100;
|
|
483
483
|
|
|
484
484
|
img {
|
|
485
485
|
filter: brightness(100);
|
|
@@ -487,8 +487,8 @@
|
|
|
487
487
|
}
|
|
488
488
|
|
|
489
489
|
&:hover {
|
|
490
|
-
background-color: $
|
|
491
|
-
color: $
|
|
490
|
+
background-color: $primary;
|
|
491
|
+
color: $white-100;
|
|
492
492
|
|
|
493
493
|
img {
|
|
494
494
|
filter: brightness(100);
|
|
@@ -501,7 +501,7 @@
|
|
|
501
501
|
.notification-body {
|
|
502
502
|
.single-notification-item {
|
|
503
503
|
display: block;
|
|
504
|
-
border-top: 1px solid $
|
|
504
|
+
border-top: 1px solid $primary-90;
|
|
505
505
|
padding: 15px 20px;
|
|
506
506
|
font-weight: 500;
|
|
507
507
|
|
|
@@ -514,8 +514,8 @@
|
|
|
514
514
|
}
|
|
515
515
|
|
|
516
516
|
p {
|
|
517
|
-
color: $
|
|
518
|
-
font-size:
|
|
517
|
+
color: $primary-10;
|
|
518
|
+
font-size: 12px;
|
|
519
519
|
}
|
|
520
520
|
|
|
521
521
|
.notification-status {
|
|
@@ -525,19 +525,19 @@
|
|
|
525
525
|
justify-content: space-between;
|
|
526
526
|
|
|
527
527
|
p {
|
|
528
|
-
font-size:
|
|
528
|
+
font-size: 11px;
|
|
529
529
|
color: $ac-label-text;
|
|
530
530
|
|
|
531
531
|
&.is-success {
|
|
532
|
-
color: $
|
|
532
|
+
color: $success;
|
|
533
533
|
}
|
|
534
534
|
|
|
535
535
|
&.is-danger {
|
|
536
|
-
color: $
|
|
536
|
+
color: $danger;
|
|
537
537
|
}
|
|
538
538
|
|
|
539
539
|
&.is-warning {
|
|
540
|
-
color: $
|
|
540
|
+
color: $warning;
|
|
541
541
|
}
|
|
542
542
|
}
|
|
543
543
|
}
|
|
@@ -545,18 +545,18 @@
|
|
|
545
545
|
}
|
|
546
546
|
|
|
547
547
|
.see-all-message {
|
|
548
|
-
border-top: 1px solid $
|
|
548
|
+
border-top: 1px solid $primary-90;
|
|
549
549
|
text-align: center;
|
|
550
550
|
font-weight: 500;
|
|
551
|
-
font-size:
|
|
552
|
-
color: $
|
|
551
|
+
font-size: 13px;
|
|
552
|
+
color: $primary-10;
|
|
553
553
|
display: block;
|
|
554
554
|
padding: 10px 20px;
|
|
555
555
|
}
|
|
556
556
|
}
|
|
557
557
|
|
|
558
558
|
ul {
|
|
559
|
-
background-color: $
|
|
559
|
+
background-color: $white-100;
|
|
560
560
|
padding: 0;
|
|
561
561
|
border-radius: 4px;
|
|
562
562
|
overflow: hidden;
|
|
@@ -565,13 +565,13 @@
|
|
|
565
565
|
a {
|
|
566
566
|
display: block;
|
|
567
567
|
padding: 8px 15px;
|
|
568
|
-
color: $
|
|
568
|
+
color: $primary-10;
|
|
569
569
|
transition: 0.3s ease-in-out;
|
|
570
|
-
font-size:
|
|
570
|
+
font-size: 13px;
|
|
571
571
|
|
|
572
572
|
&:hover {
|
|
573
|
-
background-color: $
|
|
574
|
-
color: $
|
|
573
|
+
background-color: $primary;
|
|
574
|
+
color: $white-100;
|
|
575
575
|
}
|
|
576
576
|
}
|
|
577
577
|
}
|
|
@@ -612,10 +612,10 @@
|
|
|
612
612
|
}
|
|
613
613
|
|
|
614
614
|
.theme-choicee {
|
|
615
|
-
border: 1px solid $
|
|
615
|
+
border: 1px solid $primary-90;
|
|
616
616
|
|
|
617
617
|
li {
|
|
618
|
-
border-right: 1px solid $
|
|
618
|
+
border-right: 1px solid $primary-90;
|
|
619
619
|
cursor: pointer;
|
|
620
620
|
transition: 0.3s ease-in-out;
|
|
621
621
|
|
|
@@ -628,8 +628,8 @@
|
|
|
628
628
|
}
|
|
629
629
|
|
|
630
630
|
&.is-active {
|
|
631
|
-
background-color: $
|
|
632
|
-
color: $
|
|
631
|
+
background-color: $primary;
|
|
632
|
+
color: $white-100;
|
|
633
633
|
}
|
|
634
634
|
}
|
|
635
635
|
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
.cluster-overview {
|
|
2
|
-
background-color: $
|
|
2
|
+
background-color: $white-100;
|
|
3
3
|
height: calc(100vh - 80px);
|
|
4
4
|
|
|
5
5
|
.overview-title {
|
|
6
6
|
p {
|
|
7
7
|
font-size: 18px;
|
|
8
8
|
line-height: 1;
|
|
9
|
-
color: $
|
|
9
|
+
color: $primary-5;
|
|
10
10
|
font-weight: 500;
|
|
11
11
|
padding: 20px;
|
|
12
|
-
border-bottom: 1px solid $
|
|
12
|
+
border-bottom: 1px solid $primary-90;
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
h3 {
|
|
25
|
-
color: $
|
|
25
|
+
color: $primary-5;
|
|
26
26
|
font-size: 26px;
|
|
27
27
|
font-weight: 500;
|
|
28
28
|
}
|
|
@@ -41,13 +41,13 @@
|
|
|
41
41
|
|
|
42
42
|
h4 {
|
|
43
43
|
font-size: 12px;
|
|
44
|
-
color: $
|
|
44
|
+
color: $primary-20;
|
|
45
45
|
font-weight: 500;
|
|
46
46
|
opacity: 0.5;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
.button {
|
|
50
|
-
color: $
|
|
50
|
+
color: $primary-20;
|
|
51
51
|
text-decoration: underline;
|
|
52
52
|
}
|
|
53
53
|
}
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
font-size: 16px;
|
|
71
71
|
color: #f99a00;
|
|
72
72
|
font-weight: 500;
|
|
73
|
-
font-family: $
|
|
73
|
+
font-family: $font-heading;
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
}
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
// single charge
|
|
26
26
|
.single-charge-inner {
|
|
27
27
|
padding: 10px 0;
|
|
28
|
-
border-bottom: 1px solid $
|
|
28
|
+
border-bottom: 1px solid $primary-90;
|
|
29
29
|
|
|
30
30
|
&:last-child {
|
|
31
31
|
border-bottom: none;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
p.charge {
|
|
35
|
-
color: $
|
|
35
|
+
color: $primary-10;
|
|
36
36
|
font-size: 16px;
|
|
37
37
|
}
|
|
38
38
|
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
// bottom: 12px;
|
|
46
46
|
|
|
47
47
|
a {
|
|
48
|
-
color: $
|
|
48
|
+
color: $primary-10;
|
|
49
49
|
font-size: 16px;
|
|
50
50
|
font-weight: 500;
|
|
51
51
|
|
|
52
52
|
&:hover {
|
|
53
|
-
color: $
|
|
53
|
+
color: $primary;
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
}
|