@appscode/design-system 1.0.43-alpha.20 → 1.0.43-alpha.201
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 +6 -0
- package/base/utilities/_default.scss +298 -57
- package/base/utilities/_derived-variables.scss +0 -1
- package/base/utilities/_initial-variables.scss +16 -10
- package/base/utilities/_mixin.scss +1 -17
- package/base/utilities/_typography.scss +12 -2
- package/base/utilities/dark-theme.scss +9 -147
- package/components/_ac-accordion.scss +8 -4
- package/components/_ac-alert-box.scss +13 -5
- package/components/_ac-card.scss +33 -6
- package/components/_ac-code-highlight.scss +5 -1
- package/components/_ac-content-layout.scss +2 -2
- package/components/_ac-input.scss +63 -23
- package/components/_ac-modal.scss +1 -1
- package/components/_ac-multi-select.scss +187 -5
- package/components/_ac-options.scss +24 -9
- package/components/_ac-select-box.scss +13 -3
- package/components/_ac-table.scss +7 -5
- package/components/_ac-tabs.scss +33 -5
- package/components/_ac-terminal.scss +270 -0
- package/components/_all.scss +35 -0
- package/components/_app-drawer.scss +2 -2
- package/components/_breadcumb.scss +2 -0
- package/components/_buttons.scss +46 -37
- package/components/_card-body-wrapper.scss +2 -2
- package/components/_dashboard-header.scss +32 -0
- 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 +5 -3
- package/components/_left-sidebar-menu.scss +115 -64
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +125 -7
- package/components/_overview-info.scss +3 -3
- package/components/_pagination.scss +8 -0
- package/components/_payment-card.scss +10 -1
- package/components/_preview-modal.scss +18 -5
- package/components/_pricing-table.scss +1 -1
- package/components/_progress-bar.scss +4 -4
- package/components/_subscription-card.scss +11 -4
- package/components/_table-of-content.scss +1 -1
- package/components/_tfa.scss +69 -0
- package/components/_transitions.scss +261 -0
- package/components/_wizard.scss +16 -3
- package/components/bbum/_card-team.scss +1 -1
- package/components/bbum/_information-center.scss +15 -1
- package/components/bbum/_sign-up-notification.scss +1 -1
- package/components/bbum/_single-post-preview.scss +1 -1
- package/components/bbum/_user-profile.scss +2 -3
- package/components/ui-builder/_ui-builder.scss +43 -3
- package/components/ui-builder/_vue-open-api.scss +104 -0
- package/layouts/_all.scss +2 -0
- package/layouts/_code-preview.scss +5 -2
- package/main.scss +4 -54
- package/package.json +2 -7
- package/plugins/theme.js +4 -0
- package/plugins/time-convert.js +49 -0
- package/plugins/vue-toaster.js +3 -0
- 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 +5 -0
- package/vue-components/v2/button/DownloadBtn.vue +45 -0
- package/vue-components/v2/card/Card.vue +1 -0
- package/vue-components/v2/card/PaymentCards.vue +11 -2
- 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-fields/Input.vue +1 -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 +38 -4
- package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
- package/vue-components/v2/modals/JsonShowModal.vue +12 -2
- package/vue-components/v2/navbar/Appdrawer.vue +10 -9
- package/vue-components/v2/navbar/ThemeMode.vue +50 -44
- 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 +16 -3
- 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 +23 -1
- package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
- package/vue-components/v2/tab/TabItem.vue +1 -1
- package/vue-components/v2/table/Table.vue +44 -8
- package/vue-components/v2/table/TableRow.vue +12 -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 +5 -0
- package/vue-components/v3/content/ContentTable.vue +5 -0
- package/vue-components/v3/editor/Editor.vue +36 -13
- 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 +11 -10
- 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 +35 -3
- package/vue-components/v3/modals/DeleteConfirmationModal.vue +85 -0
- package/vue-components/v3/modals/JsonShowModal.vue +25 -16
- package/vue-components/v3/modals/LongRunningTasksModal.vue +337 -0
- package/vue-components/v3/navbar/Appdrawer.vue +12 -7
- package/vue-components/v3/navbar/ThemeMode.vue +49 -47
- package/vue-components/v3/navbar/User.vue +242 -18
- 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 +16 -3
- 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 +1 -1
- package/vue-components/v3/table/MultiInfoTable.vue +143 -0
- package/vue-components/v3/table/Table.vue +35 -12
- package/vue-components/v3/table/TableContainer.vue +34 -0
- package/vue-components/v3/table/TableRow.vue +16 -2
- package/vue-components/v3/table/table-cell/CellValue.vue +28 -3
- package/vue-components/v3/table/table-cell/GenericCell.vue +62 -0
- package/vue-components/v3/table/table-cell/ObjectCell.vue +5 -1
- package/vue-components/v3/tabs/EditorTabs.vue +1 -1
- package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
grid-gap: 0px;
|
|
5
5
|
grid-template-columns: 270px calc(100% - 270px);
|
|
6
6
|
padding-top: 50px;
|
|
7
|
+
|
|
7
8
|
&.is-fullwidth {
|
|
8
9
|
grid-template-columns: auto !important;
|
|
9
10
|
|
|
@@ -22,27 +23,36 @@
|
|
|
22
23
|
}
|
|
23
24
|
}
|
|
24
25
|
|
|
26
|
+
&.in-ui-builder {
|
|
27
|
+
grid-template-columns: calc(100% - 270px) 270px !important;
|
|
28
|
+
}
|
|
29
|
+
|
|
25
30
|
&.has-ui-builder {
|
|
26
31
|
grid-template-columns: 70px calc(100% - 70px);
|
|
27
32
|
grid-gap: 0;
|
|
33
|
+
|
|
28
34
|
.inner-header {
|
|
29
35
|
position: sticky;
|
|
30
36
|
top: 100px;
|
|
31
37
|
background-color: $ac-white;
|
|
32
38
|
z-index: 997;
|
|
33
39
|
}
|
|
40
|
+
|
|
34
41
|
.ac-system-content {
|
|
35
42
|
&.pr-15 {
|
|
36
43
|
padding-right: 0 !important;
|
|
37
44
|
}
|
|
45
|
+
|
|
38
46
|
.ac-terminal {
|
|
39
47
|
width: calc(100% - 290px);
|
|
40
48
|
left: 289px;
|
|
41
49
|
}
|
|
42
50
|
}
|
|
51
|
+
|
|
43
52
|
.ac-system-left-sidebar.is-expanded {
|
|
44
53
|
z-index: 998;
|
|
45
54
|
}
|
|
55
|
+
|
|
46
56
|
&.expanded-sidebar {
|
|
47
57
|
grid-gap: 0px;
|
|
48
58
|
z-index: 9;
|
|
@@ -70,15 +80,18 @@
|
|
|
70
80
|
.ac-system-body {
|
|
71
81
|
padding-top: 0;
|
|
72
82
|
grid-template-columns: 220px calc(100% - 440px) 220px;
|
|
83
|
+
|
|
73
84
|
.ac-system-left-sidebar {
|
|
74
85
|
border-right: none !important;
|
|
75
86
|
height: calc(100vh - 60px);
|
|
87
|
+
|
|
76
88
|
.ac-left-sidebar-wrapper {
|
|
77
89
|
position: fixed;
|
|
78
90
|
top: 140px;
|
|
79
91
|
width: 219px;
|
|
80
|
-
border-right: 1px solid
|
|
92
|
+
border-right: 1px solid $ac-white-light;
|
|
81
93
|
height: 100%;
|
|
94
|
+
|
|
82
95
|
ul.menu-list-wrapper {
|
|
83
96
|
padding-top: 10px;
|
|
84
97
|
}
|
|
@@ -94,6 +107,7 @@
|
|
|
94
107
|
.ac-system-left-sidebar {
|
|
95
108
|
border-right: 1px solid $ac-white-light;
|
|
96
109
|
box-shadow: none;
|
|
110
|
+
|
|
97
111
|
&.is-expanded {
|
|
98
112
|
z-index: 998;
|
|
99
113
|
|
|
@@ -129,10 +143,61 @@
|
|
|
129
143
|
}
|
|
130
144
|
}
|
|
131
145
|
}
|
|
146
|
+
|
|
147
|
+
.ac-system-body {
|
|
148
|
+
&.is-preview-step {
|
|
149
|
+
grid-template-columns: calc(100% - 270px) 270px !important;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
132
153
|
.form-content {
|
|
133
154
|
width: 720px;
|
|
134
155
|
}
|
|
135
156
|
|
|
157
|
+
.dropdown-content {
|
|
158
|
+
background-color: $ac-white;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
// color swatch start
|
|
162
|
+
input[type="color"] {
|
|
163
|
+
-webkit-appearance: none;
|
|
164
|
+
border: none;
|
|
165
|
+
width: 20px;
|
|
166
|
+
height: 20px;
|
|
167
|
+
border-radius: 50%;
|
|
168
|
+
border: 1px solid #777;
|
|
169
|
+
margin-left: 3px;
|
|
170
|
+
padding: 2px;
|
|
171
|
+
cursor: pointer;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
input[type="color"]::-webkit-color-swatch-wrapper {
|
|
175
|
+
padding: 0;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
// input[type="color"]::-moz-color-swatch,
|
|
179
|
+
input[type="color"]::-webkit-color-swatch {
|
|
180
|
+
border: none;
|
|
181
|
+
border-radius: 50%;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
input[type="color"]::-moz-color-swatch {
|
|
185
|
+
border: none;
|
|
186
|
+
border-radius: 50%;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
// color swatch end
|
|
190
|
+
|
|
191
|
+
.is-dark-theme {
|
|
192
|
+
.dropdown-content {
|
|
193
|
+
background-color: $dark-bg-light;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.ac-preloader {
|
|
198
|
+
color: $ac-color-text;
|
|
199
|
+
}
|
|
200
|
+
|
|
136
201
|
.section-padding {
|
|
137
202
|
padding: 100px 0;
|
|
138
203
|
}
|
|
@@ -166,46 +231,55 @@
|
|
|
166
231
|
.is-not-fixed {
|
|
167
232
|
position: inherit !important;
|
|
168
233
|
}
|
|
169
|
-
|
|
170
|
-
border: 1px solid $ac-white-light;
|
|
171
|
-
}
|
|
172
|
-
.b-t-1 {
|
|
173
|
-
border-top: 1px solid $ac-white-light;
|
|
174
|
-
}
|
|
175
|
-
.b-b-1 {
|
|
176
|
-
border-bottom: 1px solid $ac-white-light;
|
|
177
|
-
}
|
|
178
|
-
.b-l-1 {
|
|
179
|
-
border-left: 1px solid $ac-white-light;
|
|
180
|
-
}
|
|
181
|
-
.b-r-1 {
|
|
182
|
-
border-right: 1px solid $ac-white-light;
|
|
183
|
-
}
|
|
234
|
+
|
|
184
235
|
// border none
|
|
185
236
|
.is-border-none {
|
|
186
237
|
border: none !important;
|
|
187
238
|
}
|
|
188
239
|
|
|
189
|
-
.b-
|
|
190
|
-
border
|
|
240
|
+
.b-1 {
|
|
241
|
+
border: 1px solid $ac-white-light;
|
|
191
242
|
}
|
|
192
243
|
|
|
193
|
-
|
|
194
|
-
|
|
244
|
+
// border left, right, top, bottom none
|
|
245
|
+
$positions: (
|
|
246
|
+
"b": "bottom",
|
|
247
|
+
"t": "top",
|
|
248
|
+
"l": "left",
|
|
249
|
+
"r": "right",
|
|
250
|
+
);
|
|
251
|
+
|
|
252
|
+
@each $key, $position in $positions {
|
|
253
|
+
.b-#{$key}-n {
|
|
254
|
+
border-#{$position}: none !important;
|
|
255
|
+
}
|
|
195
256
|
}
|
|
196
257
|
|
|
197
|
-
|
|
198
|
-
|
|
258
|
+
// border 1px
|
|
259
|
+
@each $key, $position in $positions {
|
|
260
|
+
.b-#{$key}-1 {
|
|
261
|
+
border-#{$position}: 1px solid $ac-white-light;
|
|
262
|
+
}
|
|
199
263
|
}
|
|
200
264
|
|
|
201
|
-
|
|
202
|
-
|
|
265
|
+
// for ellipsis
|
|
266
|
+
@for $i from 0 through 10 {
|
|
267
|
+
.is-ellipsis-#{$i} {
|
|
268
|
+
overflow: hidden;
|
|
269
|
+
text-overflow: ellipsis;
|
|
270
|
+
display: -webkit-box;
|
|
271
|
+
line-clamp: #{$i};
|
|
272
|
+
-webkit-line-clamp: #{$i};
|
|
273
|
+
box-orient: vertical;
|
|
274
|
+
-webkit-box-orient: vertical;
|
|
275
|
+
}
|
|
203
276
|
}
|
|
204
277
|
|
|
205
278
|
.is-disabled {
|
|
206
279
|
opacity: 0.5;
|
|
207
280
|
cursor: not-allowed;
|
|
208
281
|
}
|
|
282
|
+
|
|
209
283
|
.no-data-image {
|
|
210
284
|
img {
|
|
211
285
|
width: 250px;
|
|
@@ -214,16 +288,23 @@
|
|
|
214
288
|
}
|
|
215
289
|
}
|
|
216
290
|
|
|
217
|
-
//
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
text-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
291
|
+
// toast css third-party
|
|
292
|
+
|
|
293
|
+
.toasted-container {
|
|
294
|
+
.ac-toast-action.mr-10 {
|
|
295
|
+
text-decoration: underline !important;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.has-report-issue {
|
|
299
|
+
padding-right: 140px !important;
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.is-dark-theme {
|
|
304
|
+
.toasted-container {
|
|
305
|
+
i.fa {
|
|
306
|
+
color: #ffffff !important;
|
|
307
|
+
}
|
|
227
308
|
}
|
|
228
309
|
}
|
|
229
310
|
|
|
@@ -409,9 +490,22 @@
|
|
|
409
490
|
color: $ac-red;
|
|
410
491
|
text-align: left;
|
|
411
492
|
}
|
|
493
|
+
|
|
494
|
+
p.is-error {
|
|
495
|
+
color: $ac-red;
|
|
496
|
+
}
|
|
497
|
+
|
|
412
498
|
code {
|
|
413
499
|
color: $ac-color-heading;
|
|
414
500
|
}
|
|
501
|
+
|
|
502
|
+
.is-dark-theme {
|
|
503
|
+
code {
|
|
504
|
+
background-color: $dark-bg-light;
|
|
505
|
+
color: $ac-full-white;
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
|
|
415
509
|
.is-danger:not(.ac-button) {
|
|
416
510
|
color: $ac-danger !important;
|
|
417
511
|
}
|
|
@@ -433,37 +527,57 @@ button {
|
|
|
433
527
|
height: 18px;
|
|
434
528
|
letter-spacing: 0.1px;
|
|
435
529
|
color: $ac-color-heading;
|
|
530
|
+
|
|
531
|
+
a {
|
|
532
|
+
&:hover {
|
|
533
|
+
color: $ac-color-text;
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
|
|
436
537
|
&.is-available {
|
|
437
538
|
background-color: #27b064;
|
|
438
539
|
color: $ac-white;
|
|
439
540
|
}
|
|
541
|
+
|
|
440
542
|
&.is-success {
|
|
441
543
|
background-color: $ac-green;
|
|
442
544
|
color: $ac-white;
|
|
545
|
+
|
|
443
546
|
&.is-light {
|
|
444
547
|
background-color: rgba(39, 176, 100, 0.2);
|
|
445
548
|
color: $ac-green;
|
|
446
549
|
}
|
|
447
550
|
}
|
|
551
|
+
|
|
448
552
|
&.is-primary {
|
|
449
553
|
background-color: $ac-primary;
|
|
450
554
|
color: $ac-white;
|
|
555
|
+
|
|
451
556
|
&.is-light {
|
|
452
557
|
background-color: rgba(25, 113, 189, 0.2);
|
|
453
558
|
color: $ac-primary;
|
|
454
559
|
}
|
|
455
560
|
}
|
|
561
|
+
|
|
456
562
|
&.is-gray {
|
|
457
563
|
background-color: #e5e9f2;
|
|
458
|
-
color:
|
|
564
|
+
color: $ac-gray-darker;
|
|
459
565
|
}
|
|
566
|
+
|
|
460
567
|
&.is-warning {
|
|
461
568
|
background-color: $ac-warning;
|
|
462
|
-
color: $ac-white
|
|
569
|
+
color: $ac-white;
|
|
570
|
+
|
|
571
|
+
&.is-light {
|
|
572
|
+
background-color: #ffd58b42;
|
|
573
|
+
color: #c88b21;
|
|
574
|
+
}
|
|
463
575
|
}
|
|
576
|
+
|
|
464
577
|
&.is-danger {
|
|
465
578
|
background-color: $ac-red;
|
|
466
579
|
color: $ac-white !important;
|
|
580
|
+
|
|
467
581
|
&.is-light {
|
|
468
582
|
background-color: rgba(234, 61, 47, 0.2);
|
|
469
583
|
color: $ac-red !important;
|
|
@@ -475,6 +589,7 @@ button {
|
|
|
475
589
|
.icon {
|
|
476
590
|
margin-bottom: 0.5rem;
|
|
477
591
|
}
|
|
592
|
+
|
|
478
593
|
.tag {
|
|
479
594
|
a {
|
|
480
595
|
font-weight: 500;
|
|
@@ -653,6 +768,148 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
653
768
|
}
|
|
654
769
|
}
|
|
655
770
|
|
|
771
|
+
// tooltip in vue-open-api
|
|
772
|
+
.tooltip {
|
|
773
|
+
display: block !important;
|
|
774
|
+
z-index: 10000;
|
|
775
|
+
|
|
776
|
+
&.is-button-info {
|
|
777
|
+
.tooltip-inner {
|
|
778
|
+
background: $ac-white;
|
|
779
|
+
color: $ac-primary;
|
|
780
|
+
border-radius: 4px;
|
|
781
|
+
padding: 5px 20px 4px;
|
|
782
|
+
box-shadow: $ac-shadow-1;
|
|
783
|
+
font-weight: 500;
|
|
784
|
+
font-size: 13px;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.tooltip-arrow {
|
|
788
|
+
width: 0;
|
|
789
|
+
height: 0;
|
|
790
|
+
border-style: solid;
|
|
791
|
+
position: absolute;
|
|
792
|
+
margin: 5px;
|
|
793
|
+
border-color: $ac-white;
|
|
794
|
+
}
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
&.is-errors-tooltip {
|
|
798
|
+
.tooltip-inner {
|
|
799
|
+
background: $ac-white;
|
|
800
|
+
color: $ac-danger;
|
|
801
|
+
border-radius: 4px;
|
|
802
|
+
padding: 5px 20px 4px;
|
|
803
|
+
box-shadow: $ac-shadow-1;
|
|
804
|
+
font-weight: 500;
|
|
805
|
+
font-size: 13px;
|
|
806
|
+
|
|
807
|
+
.errors-wrapper {
|
|
808
|
+
.error-element {
|
|
809
|
+
padding: 5px 0;
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.tooltip-arrow {
|
|
815
|
+
width: 0;
|
|
816
|
+
height: 0;
|
|
817
|
+
border-style: solid;
|
|
818
|
+
position: absolute;
|
|
819
|
+
margin: 5px;
|
|
820
|
+
border-color: $ac-white;
|
|
821
|
+
}
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
&[x-placement^="top"] {
|
|
825
|
+
margin-bottom: 5px;
|
|
826
|
+
|
|
827
|
+
.tooltip-arrow {
|
|
828
|
+
border-width: 5px 5px 0 5px;
|
|
829
|
+
border-left-color: transparent !important;
|
|
830
|
+
border-right-color: transparent !important;
|
|
831
|
+
border-bottom-color: transparent !important;
|
|
832
|
+
bottom: -5px;
|
|
833
|
+
left: calc(50% - 5px);
|
|
834
|
+
margin-top: 0;
|
|
835
|
+
margin-bottom: 0;
|
|
836
|
+
}
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
&[x-placement^="bottom"] {
|
|
840
|
+
margin-top: 5px;
|
|
841
|
+
|
|
842
|
+
.tooltip-arrow {
|
|
843
|
+
border-width: 0 5px 5px 5px;
|
|
844
|
+
border-left-color: transparent !important;
|
|
845
|
+
border-right-color: transparent !important;
|
|
846
|
+
border-top-color: transparent !important;
|
|
847
|
+
top: -5px;
|
|
848
|
+
left: calc(50% - 5px);
|
|
849
|
+
margin-top: 0;
|
|
850
|
+
margin-bottom: 0;
|
|
851
|
+
}
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
&[x-placement^="right"] {
|
|
855
|
+
margin-left: 5px;
|
|
856
|
+
|
|
857
|
+
.tooltip-arrow {
|
|
858
|
+
border-width: 5px 5px 5px 0;
|
|
859
|
+
border-left-color: transparent !important;
|
|
860
|
+
border-top-color: transparent !important;
|
|
861
|
+
border-bottom-color: transparent !important;
|
|
862
|
+
left: -5px;
|
|
863
|
+
top: calc(50% - 5px);
|
|
864
|
+
margin-left: 0;
|
|
865
|
+
margin-right: 0;
|
|
866
|
+
}
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
&[x-placement^="left"] {
|
|
870
|
+
margin-right: 5px;
|
|
871
|
+
|
|
872
|
+
.tooltip-arrow {
|
|
873
|
+
border-width: 5px 0 5px 5px;
|
|
874
|
+
border-top-color: transparent !important;
|
|
875
|
+
border-right-color: transparent !important;
|
|
876
|
+
border-bottom-color: transparent !important;
|
|
877
|
+
right: -5px;
|
|
878
|
+
top: calc(50% - 5px);
|
|
879
|
+
margin-left: 0;
|
|
880
|
+
margin-right: 0;
|
|
881
|
+
}
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
&.popover {
|
|
885
|
+
$color: #f9f9f9;
|
|
886
|
+
|
|
887
|
+
.popover-inner {
|
|
888
|
+
background: $color;
|
|
889
|
+
color: black;
|
|
890
|
+
padding: 24px;
|
|
891
|
+
border-radius: 4px;
|
|
892
|
+
box-shadow: $ac-shadow-1;
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
.popover-arrow {
|
|
896
|
+
border-color: $color;
|
|
897
|
+
}
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
&[aria-hidden="true"] {
|
|
901
|
+
visibility: hidden;
|
|
902
|
+
opacity: 0;
|
|
903
|
+
transition: opacity 0.15s, visibility 0.15s;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
&[aria-hidden="false"] {
|
|
907
|
+
visibility: visible;
|
|
908
|
+
opacity: 1;
|
|
909
|
+
transition: opacity 0.15s;
|
|
910
|
+
}
|
|
911
|
+
}
|
|
912
|
+
|
|
656
913
|
// Customize tooltip end
|
|
657
914
|
|
|
658
915
|
// ac-footer sticky start
|
|
@@ -701,30 +958,14 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
701
958
|
// Status css
|
|
702
959
|
// ac-footer sticky end
|
|
703
960
|
|
|
704
|
-
// terminal scss
|
|
705
|
-
.
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
height: 300px;
|
|
710
|
-
width: 100%;
|
|
711
|
-
background-color: $ac-white;
|
|
712
|
-
border: 1px solid var(--ac-white-light);
|
|
713
|
-
|
|
714
|
-
color: $ac-white;
|
|
715
|
-
z-index: 999;
|
|
716
|
-
|
|
717
|
-
.terminal-body {
|
|
718
|
-
font-family: "Inconsolata", monospace;
|
|
719
|
-
background-color: $ac-color-value;
|
|
720
|
-
height: 100%;
|
|
721
|
-
color: $ac-white;
|
|
722
|
-
strong {
|
|
723
|
-
color: $ac-white;
|
|
961
|
+
// terminal scss end
|
|
962
|
+
.is-dark-theme {
|
|
963
|
+
a {
|
|
964
|
+
&:hover {
|
|
965
|
+
color: #485fc7;
|
|
724
966
|
}
|
|
725
967
|
}
|
|
726
968
|
}
|
|
727
|
-
// terminal scss end
|
|
728
969
|
|
|
729
970
|
/****************************************
|
|
730
971
|
Responsive Classes
|
|
@@ -23,10 +23,10 @@ $font-size-tiny: 11px;
|
|
|
23
23
|
// Base Color
|
|
24
24
|
$ac-orange: #ff8000;
|
|
25
25
|
$ac-yellow: #f7ad2a;
|
|
26
|
-
$ac-green: #
|
|
26
|
+
$ac-green: #158748;
|
|
27
27
|
$ac-blue: #0aafff;
|
|
28
28
|
$ac-purple: #791e94;
|
|
29
|
-
$ac-red: #
|
|
29
|
+
$ac-red: #ff3729;
|
|
30
30
|
|
|
31
31
|
// Products Color
|
|
32
32
|
$voyager-primary: #2d2a78;
|
|
@@ -49,9 +49,9 @@ $swift-primary: #3f51b6;
|
|
|
49
49
|
--hsl-saturation: 77%;
|
|
50
50
|
--hsl-lightness: 42%;
|
|
51
51
|
--contrast-threshold: 60%;
|
|
52
|
-
|
|
53
|
-
--bg-color: #ffffff;
|
|
52
|
+
--ac-bg: #ffffff;
|
|
54
53
|
--ac-white: #ffffff;
|
|
54
|
+
--ac-full-white: #ffffff;
|
|
55
55
|
--ac-gray-dark: #5f5f5f;
|
|
56
56
|
--ac-gray-light: #8d8d8d;
|
|
57
57
|
--ac-gray-lightest: #d1d1d1;
|
|
@@ -60,17 +60,20 @@ $swift-primary: #3f51b6;
|
|
|
60
60
|
|
|
61
61
|
--ac-black: #000000;
|
|
62
62
|
--ac-color-text-90: #323232;
|
|
63
|
+
--ac-link-black: #32325d;
|
|
63
64
|
--ac-gray-darker: #494949;
|
|
64
65
|
--ac-gray: #767676;
|
|
65
66
|
--ac-gray-lighter: #a4a4a4;
|
|
67
|
+
--ac-white-text: #b4c0cc;
|
|
68
|
+
|
|
66
69
|
// theme color
|
|
67
70
|
--dark-bg: #21272e;
|
|
68
71
|
--dark-bg-light: #2e323c;
|
|
69
72
|
|
|
70
|
-
--ac-
|
|
73
|
+
--ac-blue-light: #eceff4;
|
|
71
74
|
--ac-bg-light-gray: #f4f6f9;
|
|
72
75
|
--table-header: #e4e8ef;
|
|
73
|
-
--ac-
|
|
76
|
+
--ac-label-text: #a6abbd;
|
|
74
77
|
|
|
75
78
|
--font-hsl-hue: 0;
|
|
76
79
|
--font-hsl-saturation: 0%;
|
|
@@ -82,6 +85,7 @@ $swift-primary: #3f51b6;
|
|
|
82
85
|
var(--hsl-lightness),
|
|
83
86
|
1
|
|
84
87
|
);
|
|
88
|
+
|
|
85
89
|
--ac-text: hsla(
|
|
86
90
|
var(--font-hsl-hue),
|
|
87
91
|
calc(var(--font-hsl-saturation) + 10%),
|
|
@@ -101,13 +105,14 @@ $swift-primary: #3f51b6;
|
|
|
101
105
|
);
|
|
102
106
|
}
|
|
103
107
|
|
|
104
|
-
$ac-bg: var(--bg
|
|
108
|
+
$ac-bg: var(--ac-bg);
|
|
105
109
|
$ac-primary: var(--ac-primary);
|
|
106
110
|
$ac-color-value: var(--ac-color-value);
|
|
107
111
|
|
|
108
112
|
// Colors
|
|
109
113
|
$ac-black: var(--ac-black);
|
|
110
|
-
$ac-color-text-90: var(ac-color-text-90);
|
|
114
|
+
$ac-color-text-90: var(--ac-color-text-90);
|
|
115
|
+
$ac-link-black: var(--ac-link-black);
|
|
111
116
|
$ac-gray-darker: var(--ac-gray-darker);
|
|
112
117
|
$ac-gray-dark: var(--ac-gray-dark);
|
|
113
118
|
$ac-gray: var(--ac-gray);
|
|
@@ -117,11 +122,12 @@ $ac-gray-lightest: var(--ac-gray-lightest);
|
|
|
117
122
|
$ac-white-light: var(--ac-white-light);
|
|
118
123
|
$ac-white-lighter: var(--ac-white-lighter);
|
|
119
124
|
$ac-white: var(--ac-white);
|
|
125
|
+
$ac-full-white: var(--ac-full-white);
|
|
120
126
|
|
|
121
|
-
$ac-
|
|
127
|
+
$ac-blue-light: var(--ac-blue-light);
|
|
122
128
|
$ac-bg-light-gray: var(--ac-bg-light-gray);
|
|
123
129
|
$table-header: var(--table-header);
|
|
124
|
-
$ac-
|
|
130
|
+
$ac-label-text: var(--ac-label-text);
|
|
125
131
|
|
|
126
132
|
// for dark theme CSS
|
|
127
133
|
$dark-bg: var(--dark-bg);
|
|
@@ -83,23 +83,7 @@
|
|
|
83
83
|
&:hover {
|
|
84
84
|
background-color: $colorName;
|
|
85
85
|
color: $ac-white;
|
|
86
|
-
|
|
87
|
-
@if (type_of($colorName) == "color") {
|
|
88
|
-
box-shadow: 0px
|
|
89
|
-
6px
|
|
90
|
-
12px
|
|
91
|
-
scale-color($color: $colorName, $lightness: 70%);
|
|
92
|
-
} @else {
|
|
93
|
-
box-shadow: 0px
|
|
94
|
-
6px
|
|
95
|
-
12px
|
|
96
|
-
hsla(
|
|
97
|
-
var(--hsl-hue),
|
|
98
|
-
var(--hsl-saturation),
|
|
99
|
-
var(--hsl-lightness),
|
|
100
|
-
0.3
|
|
101
|
-
);
|
|
102
|
-
}
|
|
86
|
+
box-shadow: none;
|
|
103
87
|
|
|
104
88
|
img {
|
|
105
89
|
filter: brightness(100) !important;
|
|
@@ -3,9 +3,12 @@ body {
|
|
|
3
3
|
background-color: $ac-bg;
|
|
4
4
|
font-family: $ac-family-paragraph;
|
|
5
5
|
font-weight: 400;
|
|
6
|
-
font-size:
|
|
6
|
+
font-size: 13px;
|
|
7
|
+
color: $ac-color-text;
|
|
8
|
+
}
|
|
9
|
+
p {
|
|
10
|
+
font-size: 13px;
|
|
7
11
|
}
|
|
8
|
-
|
|
9
12
|
h1,
|
|
10
13
|
h2,
|
|
11
14
|
h3,
|
|
@@ -92,6 +95,10 @@ hr {
|
|
|
92
95
|
margin: 15px 0;
|
|
93
96
|
}
|
|
94
97
|
|
|
98
|
+
strong {
|
|
99
|
+
color: $ac-color-value;
|
|
100
|
+
}
|
|
101
|
+
|
|
95
102
|
.is-font-medium {
|
|
96
103
|
font-weight: 500;
|
|
97
104
|
}
|
|
@@ -99,3 +106,6 @@ hr {
|
|
|
99
106
|
.is-font-bold {
|
|
100
107
|
font-weight: 700;
|
|
101
108
|
}
|
|
109
|
+
.material-icons{
|
|
110
|
+
font-size: 1em;
|
|
111
|
+
}
|