@appscode/design-system 1.1.0-beta.4 → 1.1.0-beta.41
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 +6 -2
- 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
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
// terminal scss start
|
|
2
2
|
.ac-terminal {
|
|
3
3
|
width: 100%;
|
|
4
|
+
border-top: 1px solid var(--ac-white-light);
|
|
5
|
+
padding: 0;
|
|
6
|
+
position: fixed;
|
|
7
|
+
width: calc(100% - 250px);
|
|
8
|
+
bottom: 0;
|
|
9
|
+
background-color: $primary-10;
|
|
10
|
+
color: $white-100;
|
|
11
|
+
font-size: 13px;
|
|
12
|
+
height: 360px;
|
|
13
|
+
z-index: 999;
|
|
14
|
+
transition: 0.3s ease-in-out;
|
|
4
15
|
|
|
5
16
|
.terminal-body {
|
|
6
17
|
font-family: "Inconsolata", monospace;
|
|
@@ -12,20 +23,6 @@
|
|
|
12
23
|
color: $white-100;
|
|
13
24
|
}
|
|
14
25
|
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.ac-terminal {
|
|
18
|
-
border-top: 1px solid var(--ac-white-light);
|
|
19
|
-
padding: 0;
|
|
20
|
-
position: fixed;
|
|
21
|
-
width: calc(100% - 250px);
|
|
22
|
-
bottom: 0;
|
|
23
|
-
background-color: $white-100;
|
|
24
|
-
color: $white-100;
|
|
25
|
-
font-size: 13px;
|
|
26
|
-
height: 360px;
|
|
27
|
-
z-index: 999;
|
|
28
|
-
transition: 0.3s ease-in-out;
|
|
29
26
|
|
|
30
27
|
&.is-collapsed {
|
|
31
28
|
height: 40px !important;
|
|
@@ -52,13 +49,13 @@
|
|
|
52
49
|
}
|
|
53
50
|
|
|
54
51
|
.terminal-header {
|
|
55
|
-
border-top: 1px solid $
|
|
52
|
+
border-top: 1px solid $primary-90;
|
|
56
53
|
box-shadow: 1px -2px 5px 1px rgba(0, 0, 0, 0.08%);
|
|
57
54
|
background-color: $primary-10;
|
|
58
55
|
|
|
59
56
|
.tabs {
|
|
60
57
|
padding: 0 20px 0 20px;
|
|
61
|
-
background-color: $
|
|
58
|
+
background-color: $primary-10;
|
|
62
59
|
overflow: inherit;
|
|
63
60
|
height: 40px;
|
|
64
61
|
|
|
@@ -85,13 +82,13 @@
|
|
|
85
82
|
}
|
|
86
83
|
|
|
87
84
|
&::-webkit-scrollbar-thumb {
|
|
88
|
-
background-color: $
|
|
85
|
+
background-color: $black-50;
|
|
89
86
|
border-radius: 50px;
|
|
90
87
|
height: 2px !important;
|
|
91
88
|
}
|
|
92
89
|
|
|
93
90
|
&::-webkit-scrollbar-thumb:hover {
|
|
94
|
-
background-color: $
|
|
91
|
+
background-color: $black-50;
|
|
95
92
|
}
|
|
96
93
|
|
|
97
94
|
&:hover::-webkit-scrollbar-corner {
|
|
@@ -113,7 +110,7 @@
|
|
|
113
110
|
|
|
114
111
|
li:not(.is-active) {
|
|
115
112
|
margin-right: -1px;
|
|
116
|
-
border-right: 1px solid $
|
|
113
|
+
border-right: 1px solid $primary-90;
|
|
117
114
|
}
|
|
118
115
|
|
|
119
116
|
li {
|
|
@@ -147,29 +144,47 @@
|
|
|
147
144
|
}
|
|
148
145
|
}
|
|
149
146
|
|
|
150
|
-
.options
|
|
151
|
-
|
|
152
|
-
|
|
147
|
+
.ac-options {
|
|
148
|
+
position: relative;
|
|
149
|
+
|
|
150
|
+
.options-items {
|
|
151
|
+
top: 5px;
|
|
152
|
+
left: 35px;
|
|
153
|
+
position: absolute;
|
|
154
|
+
background: $primary-20;
|
|
155
|
+
width: 150px;
|
|
156
|
+
border-radius: 4px;
|
|
157
|
+
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
|
|
158
|
+
z-index: 99;
|
|
159
|
+
border-color: $primary-20;
|
|
160
|
+
|
|
161
|
+
.items-inner {
|
|
162
|
+
border: none;
|
|
153
163
|
|
|
154
|
-
|
|
155
|
-
|
|
164
|
+
li {
|
|
165
|
+
border: none;
|
|
166
|
+
border-right: none !important;
|
|
167
|
+
border-bottom: 1px solid $primary-30;
|
|
168
|
+
width: 100%;
|
|
156
169
|
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
border-bottom: 1px solid $white-100-lighter;
|
|
161
|
-
width: 100%;
|
|
170
|
+
&:last-child {
|
|
171
|
+
border-bottom: none;
|
|
172
|
+
}
|
|
162
173
|
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
174
|
+
a {
|
|
175
|
+
font-size: 13px;
|
|
176
|
+
padding: 10px 20px;
|
|
177
|
+
justify-content: flex-start;
|
|
178
|
+
border-bottom: 1px solid $primary-20;
|
|
179
|
+
color: $primary-97;
|
|
166
180
|
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
181
|
+
&:last-child {
|
|
182
|
+
border-bottom: none;
|
|
183
|
+
}
|
|
170
184
|
|
|
171
|
-
|
|
172
|
-
|
|
185
|
+
&:hover {
|
|
186
|
+
color: $primary !important;
|
|
187
|
+
}
|
|
173
188
|
}
|
|
174
189
|
}
|
|
175
190
|
}
|
|
@@ -204,7 +219,7 @@
|
|
|
204
219
|
|
|
205
220
|
.multiselect .multiselect__tags .multiselect__input,
|
|
206
221
|
.multiselect .multiselect__tags .multiselect__single {
|
|
207
|
-
background-color:
|
|
222
|
+
background-color: $primary-10;
|
|
208
223
|
}
|
|
209
224
|
}
|
|
210
225
|
}
|
|
@@ -254,7 +269,7 @@
|
|
|
254
269
|
|
|
255
270
|
.multiselect.multiselect--active {
|
|
256
271
|
.multiselect__tags {
|
|
257
|
-
border: 1px solid $
|
|
272
|
+
border: 1px solid $primary-30 !important;
|
|
258
273
|
|
|
259
274
|
.multiselect__input {
|
|
260
275
|
color: $white-100 !important;
|
|
@@ -278,37 +293,8 @@
|
|
|
278
293
|
}
|
|
279
294
|
}
|
|
280
295
|
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
// .terminal-setting {
|
|
287
|
-
// --ac-color-value: var(--dark-bg-light);
|
|
288
|
-
|
|
289
|
-
// .left-content .ac-select-box-wrapper .multiselect .multiselect__tags {
|
|
290
|
-
// .multiselect__input {
|
|
291
|
-
// background-color: var(--dark-bg-light);
|
|
292
|
-
// color: var(--ac-white-text);
|
|
293
|
-
// }
|
|
294
|
-
|
|
295
|
-
// .multiselect__single {
|
|
296
|
-
// background-color: var(--dark-bg-light);
|
|
297
|
-
// color: var(--ac-white-text);
|
|
298
|
-
// }
|
|
299
|
-
// }
|
|
300
|
-
// }
|
|
301
|
-
|
|
302
|
-
// .multiselect {
|
|
303
|
-
// .multiselect__tags {
|
|
304
|
-
// background-color: transparent;
|
|
305
|
-
|
|
306
|
-
// span {
|
|
307
|
-
// color: var(--ac-white-text);
|
|
308
|
-
// }
|
|
309
|
-
// }
|
|
310
|
-
// }
|
|
311
|
-
// }
|
|
312
|
-
// }
|
|
313
|
-
|
|
314
|
-
// dark theme end
|
|
296
|
+
.sidebar-collapsed {
|
|
297
|
+
.ac-terminal {
|
|
298
|
+
width: calc(100% - 60px);
|
|
299
|
+
}
|
|
300
|
+
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
// padding-left: 20px;
|
|
15
15
|
|
|
16
16
|
// &.is-active {
|
|
17
|
-
// background-color:
|
|
17
|
+
// background-color: transparent;
|
|
18
18
|
// color: $primary;
|
|
19
19
|
// }
|
|
20
20
|
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
// &:after {
|
|
162
162
|
// width: 100%;
|
|
163
163
|
// border-radius: 0;
|
|
164
|
-
// background-color:
|
|
164
|
+
// background-color: transparent;
|
|
165
165
|
// }
|
|
166
166
|
// }
|
|
167
167
|
// }
|
|
@@ -252,21 +252,16 @@
|
|
|
252
252
|
Responsive Classes
|
|
253
253
|
*****************************************/
|
|
254
254
|
// Extra small devices (portrait phones, less than 576px)
|
|
255
|
-
@media (max-width: 575.98px) {
|
|
256
|
-
}
|
|
255
|
+
@media (max-width: 575.98px) {}
|
|
257
256
|
|
|
258
257
|
// Small devices (landscape phones, 576px and up)
|
|
259
|
-
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
260
|
-
}
|
|
258
|
+
@media (min-width: 576px) and (max-width: 767.98px) {}
|
|
261
259
|
|
|
262
260
|
// Medium devices (tablets, 768px and up)
|
|
263
|
-
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
264
|
-
}
|
|
261
|
+
@media (min-width: 768px) and (max-width: 991.98px) {}
|
|
265
262
|
|
|
266
263
|
// Large devices (desktops, 992px and up)
|
|
267
|
-
@media (min-width: 992px) and (max-width: 1199.98px) {
|
|
268
|
-
}
|
|
264
|
+
@media (min-width: 992px) and (max-width: 1199.98px) {}
|
|
269
265
|
|
|
270
266
|
// Extra large devices (large desktops, 1200px and up)
|
|
271
|
-
@media (min-width: 1200px) {
|
|
272
|
-
}
|
|
267
|
+
@media (min-width: 1200px) {}
|