@appscode/design-system 0.0.21-alpha.3 → 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 +191 -37
- 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
package/components/_buttons.scss
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
.button {
|
|
2
|
-
transition:
|
|
2
|
+
transition: 86ms ease-in-out;
|
|
3
3
|
|
|
4
4
|
// ac-button
|
|
5
5
|
&.ac-button {
|
|
6
6
|
border-color: $ac-primary;
|
|
7
|
-
border-radius:
|
|
7
|
+
border-radius: 4px;
|
|
8
8
|
font-size: 14px;
|
|
9
9
|
font-family: $ac-family-paragraph;
|
|
10
10
|
letter-spacing: 0.2px;
|
|
11
11
|
color: $ac-primary;
|
|
12
|
-
font-weight:
|
|
12
|
+
font-weight: 500;
|
|
13
13
|
height: 36px;
|
|
14
14
|
padding-left: 25px;
|
|
15
15
|
padding-right: 25px;
|
|
@@ -19,8 +19,18 @@
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
&:hover {
|
|
22
|
-
border-color:
|
|
23
|
-
|
|
22
|
+
border-color: hsla(
|
|
23
|
+
var(--hsl-hue),
|
|
24
|
+
var(--hsl-saturation),
|
|
25
|
+
calc(var(--hsl-lightness) - 9%),
|
|
26
|
+
1
|
|
27
|
+
);
|
|
28
|
+
color: hsla(
|
|
29
|
+
var(--hsl-hue),
|
|
30
|
+
var(--hsl-saturation),
|
|
31
|
+
calc(var(--hsl-lightness) - 9%),
|
|
32
|
+
1
|
|
33
|
+
);
|
|
24
34
|
}
|
|
25
35
|
|
|
26
36
|
&.underline-button {
|
|
@@ -32,7 +42,7 @@
|
|
|
32
42
|
|
|
33
43
|
&.is-primary {
|
|
34
44
|
color: $ac-primary;
|
|
35
|
-
background: transparent;
|
|
45
|
+
background-color: transparent;
|
|
36
46
|
|
|
37
47
|
&:hover {
|
|
38
48
|
background-color: unset;
|
|
@@ -44,14 +54,22 @@
|
|
|
44
54
|
opacity: 0.5 !important;
|
|
45
55
|
}
|
|
46
56
|
|
|
57
|
+
&.is-rounded {
|
|
58
|
+
border-radius: 9999px;
|
|
59
|
+
}
|
|
60
|
+
|
|
47
61
|
.ac-icon {
|
|
48
62
|
margin-left: 25px;
|
|
49
|
-
background: $ac-white;
|
|
63
|
+
background-color: $ac-white;
|
|
50
64
|
color: $ac-primary;
|
|
51
65
|
padding: 2px 6px;
|
|
52
66
|
border-radius: 4px;
|
|
53
|
-
width:
|
|
54
|
-
height:
|
|
67
|
+
width: 20px;
|
|
68
|
+
height: 20px;
|
|
69
|
+
display: flex;
|
|
70
|
+
align-items: center;
|
|
71
|
+
justify-content: center;
|
|
72
|
+
font-size: 12px;
|
|
55
73
|
}
|
|
56
74
|
|
|
57
75
|
&.is-small {
|
|
@@ -117,10 +135,14 @@
|
|
|
117
135
|
width: 52px;
|
|
118
136
|
height: 52px;
|
|
119
137
|
padding: 0;
|
|
120
|
-
|
|
138
|
+
&:hover {
|
|
139
|
+
svg {
|
|
140
|
+
color: $ac-white;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
121
143
|
&.is-gray {
|
|
122
144
|
background-color: $ac-white-light;
|
|
123
|
-
color:
|
|
145
|
+
color: $ac-gray-lightest;
|
|
124
146
|
border-color: transparent;
|
|
125
147
|
|
|
126
148
|
img {
|
|
@@ -129,37 +151,37 @@
|
|
|
129
151
|
|
|
130
152
|
i.fa {
|
|
131
153
|
font-size: 18px;
|
|
132
|
-
color:
|
|
154
|
+
color: $ac-gray-lightest;
|
|
133
155
|
}
|
|
134
156
|
|
|
135
157
|
&:hover {
|
|
136
|
-
background-color: $ac-
|
|
158
|
+
background-color: $ac-gray-lightest;
|
|
137
159
|
}
|
|
138
160
|
}
|
|
139
161
|
|
|
140
162
|
&.is-outlined-gray {
|
|
141
|
-
border: 1px solid
|
|
163
|
+
border: 1px solid $ac-white-light;
|
|
142
164
|
font-size: 15px;
|
|
143
165
|
}
|
|
144
166
|
|
|
145
167
|
&.is-transparent {
|
|
146
168
|
background-color: transparent;
|
|
147
|
-
color:
|
|
169
|
+
color: $ac-gray-darker;
|
|
148
170
|
|
|
149
171
|
&:hover {
|
|
150
|
-
background-color:
|
|
151
|
-
color:
|
|
172
|
+
background-color: $ac-white-lighter;
|
|
173
|
+
color: $ac-black;
|
|
152
174
|
}
|
|
153
175
|
|
|
154
176
|
&:focus {
|
|
155
|
-
background-color:
|
|
156
|
-
color:
|
|
177
|
+
background-color: $ac-white-lighter;
|
|
178
|
+
color: $ac-black;
|
|
157
179
|
}
|
|
158
180
|
}
|
|
159
181
|
|
|
160
182
|
&.transparent-bg {
|
|
161
183
|
background-color: transparent;
|
|
162
|
-
border: 1px solid $ac-
|
|
184
|
+
border: 1px solid $ac-label-text;
|
|
163
185
|
|
|
164
186
|
img {
|
|
165
187
|
&:hover {
|
|
@@ -200,7 +222,8 @@
|
|
|
200
222
|
border: none;
|
|
201
223
|
font-size: 14px;
|
|
202
224
|
font-weight: 500;
|
|
203
|
-
color:
|
|
225
|
+
background-color: transparent;
|
|
226
|
+
color: $ac-color-text;
|
|
204
227
|
|
|
205
228
|
&.is-primary {
|
|
206
229
|
background-color: transparent;
|
|
@@ -243,7 +266,7 @@
|
|
|
243
266
|
border: none;
|
|
244
267
|
|
|
245
268
|
&:hover {
|
|
246
|
-
background-color: darken(
|
|
269
|
+
background-color: darken(#e7e7e7, 9);
|
|
247
270
|
}
|
|
248
271
|
}
|
|
249
272
|
|
|
@@ -253,7 +276,7 @@
|
|
|
253
276
|
color: $ac-white;
|
|
254
277
|
|
|
255
278
|
&:hover {
|
|
256
|
-
background-color:
|
|
279
|
+
background-color: $ac-color-value;
|
|
257
280
|
}
|
|
258
281
|
}
|
|
259
282
|
|
|
@@ -263,7 +286,7 @@
|
|
|
263
286
|
color: $ac-white;
|
|
264
287
|
|
|
265
288
|
&:hover {
|
|
266
|
-
background-color:
|
|
289
|
+
background-color: hsla(0, 0, calc(var(--hsl-lightness) - 9%), 1);
|
|
267
290
|
}
|
|
268
291
|
}
|
|
269
292
|
|
|
@@ -274,13 +297,23 @@
|
|
|
274
297
|
&:hover {
|
|
275
298
|
box-shadow: none;
|
|
276
299
|
box-shadow: none;
|
|
277
|
-
color:
|
|
300
|
+
color: hsla(
|
|
301
|
+
var(--hsl-hue),
|
|
302
|
+
var(--hsl-saturation),
|
|
303
|
+
calc(var(--hsl-lightness) - 10%),
|
|
304
|
+
1
|
|
305
|
+
);
|
|
278
306
|
}
|
|
279
307
|
|
|
280
308
|
&:focus {
|
|
281
309
|
box-shadow: none;
|
|
282
310
|
box-shadow: none;
|
|
283
|
-
color:
|
|
311
|
+
color: hsla(
|
|
312
|
+
var(--hsl-hue),
|
|
313
|
+
var(--hsl-saturation),
|
|
314
|
+
calc(var(--hsl-lightness) - 10%),
|
|
315
|
+
1
|
|
316
|
+
);
|
|
284
317
|
}
|
|
285
318
|
}
|
|
286
319
|
|
|
@@ -385,33 +418,6 @@
|
|
|
385
418
|
}
|
|
386
419
|
}
|
|
387
420
|
|
|
388
|
-
// group buttons
|
|
389
|
-
.buttons {
|
|
390
|
-
&.are-medium {
|
|
391
|
-
.button {
|
|
392
|
-
&.ac-button {
|
|
393
|
-
@extend .is-medium;
|
|
394
|
-
}
|
|
395
|
-
}
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
&.are-small {
|
|
399
|
-
.button {
|
|
400
|
-
&.ac-button {
|
|
401
|
-
@extend .is-small;
|
|
402
|
-
}
|
|
403
|
-
}
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
&.are-large {
|
|
407
|
-
.button {
|
|
408
|
-
&.ac-button {
|
|
409
|
-
@extend .is-large;
|
|
410
|
-
}
|
|
411
|
-
}
|
|
412
|
-
}
|
|
413
|
-
}
|
|
414
|
-
|
|
415
421
|
.ac-play-button-wrapper {
|
|
416
422
|
display: flex;
|
|
417
423
|
align-items: center;
|
|
@@ -450,8 +456,8 @@
|
|
|
450
456
|
|
|
451
457
|
// counter button start
|
|
452
458
|
.ac-counter-button {
|
|
453
|
-
background:
|
|
454
|
-
border: 1px solid $ac-
|
|
459
|
+
background-color: transparent;
|
|
460
|
+
border: 1px solid $ac-label-text;
|
|
455
461
|
border-radius: 4px;
|
|
456
462
|
height: 46px;
|
|
457
463
|
overflow: hidden;
|
|
@@ -471,7 +477,8 @@
|
|
|
471
477
|
padding: 10px;
|
|
472
478
|
font-size: 15px;
|
|
473
479
|
font-weight: 500;
|
|
474
|
-
|
|
480
|
+
color: $ac-color-value;
|
|
481
|
+
background-color: transparent;
|
|
475
482
|
width: 100%;
|
|
476
483
|
-moz-appearance: textfield;
|
|
477
484
|
|
|
@@ -497,13 +504,13 @@
|
|
|
497
504
|
.ac-counter-arrow-wrapper {
|
|
498
505
|
height: 100%;
|
|
499
506
|
color: $ac-color-text;
|
|
500
|
-
border-left: 1px solid $ac-
|
|
507
|
+
border-left: 1px solid $ac-label-text;
|
|
501
508
|
|
|
502
509
|
.ac-counter-arrow {
|
|
503
|
-
background: transparent;
|
|
510
|
+
background-color: transparent;
|
|
504
511
|
border: none;
|
|
505
512
|
cursor: pointer;
|
|
506
|
-
color: $ac-
|
|
513
|
+
color: $ac-label-text;
|
|
507
514
|
height: 23px;
|
|
508
515
|
|
|
509
516
|
&:hover {
|
|
@@ -511,7 +518,7 @@
|
|
|
511
518
|
}
|
|
512
519
|
|
|
513
520
|
&:first-child {
|
|
514
|
-
border-bottom: 1px solid $ac-
|
|
521
|
+
border-bottom: 1px solid $ac-label-text;
|
|
515
522
|
}
|
|
516
523
|
}
|
|
517
524
|
}
|
|
@@ -538,7 +545,7 @@
|
|
|
538
545
|
}
|
|
539
546
|
|
|
540
547
|
.up-down-button {
|
|
541
|
-
background: $ac-white-light;
|
|
548
|
+
background-color: $ac-white-light;
|
|
542
549
|
border: none;
|
|
543
550
|
display: block;
|
|
544
551
|
cursor: pointer;
|
|
@@ -570,7 +577,7 @@
|
|
|
570
577
|
width: 5px;
|
|
571
578
|
height: 5px;
|
|
572
579
|
border-radius: 50%;
|
|
573
|
-
background:
|
|
580
|
+
background-color: $ac-color-value;
|
|
574
581
|
margin-bottom: 3px;
|
|
575
582
|
|
|
576
583
|
&:last-child {
|
|
@@ -580,6 +587,33 @@
|
|
|
580
587
|
}
|
|
581
588
|
}
|
|
582
589
|
|
|
590
|
+
// dark theme start
|
|
591
|
+
.is-dark-theme {
|
|
592
|
+
.button.ac-button.is-primary.is-light {
|
|
593
|
+
background-color: $ac-primary;
|
|
594
|
+
color: $ac-white;
|
|
595
|
+
&:hover {
|
|
596
|
+
opacity: 0.8;
|
|
597
|
+
}
|
|
598
|
+
}
|
|
599
|
+
.button.ac-button.is-danger.is-light {
|
|
600
|
+
background-color: $ac-danger;
|
|
601
|
+
color: $ac-white;
|
|
602
|
+
&:hover {
|
|
603
|
+
opacity: 0.8;
|
|
604
|
+
}
|
|
605
|
+
}
|
|
606
|
+
.button.ac-button {
|
|
607
|
+
--ac-white: #ffffff;
|
|
608
|
+
&.is-white {
|
|
609
|
+
--ac-white: #2e323c;
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
.button.ac-button.is-text {
|
|
613
|
+
background-color: transparent;
|
|
614
|
+
}
|
|
615
|
+
}
|
|
616
|
+
// dark theme end
|
|
583
617
|
/****************************************
|
|
584
618
|
Responsive Classes
|
|
585
619
|
*****************************************/
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
.card-body-wrapper {
|
|
2
|
-
background: $ac-white;
|
|
2
|
+
background-color: $ac-white;
|
|
3
3
|
border-radius: 4px;
|
|
4
4
|
box-shadow: none;
|
|
5
5
|
|
|
6
6
|
.card-header {
|
|
7
|
-
background: $
|
|
7
|
+
background-color: $ac-blue-light;
|
|
8
8
|
border-radius: 4px 4px 0px 0px;
|
|
9
9
|
padding: 10px 20px;
|
|
10
10
|
box-shadow: none;
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
font-weight: normal;
|
|
25
25
|
font-size: 14px;
|
|
26
26
|
line-height: 16px;
|
|
27
|
-
color:
|
|
27
|
+
color: $ac-color-value;
|
|
28
28
|
margin-top: 10px;
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
.inner-header {
|
|
4
4
|
padding: 6px 20px;
|
|
5
|
-
border-bottom: 1px solid
|
|
5
|
+
border-bottom: 1px solid $ac-white-light;
|
|
6
6
|
// display: flex;
|
|
7
7
|
// align-items: center;
|
|
8
8
|
}
|
|
@@ -81,3 +81,35 @@
|
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
|
+
|
|
85
|
+
.resource {
|
|
86
|
+
display: flex;
|
|
87
|
+
align-items: center;
|
|
88
|
+
border-left: 1px solid $ac-white-light;
|
|
89
|
+
padding: 0 1.5rem;
|
|
90
|
+
margin-top: -10px;
|
|
91
|
+
margin-bottom: -10px;
|
|
92
|
+
.r-icon {
|
|
93
|
+
display: flex;
|
|
94
|
+
align-items: center;
|
|
95
|
+
max-width: 40px;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.r-data {
|
|
99
|
+
margin-left: 0.8rem;
|
|
100
|
+
.request,
|
|
101
|
+
.limit {
|
|
102
|
+
font-weight: 500;
|
|
103
|
+
min-width: 50px;
|
|
104
|
+
text-align: center;
|
|
105
|
+
}
|
|
106
|
+
.request {
|
|
107
|
+
font-weight: 300;
|
|
108
|
+
}
|
|
109
|
+
hr {
|
|
110
|
+
margin: 0;
|
|
111
|
+
padding: 0;
|
|
112
|
+
background-color: $ac-white-light;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
.direct-deploy {
|
|
2
|
+
h5 {
|
|
3
|
+
font-weight: 500;
|
|
4
|
+
font-size: 18px;
|
|
5
|
+
line-height: 21px;
|
|
6
|
+
color: $ac-color-heading;
|
|
7
|
+
margin-bottom: 10px;
|
|
8
|
+
.fa {
|
|
9
|
+
color: $ac-primary;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
p {
|
|
14
|
+
font-size: 14px;
|
|
15
|
+
line-height: 160%;
|
|
16
|
+
color: $ac-color-heading;
|
|
17
|
+
margin-bottom: 20px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.check-permission {
|
|
21
|
+
font-weight: normal;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
line-height: 16px;
|
|
24
|
+
color: $ac-color-heading;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.button {
|
|
28
|
+
margin: 10px 0;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.msg {
|
|
32
|
+
font-size: 12px;
|
|
33
|
+
line-height: 14px;
|
|
34
|
+
color: $ac-color-value;
|
|
35
|
+
}
|
|
36
|
+
.buttons {
|
|
37
|
+
&.is-gray {
|
|
38
|
+
.button {
|
|
39
|
+
&.ac-primary {
|
|
40
|
+
background-color: $ac-blue-light;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
h5 {
|
|
48
|
+
&.toc-title {
|
|
49
|
+
font-style: normal;
|
|
50
|
+
font-weight: 500;
|
|
51
|
+
font-size: 16px;
|
|
52
|
+
line-height: 19px;
|
|
53
|
+
color: $ac-color-value;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
.is-gray {
|
|
57
|
+
.button {
|
|
58
|
+
border: none;
|
|
59
|
+
background-color: $ac-blue-light;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.card-content {
|
|
64
|
+
&.is-table-of-content {
|
|
65
|
+
display: grid;
|
|
66
|
+
grid-template-columns: 65% 35%;
|
|
67
|
+
grid-gap: 15px;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
.graph-tooltip-wrapper {
|
|
2
|
+
background-color: var(--ac-white);
|
|
3
|
+
border: 1px solid var(--ac-white-light);
|
|
4
|
+
|
|
5
|
+
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
|
|
6
|
+
border-radius: 4px;
|
|
7
|
+
overflow: hidden;
|
|
8
|
+
h6 {
|
|
9
|
+
padding: 10px 20px;
|
|
10
|
+
border-bottom: 1px solid var(--ac-white-light);
|
|
11
|
+
}
|
|
12
|
+
.table-wrapper {
|
|
13
|
+
padding: 10px 20px;
|
|
14
|
+
tr {
|
|
15
|
+
td {
|
|
16
|
+
&:first-child {
|
|
17
|
+
font-weight: 450;
|
|
18
|
+
padding-right: 10px;
|
|
19
|
+
color: var(--ac-text-heading);
|
|
20
|
+
}
|
|
21
|
+
padding: 4px 0;
|
|
22
|
+
font-size: 13px;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.is-hovering .label text tspan {
|
|
29
|
+
stroke: var(--ac-white);
|
|
30
|
+
fill: var(--ac-white);
|
|
31
|
+
stroke-width: 0.3px;
|
|
32
|
+
}
|
|
33
|
+
.is-selected .label text tspan {
|
|
34
|
+
stroke: var(--ac-white);
|
|
35
|
+
fill: var(--ac-white);
|
|
36
|
+
stroke-width: 0.3px;
|
|
37
|
+
}
|
|
38
|
+
.label text tspan {
|
|
39
|
+
stroke: var(--ac-black);
|
|
40
|
+
fill: var(--ac-black);
|
|
41
|
+
stroke-width: 0.3px;
|
|
42
|
+
}
|
|
43
|
+
.edgeLabel .label text tspan {
|
|
44
|
+
stroke-width: 0px;
|
|
45
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.ac-upload-image {
|
|
2
|
-
background: $ac-
|
|
3
|
-
border: 1px dashed $ac-
|
|
2
|
+
background-color: $ac-bg;
|
|
3
|
+
border: 1px dashed $ac-label-text;
|
|
4
4
|
border-radius: 4px;
|
|
5
5
|
overflow: hidden;
|
|
6
6
|
|
|
@@ -22,21 +22,23 @@
|
|
|
22
22
|
border-radius: 50%;
|
|
23
23
|
overflow: hidden;
|
|
24
24
|
margin: 0 auto 30px;
|
|
25
|
+
border: 1px solid $ac-white-light;
|
|
25
26
|
}
|
|
26
27
|
|
|
27
28
|
.drag-and-drop-msg {
|
|
28
29
|
font-size: 13px;
|
|
30
|
+
color: $ac-color-value;
|
|
29
31
|
font-weight: 400;
|
|
30
32
|
margin-bottom: 10px;
|
|
31
33
|
|
|
32
34
|
span {
|
|
33
|
-
color: $ac-
|
|
35
|
+
color: $ac-label-text;
|
|
34
36
|
}
|
|
35
37
|
}
|
|
36
38
|
|
|
37
39
|
.img-size-msg {
|
|
38
40
|
font-size: 12px;
|
|
39
|
-
color: $ac-
|
|
41
|
+
color: $ac-label-text;
|
|
40
42
|
}
|
|
41
43
|
}
|
|
42
44
|
|