@appscode/design-system 1.1.0-beta.4 → 1.1.0-beta.40
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/_colors.scss +45 -114
- package/base/utilities/_global.scss +18 -19
- package/base/utilities/_typography.scss +2 -2
- package/base/utilities/dark-theme.scss +2 -8
- package/components/_ac-alert-box.scss +2 -2
- package/components/_ac-code-highlight.scss +9 -12
- package/components/_ac-drag.scss +4 -4
- package/components/_ac-modal.scss +2 -2
- package/components/_ac-multi-select.scss +17 -17
- package/components/_ac-select-box.scss +5 -5
- package/components/_ac-table.scss +7 -7
- package/components/_ac-tabs.scss +29 -26
- package/components/_all.scss +6 -4
- package/components/_buttons.scss +10 -10
- package/components/_graph.scss +10 -10
- package/components/_image-upload.scss +4 -4
- package/components/_input-card.scss +232 -0
- package/components/_input.scss +947 -0
- package/components/_left-sidebar-menu.scss +9 -13
- package/components/_monaco-editor.scss +2 -2
- package/components/_navbar.scss +7 -7
- package/components/_nested-list.scss +2 -2
- package/components/_overview-info.scss +3 -3
- package/components/_pricing-table.scss +5 -5
- package/components/_progress-bar.scss +61 -74
- package/components/_subscription-card.scss +8 -10
- package/components/_table-of-content.scss +4 -4
- package/components/{_ac-terminal.scss → _terminal.scss} +59 -73
- package/components/_widget-menu.scss +7 -12
- package/components/_wizard.scss +518 -793
- package/components/bbum/_information-center.scss +8 -10
- package/components/bbum/_mobile-desktop.scss +9 -14
- package/components/bbum/_single-post-preview.scss +9 -9
- package/components/ui-builder/_ui-builder.scss +193 -11
- package/components/ui-builder/_vue-open-api.scss +59 -13
- package/layouts/_code-preview.scss +6 -7
- package/main.scss +3 -3
- package/package.json +1 -1
- package/vue-components/types/importFlow.ts +16 -0
- package/vue-components/v2/banner/Banner.vue +1 -1
- package/vue-components/v2/editor/FilteredFileEditor.vue +2 -2
- package/vue-components/v2/modal/Modal.vue +1 -1
- package/vue-components/v2/pagination/Pagination.vue +1 -0
- package/vue-components/v3/alert/Alert.vue +2 -2
- package/vue-components/v3/banner/Banner.vue +2 -2
- package/vue-components/v3/breadcrumbs/Breadcrumb.vue +4 -2
- package/vue-components/v3/button/Button.vue +33 -11
- package/vue-components/v3/cards/Cluster.vue +3 -0
- package/vue-components/v3/cards/Vendor.vue +1 -1
- package/vue-components/v3/content/ContentTable.vue +1 -1
- package/vue-components/v3/editor/FilteredFileEditor.vue +5 -1
- package/vue-components/v3/footer/Info.vue +10 -8
- package/vue-components/v3/footer/Status.vue +21 -23
- package/vue-components/v3/footer/Usage.vue +20 -30
- package/vue-components/v3/form/Form.vue +0 -3
- package/vue-components/v3/form-fields/AcSingleInput.vue +8 -0
- package/vue-components/v3/header/Header.vue +2 -2
- package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +7 -7
- package/vue-components/v3/modal/Modal.vue +1 -1
- package/vue-components/v3/modals/LongRunningTasksModal.vue +5 -5
- package/vue-components/v3/navbar/Navbar.vue +3 -1
- package/vue-components/v3/navbar/NavbarItemContent.vue +1 -1
- package/vue-components/v3/navbar/User.vue +4 -4
- package/vue-components/v3/notification/AlertBox.vue +233 -3
- package/vue-components/v3/option-dots/Options.vue +3 -2
- package/vue-components/v3/pagination/Pagination.vue +2 -1
- package/vue-components/v3/preloader/Preloader.vue +1 -1
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +31 -27
- package/vue-components/v3/sidebar/Sidebar.vue +3 -30
- package/vue-components/v3/sidebar/SidebarFooter.vue +5 -2
- package/vue-components/v3/sidebar/Steps.vue +55 -51
- package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabs.vue +78 -2
- package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabsLayout.vue +12 -3
- package/vue-components/v3/table/InfoTable.vue +6 -4
- package/vue-components/v3/table/Table.vue +16 -16
- package/vue-components/v3/table/TableRow.vue +2 -2
- package/components/_ac-card.scss +0 -0
- package/components/_ac-input.scss +0 -394
- /package/components/{_ac-accordion.scss → _accordion.scss} +0 -0
- /package/components/{_ac-report.scss → _report.scss} +0 -0
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
content: "";
|
|
82
82
|
width: 100%;
|
|
83
83
|
height: 100%;
|
|
84
|
-
background-color: $
|
|
84
|
+
background-color: $black-5;
|
|
85
85
|
z-index: -1;
|
|
86
86
|
opacity: 0.2;
|
|
87
87
|
}
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
top: 0;
|
|
112
112
|
width: 100%;
|
|
113
113
|
height: 100%;
|
|
114
|
-
background-color: $
|
|
114
|
+
background-color: $black-5;
|
|
115
115
|
opacity: 0.3;
|
|
116
116
|
z-index: -1;
|
|
117
117
|
}
|
|
@@ -169,6 +169,7 @@
|
|
|
169
169
|
}
|
|
170
170
|
}
|
|
171
171
|
}
|
|
172
|
+
|
|
172
173
|
.ac-system-body.has-ui-builder {
|
|
173
174
|
.information-center .information-center-inner {
|
|
174
175
|
top: 140px;
|
|
@@ -187,6 +188,7 @@
|
|
|
187
188
|
}
|
|
188
189
|
}
|
|
189
190
|
}
|
|
191
|
+
|
|
190
192
|
// dark theme end
|
|
191
193
|
// Extra small devices (portrait phones, less than 576px)
|
|
192
194
|
@media (max-width: 575.98px) {
|
|
@@ -196,17 +198,13 @@
|
|
|
196
198
|
}
|
|
197
199
|
|
|
198
200
|
// Small devices (landscape phones, 576px and up)
|
|
199
|
-
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
200
|
-
}
|
|
201
|
+
@media (min-width: 576px) and (max-width: 767.98px) {}
|
|
201
202
|
|
|
202
203
|
// Medium devices (tablets, 768px and up)
|
|
203
|
-
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
204
|
-
}
|
|
204
|
+
@media (min-width: 768px) and (max-width: 991.98px) {}
|
|
205
205
|
|
|
206
206
|
// Large devices (desktops, 992px and up)
|
|
207
|
-
@media (min-width: 992px) and (max-width: 1199.98px) {
|
|
208
|
-
}
|
|
207
|
+
@media (min-width: 992px) and (max-width: 1199.98px) {}
|
|
209
208
|
|
|
210
209
|
// Extra large devices (large desktops, 1200px and up)
|
|
211
|
-
@media (min-width: 1200px) {
|
|
212
|
-
}
|
|
210
|
+
@media (min-width: 1200px) {}
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
left: 50%;
|
|
31
31
|
top: 7px;
|
|
32
32
|
transform: translate(-50%, -50%);
|
|
33
|
-
background-color:
|
|
33
|
+
background-color: transparent;
|
|
34
34
|
border-radius: 10px;
|
|
35
35
|
}
|
|
36
36
|
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
width: 10px;
|
|
45
45
|
height: 10px;
|
|
46
46
|
border-radius: 50%;
|
|
47
|
-
background-color:
|
|
47
|
+
background-color: transparent;
|
|
48
48
|
display: block;
|
|
49
49
|
position: absolute;
|
|
50
50
|
top: 2px;
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
.left-content {
|
|
121
121
|
padding: 20px;
|
|
122
122
|
border-radius: 4px;
|
|
123
|
-
background-color:
|
|
123
|
+
background-color: transparent;
|
|
124
124
|
|
|
125
125
|
h3 {
|
|
126
126
|
margin-bottom: 30px;
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
|
|
132
132
|
.right-content {
|
|
133
133
|
border-radius: 4px;
|
|
134
|
-
background-color:
|
|
134
|
+
background-color: transparent;
|
|
135
135
|
}
|
|
136
136
|
}
|
|
137
137
|
|
|
@@ -139,21 +139,16 @@
|
|
|
139
139
|
Responsive Classes
|
|
140
140
|
*****************************************/
|
|
141
141
|
// Extra small devices (portrait phones, less than 576px)
|
|
142
|
-
@media (max-width: 575.98px) {
|
|
143
|
-
}
|
|
142
|
+
@media (max-width: 575.98px) {}
|
|
144
143
|
|
|
145
144
|
// Small devices (landscape phones, 576px and up)
|
|
146
|
-
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
147
|
-
}
|
|
145
|
+
@media (min-width: 576px) and (max-width: 767.98px) {}
|
|
148
146
|
|
|
149
147
|
// Medium devices (tablets, 768px and up)
|
|
150
|
-
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
151
|
-
}
|
|
148
|
+
@media (min-width: 768px) and (max-width: 991.98px) {}
|
|
152
149
|
|
|
153
150
|
// Large devices (desktops, 992px and up)
|
|
154
|
-
@media (min-width: 992px) and (max-width: 1199.98px) {
|
|
155
|
-
}
|
|
151
|
+
@media (min-width: 992px) and (max-width: 1199.98px) {}
|
|
156
152
|
|
|
157
153
|
// Extra large devices (large desktops, 1200px and up)
|
|
158
|
-
@media (min-width: 1200px) {
|
|
159
|
-
}
|
|
154
|
+
@media (min-width: 1200px) {}
|
|
@@ -180,17 +180,21 @@
|
|
|
180
180
|
left: 24px;
|
|
181
181
|
z-index: -2;
|
|
182
182
|
}
|
|
183
|
+
|
|
183
184
|
&:hover {
|
|
184
185
|
&:nth-child(2) {
|
|
185
186
|
z-index: 1;
|
|
186
187
|
}
|
|
188
|
+
|
|
187
189
|
&:nth-child(3) {
|
|
188
190
|
z-index: 2;
|
|
189
191
|
}
|
|
192
|
+
|
|
190
193
|
img {
|
|
191
194
|
transform: scale(1.2);
|
|
192
195
|
}
|
|
193
196
|
}
|
|
197
|
+
|
|
194
198
|
img {
|
|
195
199
|
width: 18px;
|
|
196
200
|
transition: 0.3s ease-in-out;
|
|
@@ -226,7 +230,7 @@
|
|
|
226
230
|
cursor: pointer;
|
|
227
231
|
display: block;
|
|
228
232
|
width: 50%;
|
|
229
|
-
border-right: 1px solid $white-100
|
|
233
|
+
border-right: 1px solid $white-100 !important;
|
|
230
234
|
padding: 10px;
|
|
231
235
|
|
|
232
236
|
&:last-child {
|
|
@@ -278,17 +282,13 @@
|
|
|
278
282
|
}
|
|
279
283
|
|
|
280
284
|
// Small devices (landscape phones, 576px and up)
|
|
281
|
-
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
282
|
-
}
|
|
285
|
+
@media (min-width: 576px) and (max-width: 767.98px) {}
|
|
283
286
|
|
|
284
287
|
// Medium devices (tablets, 768px and up)
|
|
285
|
-
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
286
|
-
}
|
|
288
|
+
@media (min-width: 768px) and (max-width: 991.98px) {}
|
|
287
289
|
|
|
288
290
|
// Large devices (desktops, 992px and up)
|
|
289
|
-
@media (min-width: 992px) and (max-width: 1199.98px) {
|
|
290
|
-
}
|
|
291
|
+
@media (min-width: 992px) and (max-width: 1199.98px) {}
|
|
291
292
|
|
|
292
293
|
// Extra large devices (large desktops, 1200px and up)
|
|
293
|
-
@media (min-width: 1200px) {
|
|
294
|
-
}
|
|
294
|
+
@media (min-width: 1200px) {}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
.ui-builders-wrapper {
|
|
14
|
-
width:
|
|
14
|
+
width: 800px;
|
|
15
15
|
|
|
16
16
|
h5 {
|
|
17
17
|
margin-bottom: 10px;
|
|
@@ -28,6 +28,10 @@
|
|
|
28
28
|
display: grid;
|
|
29
29
|
grid-template-columns: 1fr 1fr auto;
|
|
30
30
|
grid-gap: 15px;
|
|
31
|
+
|
|
32
|
+
&.has-close {
|
|
33
|
+
grid-template-columns: 1fr 1fr auto auto;
|
|
34
|
+
}
|
|
31
35
|
}
|
|
32
36
|
|
|
33
37
|
.key-value-save-check {
|
|
@@ -153,7 +157,7 @@
|
|
|
153
157
|
min-width: 630px;
|
|
154
158
|
|
|
155
159
|
.thead {
|
|
156
|
-
background-color: $
|
|
160
|
+
background-color: $primary-90;
|
|
157
161
|
|
|
158
162
|
.tr {
|
|
159
163
|
.th {
|
|
@@ -206,18 +210,101 @@
|
|
|
206
210
|
|
|
207
211
|
// details with checkradio
|
|
208
212
|
.details-with-checkradio-wrapper {
|
|
209
|
-
display:
|
|
210
|
-
|
|
211
|
-
|
|
213
|
+
display: flex;
|
|
214
|
+
flex-wrap: wrap;
|
|
215
|
+
gap: 15px;
|
|
216
|
+
}
|
|
217
|
+
.table {
|
|
218
|
+
tr {
|
|
219
|
+
&.is-selected {
|
|
220
|
+
background-color: $primary-97;
|
|
221
|
+
strong {
|
|
222
|
+
color: $primary;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
212
226
|
}
|
|
213
|
-
|
|
214
227
|
// dark theme start
|
|
215
|
-
.is-dark-theme {
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
228
|
+
// .is-dark-theme {
|
|
229
|
+
// .nested-body {
|
|
230
|
+
// code {
|
|
231
|
+
// background-color: var(--dark-bg-light);
|
|
232
|
+
// }
|
|
233
|
+
// }
|
|
234
|
+
// }
|
|
235
|
+
|
|
236
|
+
// label action start
|
|
237
|
+
.label-action {
|
|
238
|
+
align-items: center;
|
|
239
|
+
height: 21px;
|
|
240
|
+
|
|
241
|
+
.ac-single-input {
|
|
242
|
+
label {
|
|
243
|
+
margin-top: 2px;
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
button:not(.is-text) {
|
|
248
|
+
opacity: 0;
|
|
249
|
+
visibility: hidden;
|
|
250
|
+
transition: 0.3s ease-in-out;
|
|
251
|
+
|
|
252
|
+
img {
|
|
253
|
+
width: 15px;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
&.label-icon {
|
|
257
|
+
border: none;
|
|
258
|
+
background-color: transparent;
|
|
259
|
+
cursor: pointer;
|
|
260
|
+
padding: 0;
|
|
261
|
+
transition: 0.3s ease-in-out;
|
|
262
|
+
|
|
263
|
+
&:hover {
|
|
264
|
+
opacity: 0.8;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
&:hover {
|
|
270
|
+
button {
|
|
271
|
+
opacity: 1;
|
|
272
|
+
visibility: visible;
|
|
219
273
|
}
|
|
220
274
|
}
|
|
275
|
+
|
|
276
|
+
.ms-close-button,
|
|
277
|
+
.ac-modal-footer {
|
|
278
|
+
.buttons {
|
|
279
|
+
button {
|
|
280
|
+
opacity: 1;
|
|
281
|
+
visibility: visible;
|
|
282
|
+
|
|
283
|
+
&:hover {
|
|
284
|
+
opacity: 0.7;
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.label-icon {
|
|
291
|
+
display: flex;
|
|
292
|
+
align-items: center;
|
|
293
|
+
margin-right: 10px;
|
|
294
|
+
|
|
295
|
+
img {
|
|
296
|
+
width: 16px;
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
strong {
|
|
301
|
+
font-style: normal;
|
|
302
|
+
font-weight: 500;
|
|
303
|
+
font-size: 13px;
|
|
304
|
+
line-height: 16px;
|
|
305
|
+
color: $primary-10;
|
|
306
|
+
margin-right: 16px;
|
|
307
|
+
}
|
|
221
308
|
}
|
|
222
309
|
|
|
223
310
|
//For resource input from
|
|
@@ -243,7 +330,102 @@
|
|
|
243
330
|
top: 7px;
|
|
244
331
|
}
|
|
245
332
|
|
|
246
|
-
|
|
333
|
+
.ac-final-state {
|
|
334
|
+
margin-bottom: 10px;
|
|
335
|
+
|
|
336
|
+
&:last-child {
|
|
337
|
+
margin-bottom: 0;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.state-left {
|
|
341
|
+
h5 {
|
|
342
|
+
font-style: normal;
|
|
343
|
+
font-weight: 500;
|
|
344
|
+
font-size: 14px;
|
|
345
|
+
line-height: 19px;
|
|
346
|
+
color: $primary-10;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
button {
|
|
350
|
+
&.ac-button {
|
|
351
|
+
opacity: 0;
|
|
352
|
+
visibility: hidden;
|
|
353
|
+
transition: 0.3s ease-in-out;
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
&:hover {
|
|
359
|
+
.state-left {
|
|
360
|
+
button {
|
|
361
|
+
&.ac-button {
|
|
362
|
+
opacity: 1;
|
|
363
|
+
visibility: visible;
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.up-down-buttons {
|
|
371
|
+
border-radius: 4px;
|
|
372
|
+
overflow: hidden;
|
|
373
|
+
position: relative;
|
|
374
|
+
z-index: 1;
|
|
375
|
+
max-width: 36px;
|
|
376
|
+
margin-bottom: 0 !important;
|
|
377
|
+
button {
|
|
378
|
+
width: 36px;
|
|
379
|
+
height: 18px;
|
|
380
|
+
cursor: pointer;
|
|
381
|
+
border: none;
|
|
382
|
+
color: $primary;
|
|
383
|
+
background-color: $primary-90;
|
|
384
|
+
transition: 0.3s ease-in-out;
|
|
385
|
+
&:hover {
|
|
386
|
+
background-color: $primary-80;
|
|
387
|
+
}
|
|
388
|
+
&.is-primary {
|
|
389
|
+
background-color: $primary;
|
|
390
|
+
color: $white-100;
|
|
391
|
+
&:hover {
|
|
392
|
+
background-color: $primary-30;
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
.icon {
|
|
396
|
+
margin: 0;
|
|
397
|
+
padding: 0;
|
|
398
|
+
width: auto;
|
|
399
|
+
height: auto;
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
// buttons
|
|
404
|
+
.button {
|
|
405
|
+
&.ac-button {
|
|
406
|
+
&.is-medium {
|
|
407
|
+
font-size: 1rem;
|
|
408
|
+
height: 36px;
|
|
409
|
+
}
|
|
410
|
+
&.is-tinny {
|
|
411
|
+
height: 24px;
|
|
412
|
+
padding: 0 8px;
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.button[disabled] {
|
|
418
|
+
&.is-ghost {
|
|
419
|
+
border-color: transparent !important;
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
p.is-error,
|
|
424
|
+
span.is-error {
|
|
425
|
+
color: $danger;
|
|
426
|
+
font-weight: 400;
|
|
427
|
+
}
|
|
428
|
+
|
|
247
429
|
/****************************************
|
|
248
430
|
Responsive Classes
|
|
249
431
|
*****************************************/
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
|
|
52
52
|
.ac-single-switch {
|
|
53
53
|
margin-left: -15px;
|
|
54
|
+
margin-bottom: 35px;
|
|
54
55
|
}
|
|
55
56
|
|
|
56
57
|
.ac-single-input {
|
|
@@ -64,13 +65,13 @@
|
|
|
64
65
|
|
|
65
66
|
.vue-form-scema-body {
|
|
66
67
|
.left-content {
|
|
67
|
-
|
|
68
|
-
|
|
68
|
+
background-color: $primary-97;
|
|
69
|
+
border-right: 1px solid $primary-90;
|
|
69
70
|
padding: 30px;
|
|
71
|
+
width: 500px;
|
|
70
72
|
}
|
|
71
73
|
|
|
72
74
|
.right-content {
|
|
73
|
-
width: 100%;
|
|
74
75
|
margin-top: 30px;
|
|
75
76
|
}
|
|
76
77
|
}
|
|
@@ -90,7 +91,6 @@
|
|
|
90
91
|
}
|
|
91
92
|
|
|
92
93
|
.is-collapsed {
|
|
93
|
-
|
|
94
94
|
&.ac-nested-elements::before,
|
|
95
95
|
&.ac-nested-elements::after {
|
|
96
96
|
display: none;
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
|
|
100
100
|
.ui-builders-wrapper {
|
|
101
101
|
.ac-nested-elements::before {
|
|
102
|
-
bottom:
|
|
102
|
+
bottom: 10px !important;
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
|
|
@@ -136,7 +136,6 @@
|
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
&.is-success {
|
|
139
|
-
|
|
140
139
|
input,
|
|
141
140
|
.ac-card,
|
|
142
141
|
textarea {
|
|
@@ -149,7 +148,6 @@
|
|
|
149
148
|
}
|
|
150
149
|
|
|
151
150
|
&.is-danger {
|
|
152
|
-
|
|
153
151
|
input,
|
|
154
152
|
.ac-card,
|
|
155
153
|
textarea {
|
|
@@ -162,7 +160,6 @@
|
|
|
162
160
|
}
|
|
163
161
|
|
|
164
162
|
&.is-loading {
|
|
165
|
-
|
|
166
163
|
input,
|
|
167
164
|
.ac-card,
|
|
168
165
|
textarea {
|
|
@@ -215,6 +212,10 @@
|
|
|
215
212
|
height: 45px;
|
|
216
213
|
width: 45px;
|
|
217
214
|
margin-top: 0;
|
|
215
|
+
&:focus {
|
|
216
|
+
outline: none;
|
|
217
|
+
box-shadow: none;
|
|
218
|
+
}
|
|
218
219
|
}
|
|
219
220
|
}
|
|
220
221
|
|
|
@@ -484,10 +485,12 @@
|
|
|
484
485
|
transition: 0.3s;
|
|
485
486
|
|
|
486
487
|
&:hover {
|
|
487
|
-
background-color: hsla(
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
488
|
+
background-color: hsla(
|
|
489
|
+
var(--hsl-hue),
|
|
490
|
+
var(--hsl-saturation),
|
|
491
|
+
var(--hsl-lightness),
|
|
492
|
+
0.2
|
|
493
|
+
);
|
|
491
494
|
color: $primary;
|
|
492
495
|
}
|
|
493
496
|
}
|
|
@@ -613,4 +616,47 @@
|
|
|
613
616
|
width: 200px !important;
|
|
614
617
|
padding-right: 10px;
|
|
615
618
|
}
|
|
616
|
-
}
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
// button scss
|
|
622
|
+
.button {
|
|
623
|
+
&.ac-button {
|
|
624
|
+
padding: 8px 16px;
|
|
625
|
+
font-weight: 500;
|
|
626
|
+
line-height: 1;
|
|
627
|
+
|
|
628
|
+
&.is-light {
|
|
629
|
+
&.is-loading {
|
|
630
|
+
&::after {
|
|
631
|
+
border-color: transparent transparent #1c1c1c #1c1c1c !important;
|
|
632
|
+
}
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
&.is-ghost {
|
|
636
|
+
border-color: transparent !important;
|
|
637
|
+
}
|
|
638
|
+
&.is-square {
|
|
639
|
+
border: 1px solid $primary-95;
|
|
640
|
+
}
|
|
641
|
+
&.is-small {
|
|
642
|
+
padding: 4px 9px;
|
|
643
|
+
}
|
|
644
|
+
&.is-medium {
|
|
645
|
+
font-size: 1rem;
|
|
646
|
+
height: 36px;
|
|
647
|
+
}
|
|
648
|
+
}
|
|
649
|
+
&:focus {
|
|
650
|
+
outline: none;
|
|
651
|
+
box-shadow: none;
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
button.is-primary {
|
|
655
|
+
background-color: $primary;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.is-refresh {
|
|
659
|
+
i.fa {
|
|
660
|
+
color: $primary-10;
|
|
661
|
+
}
|
|
662
|
+
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
background-color: $white-100;
|
|
10
10
|
|
|
11
11
|
&.ac-bg {
|
|
12
|
-
background-color:
|
|
12
|
+
background-color: transparent;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
&.is-fullwidth {
|
|
@@ -58,13 +58,13 @@
|
|
|
58
58
|
|
|
59
59
|
/* Handle */
|
|
60
60
|
&::-webkit-scrollbar-thumb {
|
|
61
|
-
background-color: $
|
|
61
|
+
background-color: $black-50;
|
|
62
62
|
border-radius: 10px;
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
/* Handle on hover */
|
|
66
66
|
&::-webkit-scrollbar-thumb:hover {
|
|
67
|
-
background-color: $
|
|
67
|
+
background-color: $black-50;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
.number {
|
|
@@ -110,6 +110,7 @@
|
|
|
110
110
|
// new code preview
|
|
111
111
|
.ac-components {
|
|
112
112
|
margin: 20px;
|
|
113
|
+
|
|
113
114
|
.single-component {
|
|
114
115
|
// box-shadow: $ac-shadow-1;
|
|
115
116
|
border: 1px solid $primary-90;
|
|
@@ -253,9 +254,7 @@ Responsive Classes
|
|
|
253
254
|
}
|
|
254
255
|
|
|
255
256
|
// Large devices (desktops, 992px and up)
|
|
256
|
-
@media (min-width: 992px) and (max-width: 1199.98px) {
|
|
257
|
-
}
|
|
257
|
+
@media (min-width: 992px) and (max-width: 1199.98px) {}
|
|
258
258
|
|
|
259
259
|
// Extra large devices (large desktops, 1200px and up)
|
|
260
|
-
@media (min-width: 1200px) {
|
|
261
|
-
}
|
|
260
|
+
@media (min-width: 1200px) {}
|
package/main.scss
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
// Third party CSS
|
|
6
6
|
@import "../node_modules/bulma/bulma.sass";
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
@import "bulma-checkradio";
|
|
8
|
+
@import "bulma-switch";
|
|
9
|
+
@import "bulma-tooltip";
|
|
10
10
|
@import "font-awesome/css/font-awesome.min.css";
|
|
11
11
|
@import "vue-multiselect/dist/vue-multiselect.css";
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
interface Substep {
|
|
2
|
+
component: string;
|
|
3
|
+
identifier: number;
|
|
4
|
+
title: string;
|
|
5
|
+
isVisible: boolean;
|
|
6
|
+
isValid: () => boolean;
|
|
7
|
+
nextStep: () => void;
|
|
8
|
+
nextStepButtonText?: () => string;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface Step {
|
|
12
|
+
identifier: number;
|
|
13
|
+
title: string;
|
|
14
|
+
isVisible: boolean;
|
|
15
|
+
substeps: Substep[];
|
|
16
|
+
}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
v-if="isPreviewLoading || (!isPreviewLoading && previewYamls)"
|
|
8
8
|
class="left-content"
|
|
9
9
|
>
|
|
10
|
-
<div class="ac-files ac-hscrollbar pt-0">
|
|
10
|
+
<div class="ac-files ac-hscrollbar ac-vscrollbar pt-0">
|
|
11
11
|
<ul v-if="!isPreviewLoading">
|
|
12
12
|
<li
|
|
13
13
|
v-for="(previewYaml, idx) in filteredYamls"
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
</div>
|
|
60
60
|
</template>
|
|
61
61
|
<script>
|
|
62
|
-
import Preloader from "../preloader/Preloader.vue";
|
|
63
62
|
import Banner from "../banner/Banner.vue";
|
|
63
|
+
import Preloader from "../preloader/Preloader.vue";
|
|
64
64
|
export default {
|
|
65
65
|
components: {
|
|
66
66
|
Editor: () => ({
|
|
@@ -20,7 +20,7 @@ withDefaults(defineProps<Props>(), {
|
|
|
20
20
|
// for alert message
|
|
21
21
|
.ac-notification {
|
|
22
22
|
background-color: #dee7f5;
|
|
23
|
-
font-size:
|
|
23
|
+
font-size: 13px;
|
|
24
24
|
color: $primary;
|
|
25
25
|
min-height: 36px;
|
|
26
26
|
display: flex;
|
|
@@ -232,7 +232,7 @@ AC Toast
|
|
|
232
232
|
// dark theme start
|
|
233
233
|
// .is-dark-theme {
|
|
234
234
|
// .ac-notification.is-danger {
|
|
235
|
-
// background-color: $
|
|
235
|
+
// background-color: $black-80;
|
|
236
236
|
// }
|
|
237
237
|
// }
|
|
238
238
|
</style>
|