@appscode/design-system 1.0.43-alpha.99 → 1.1.0-alpha.10
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 +8 -0
- package/base/utilities/_customize-bulma.scss +191 -0
- package/base/utilities/_default.scss +58 -124
- package/base/utilities/_derived-variables.scss +6 -0
- package/base/utilities/_extended.scss +38 -0
- package/base/utilities/_grid.scss +29 -0
- package/base/utilities/_initial-variables.scss +14 -10
- package/base/utilities/_typography.scss +6 -12
- package/base/utilities/dark-theme.scss +1 -0
- package/components/_ac-accordion.scss +14 -5
- package/components/_ac-alert-box.scss +32 -6
- package/components/_ac-card.scss +17 -5
- package/components/_ac-drag.scss +2 -0
- package/components/_ac-input.scss +19 -11
- package/components/_ac-modal.scss +1 -1
- package/components/_ac-multi-select.scss +60 -4
- package/components/_ac-report.scss +53 -0
- package/components/_ac-table.scss +60 -2
- package/components/_ac-tabs.scss +16 -2
- package/components/_ac-tags.scss +85 -0
- package/components/_ac-terminal.scss +1 -3
- package/components/_all.scss +29 -0
- package/components/_basic-card.scss +128 -0
- package/components/_buttons.scss +14 -33
- package/components/_dashboard-header.scss +32 -0
- package/components/_left-sidebar-menu.scss +9 -9
- package/components/_navbar.scss +89 -4
- package/components/_preview-modal.scss +14 -1
- package/components/_transitions.scss +296 -0
- package/components/_wizard.scss +1 -0
- package/components/bbum/_all.scss +9 -0
- package/components/bbum/_single-post-preview.scss +1 -1
- package/components/ui-builder/_ui-builder.scss +65 -1
- package/components/ui-builder/_vue-open-api.scss +6 -0
- package/layouts/_all.scss +2 -0
- package/layouts/_code-preview.scss +5 -2
- package/main.scss +5 -56
- package/package.json +4 -2
- package/plugins/caching.ts +243 -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/content/ContentTable.vue +10 -0
- package/vue-components/v2/editor/Editor.vue +37 -24
- 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 +31 -5
- package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
- package/vue-components/v2/modals/JsonShowModal.vue +12 -2
- 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 +1 -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 +49 -8
- package/vue-components/v2/table/TableRow.vue +12 -2
- package/vue-components/v2/table/table-cell/CellValue.vue +29 -9
- 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/v3/button/Button.vue +6 -1
- package/vue-components/v3/content/ContentHeader.vue +2 -1
- package/vue-components/v3/content/ContentTable.vue +25 -2
- package/vue-components/v3/editor/Editor.vue +36 -33
- 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 -7
- 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 +400 -0
- package/vue-components/v3/navbar/ThemeMode.vue +41 -49
- package/vue-components/v3/navbar/User.vue +242 -18
- package/vue-components/v3/notification/AlertBox.vue +61 -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 +16 -3
- 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 +55 -14
- package/vue-components/v3/table/TableContainer.vue +34 -0
- package/vue-components/v3/table/TableRow.vue +93 -6
- package/vue-components/v3/table/table-cell/CellValue.vue +23 -7
- package/vue-components/v3/table/table-cell/GenericCell.vue +75 -0
- package/vue-components/v3/table/table-cell/ObjectCell.vue +7 -2
- package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
|
@@ -0,0 +1,296 @@
|
|
|
1
|
+
.sidebar-appear-enter-active,
|
|
2
|
+
.sidebar-appear-leave-active {
|
|
3
|
+
position: absolute;
|
|
4
|
+
width: 270px;
|
|
5
|
+
transition: all 0.2s ease;
|
|
6
|
+
}
|
|
7
|
+
.sidebar-appear-enter-from {
|
|
8
|
+
left: -100%;
|
|
9
|
+
opacity: 0;
|
|
10
|
+
}
|
|
11
|
+
.sidebar-appear-enter-to {
|
|
12
|
+
left: 0px;
|
|
13
|
+
opacity: 1;
|
|
14
|
+
}
|
|
15
|
+
.sidebar-appear-leave-from {
|
|
16
|
+
left: 0px;
|
|
17
|
+
opacity: 1;
|
|
18
|
+
}
|
|
19
|
+
.sidebar-appear-leave-to {
|
|
20
|
+
left: 100%;
|
|
21
|
+
opacity: 0;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.navbar-appear-enter-active,
|
|
25
|
+
.navbar-appear-leave-active {
|
|
26
|
+
position: absolute;
|
|
27
|
+
height: 50px;
|
|
28
|
+
transition: all 0.2s ease;
|
|
29
|
+
}
|
|
30
|
+
.navbar-appear-enter-from {
|
|
31
|
+
top: -100%;
|
|
32
|
+
opacity: 0;
|
|
33
|
+
}
|
|
34
|
+
.navbar-appear-enter-to {
|
|
35
|
+
top: 0px;
|
|
36
|
+
opacity: 1;
|
|
37
|
+
}
|
|
38
|
+
.navbar-appear-leave-from {
|
|
39
|
+
top: 0px;
|
|
40
|
+
opacity: 1;
|
|
41
|
+
}
|
|
42
|
+
.navbar-appear-leave-to {
|
|
43
|
+
top: 100%;
|
|
44
|
+
opacity: 0;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.nested-enter-active .inner,
|
|
48
|
+
.nested-leave-active .inner {
|
|
49
|
+
transition: all 0.2s ease-in-out;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.nested-enter-from .inner,
|
|
53
|
+
.nested-leave-to .inner {
|
|
54
|
+
transform: translateX(20px);
|
|
55
|
+
opacity: 0;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.slide-left-enter-active,
|
|
59
|
+
.slide-left-leave-active {
|
|
60
|
+
transition: all 0.3s ease-in-out;
|
|
61
|
+
}
|
|
62
|
+
.slide-left-enter-from {
|
|
63
|
+
transform: translateX(20px);
|
|
64
|
+
opacity: 0;
|
|
65
|
+
}
|
|
66
|
+
.slide-left-enter-to {
|
|
67
|
+
transform: translateX(0px);
|
|
68
|
+
opacity: 1;
|
|
69
|
+
}
|
|
70
|
+
.slide-left-leave-from {
|
|
71
|
+
transform: translateX(0px);
|
|
72
|
+
opacity: 1;
|
|
73
|
+
}
|
|
74
|
+
.slide-left-leave-to {
|
|
75
|
+
transform: translateX(-20px);
|
|
76
|
+
opacity: 0;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.slide-right-enter-active,
|
|
80
|
+
.slide-right-leave-active {
|
|
81
|
+
transition: all 0.2s ease-in-out;
|
|
82
|
+
}
|
|
83
|
+
.slide-right-enter-from {
|
|
84
|
+
transform: translateX(-20px);
|
|
85
|
+
opacity: 0;
|
|
86
|
+
}
|
|
87
|
+
.slide-right-enter-to {
|
|
88
|
+
transform: translateX(0px);
|
|
89
|
+
opacity: 1;
|
|
90
|
+
}
|
|
91
|
+
.slide-right-leave-from {
|
|
92
|
+
transform: translateX(0px);
|
|
93
|
+
opacity: 1;
|
|
94
|
+
}
|
|
95
|
+
.slide-right-leave-to {
|
|
96
|
+
transform: translateX(20px);
|
|
97
|
+
opacity: 0;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.slide-down-enter-active,
|
|
101
|
+
.slide-down-leave-active {
|
|
102
|
+
transition: all 0.2s ease-in-out;
|
|
103
|
+
}
|
|
104
|
+
.slide-down-enter-from {
|
|
105
|
+
transform: translateY(-10px);
|
|
106
|
+
opacity: 0;
|
|
107
|
+
}
|
|
108
|
+
.slide-down-enter-to {
|
|
109
|
+
transform: translateY(0px);
|
|
110
|
+
opacity: 1;
|
|
111
|
+
}
|
|
112
|
+
.slide-down-leave-from {
|
|
113
|
+
transform: translateY(0px);
|
|
114
|
+
opacity: 1;
|
|
115
|
+
}
|
|
116
|
+
.slide-down-leave-to {
|
|
117
|
+
transform: translateY(-10px);
|
|
118
|
+
opacity: 0;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.fade-enter-active,
|
|
122
|
+
.fade-leave-active {
|
|
123
|
+
transition: all 0.2s ease-in-out;
|
|
124
|
+
}
|
|
125
|
+
.fade-enter-from {
|
|
126
|
+
opacity: 0;
|
|
127
|
+
}
|
|
128
|
+
.fade-enter-to {
|
|
129
|
+
opacity: 1;
|
|
130
|
+
}
|
|
131
|
+
.fade-leave-from {
|
|
132
|
+
opacity: 1;
|
|
133
|
+
}
|
|
134
|
+
.fade-leave-to {
|
|
135
|
+
opacity: 0;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.list-move, /* apply transition to moving elements */
|
|
139
|
+
.list-enter-active,
|
|
140
|
+
.list-leave-active {
|
|
141
|
+
transition: all 0.5s ease;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.list-enter-from,
|
|
145
|
+
.list-leave-to {
|
|
146
|
+
opacity: 0;
|
|
147
|
+
transform: translateX(35px);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.list-leave-active {
|
|
151
|
+
position: absolute;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.zoom-list-move, /* apply transition to moving elements */
|
|
155
|
+
.zoom-list-enter-active,
|
|
156
|
+
.zoom-list-leave-active {
|
|
157
|
+
transition: all 0.5s ease;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.zoom-list-enter-from,
|
|
161
|
+
.zoom-list-leave-to {
|
|
162
|
+
opacity: 0;
|
|
163
|
+
transform: scale(0.5);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.zoom-list-leave-active {
|
|
167
|
+
position: absolute;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.slide-left-list-move,
|
|
171
|
+
.slide-left-list-enter-active,
|
|
172
|
+
.slide-left-list-leave-active {
|
|
173
|
+
transition: all 0.3s ease-in-out;
|
|
174
|
+
}
|
|
175
|
+
.slide-left-list-enter-from,
|
|
176
|
+
.slide-left-list-leave-to {
|
|
177
|
+
transform: translateX(20px);
|
|
178
|
+
opacity: 0;
|
|
179
|
+
}
|
|
180
|
+
.slide-left-list-enter-to,
|
|
181
|
+
.slide-left-list-leave-from {
|
|
182
|
+
transform: translateX(0px);
|
|
183
|
+
opacity: 1;
|
|
184
|
+
}
|
|
185
|
+
.slide-left-list-leave-active {
|
|
186
|
+
position: absolute;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.overview-card-enter-active {
|
|
190
|
+
transition: all 0.2s ease-in-out;
|
|
191
|
+
}
|
|
192
|
+
.overview-card-leave-active {
|
|
193
|
+
transition: all 0.2s ease-in-out;
|
|
194
|
+
position: absolute;
|
|
195
|
+
}
|
|
196
|
+
.overview-card-enter-from {
|
|
197
|
+
transform: translateY(-20px);
|
|
198
|
+
opacity: 0;
|
|
199
|
+
}
|
|
200
|
+
.overview-card-enter-to {
|
|
201
|
+
transform: translateY(0px);
|
|
202
|
+
opacity: 1;
|
|
203
|
+
}
|
|
204
|
+
.overview-card-leave-from {
|
|
205
|
+
transform: translateY(0px);
|
|
206
|
+
opacity: 1;
|
|
207
|
+
}
|
|
208
|
+
.overview-card-leave-to {
|
|
209
|
+
transform: translateY(-10px);
|
|
210
|
+
opacity: 0;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.cluster-card-enter-active {
|
|
214
|
+
transition: all 0.2s ease-in-out;
|
|
215
|
+
}
|
|
216
|
+
.cluster-card-leave-active {
|
|
217
|
+
transition: all 0s;
|
|
218
|
+
position: absolute;
|
|
219
|
+
}
|
|
220
|
+
.cluster-card-enter-from {
|
|
221
|
+
transform: translateX(-20px);
|
|
222
|
+
opacity: 0;
|
|
223
|
+
}
|
|
224
|
+
.cluster-card-enter-to {
|
|
225
|
+
transform: translateX(0px);
|
|
226
|
+
opacity: 1;
|
|
227
|
+
}
|
|
228
|
+
.cluster-card-leave-from {
|
|
229
|
+
transform: translateX(0px);
|
|
230
|
+
opacity: 1;
|
|
231
|
+
}
|
|
232
|
+
.cluster-card-leave-to {
|
|
233
|
+
opacity: 0;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.dropdown-animate.dropdown-show-animation .dropdown-content {
|
|
237
|
+
animation: dropdownAnim 0.2s ease-in-out;
|
|
238
|
+
}
|
|
239
|
+
.dropdown-animate.dropdown-hide-animation .dropdown-content {
|
|
240
|
+
animation: dropdownAnim reverse 0.2s ease-in-out;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
@keyframes dropdownAnim {
|
|
244
|
+
0% {
|
|
245
|
+
opacity: 0;
|
|
246
|
+
transform: translateY(-10px);
|
|
247
|
+
}
|
|
248
|
+
100% {
|
|
249
|
+
opacity: 1;
|
|
250
|
+
transform: translateY(0px);
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.accordion-enter-active,
|
|
255
|
+
.accordion-leave-active {
|
|
256
|
+
transition: all 0.3s ease-in-out;
|
|
257
|
+
position: relative;
|
|
258
|
+
}
|
|
259
|
+
.accordion-enter-from {
|
|
260
|
+
top: -10px;
|
|
261
|
+
opacity: 0;
|
|
262
|
+
}
|
|
263
|
+
.accordion-enter-to {
|
|
264
|
+
top: 0px;
|
|
265
|
+
opacity: 1;
|
|
266
|
+
}
|
|
267
|
+
.accordion-leave-from {
|
|
268
|
+
top: 0px;
|
|
269
|
+
opacity: 1;
|
|
270
|
+
}
|
|
271
|
+
.accordion-leave-to {
|
|
272
|
+
top: -10px;
|
|
273
|
+
opacity: 0;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.fa.fa-spinner.spin {
|
|
277
|
+
-webkit-animation: spin 1s linear infinite;
|
|
278
|
+
-moz-animation: spinAnim 1s linear infinite;
|
|
279
|
+
animation: spinAnim 1s linear infinite;
|
|
280
|
+
}
|
|
281
|
+
@-moz-keyframes spinAnim {
|
|
282
|
+
100% {
|
|
283
|
+
-moz-transform: rotate(360deg);
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
@-webkit-keyframes spinAnim {
|
|
287
|
+
100% {
|
|
288
|
+
-webkit-transform: rotate(360deg);
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
@keyframes spinAnim {
|
|
292
|
+
100% {
|
|
293
|
+
-webkit-transform: rotate(360deg);
|
|
294
|
+
transform: rotate(360deg);
|
|
295
|
+
}
|
|
296
|
+
}
|
package/components/_wizard.scss
CHANGED
|
@@ -12,20 +12,36 @@
|
|
|
12
12
|
|
|
13
13
|
.ui-builders-wrapper {
|
|
14
14
|
width: 760px;
|
|
15
|
+
|
|
15
16
|
h5 {
|
|
16
17
|
margin-bottom: 10px;
|
|
17
18
|
}
|
|
18
|
-
|
|
19
|
+
|
|
20
|
+
p :not(.ac-notification *){
|
|
19
21
|
font-size: 13px;
|
|
20
22
|
margin-bottom: 10px;
|
|
21
23
|
color: $ac-color-value;
|
|
22
24
|
}
|
|
23
25
|
}
|
|
26
|
+
|
|
24
27
|
.key-value-save {
|
|
25
28
|
display: grid;
|
|
26
29
|
grid-template-columns: 1fr 1fr auto;
|
|
27
30
|
grid-gap: 15px;
|
|
28
31
|
}
|
|
32
|
+
|
|
33
|
+
.key-value-save-check {
|
|
34
|
+
display: grid;
|
|
35
|
+
grid-template-columns: 1fr 1fr auto auto;
|
|
36
|
+
grid-gap: 15px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.key-save {
|
|
40
|
+
display: grid;
|
|
41
|
+
grid-template-columns: 1fr auto;
|
|
42
|
+
grid-gap: 15px;
|
|
43
|
+
}
|
|
44
|
+
|
|
29
45
|
.value-list-save {
|
|
30
46
|
display: grid;
|
|
31
47
|
grid-template-columns: 1fr auto;
|
|
@@ -38,16 +54,20 @@
|
|
|
38
54
|
padding-left: 20px;
|
|
39
55
|
position: relative;
|
|
40
56
|
z-index: 1;
|
|
57
|
+
|
|
41
58
|
&:first-child {
|
|
42
59
|
margin-left: -20px;
|
|
43
60
|
}
|
|
61
|
+
|
|
44
62
|
&.is-active {
|
|
45
63
|
&::after {
|
|
46
64
|
border: 1px dashed $ac-primary;
|
|
47
65
|
}
|
|
66
|
+
|
|
48
67
|
&::before {
|
|
49
68
|
background-color: $ac-primary;
|
|
50
69
|
}
|
|
70
|
+
|
|
51
71
|
.nested-header {
|
|
52
72
|
h6 {
|
|
53
73
|
.collaps-icon {
|
|
@@ -57,6 +77,7 @@
|
|
|
57
77
|
}
|
|
58
78
|
}
|
|
59
79
|
}
|
|
80
|
+
|
|
60
81
|
&::after {
|
|
61
82
|
position: absolute;
|
|
62
83
|
content: "";
|
|
@@ -79,15 +100,18 @@
|
|
|
79
100
|
border-radius: 50%;
|
|
80
101
|
z-index: -1;
|
|
81
102
|
}
|
|
103
|
+
|
|
82
104
|
.nested-header {
|
|
83
105
|
display: flex;
|
|
84
106
|
align-items: center;
|
|
85
107
|
justify-content: space-between;
|
|
86
108
|
margin-bottom: 5px;
|
|
109
|
+
|
|
87
110
|
h6 {
|
|
88
111
|
display: flex;
|
|
89
112
|
align-items: center;
|
|
90
113
|
cursor: pointer;
|
|
114
|
+
|
|
91
115
|
.collaps-icon {
|
|
92
116
|
width: 16px;
|
|
93
117
|
height: 16px;
|
|
@@ -101,33 +125,46 @@
|
|
|
101
125
|
cursor: pointer;
|
|
102
126
|
background-color: $ac-white;
|
|
103
127
|
color: $ac-color-value;
|
|
128
|
+
|
|
104
129
|
&.is-disabled {
|
|
105
130
|
cursor: not-allowed;
|
|
106
131
|
}
|
|
107
132
|
}
|
|
108
133
|
}
|
|
109
134
|
}
|
|
135
|
+
|
|
110
136
|
.nested-body {
|
|
111
137
|
padding-left: 24px;
|
|
112
138
|
}
|
|
113
139
|
}
|
|
114
140
|
|
|
141
|
+
.is-visibility-hidden {
|
|
142
|
+
visibility: hidden !important;
|
|
143
|
+
height: 0 !important;
|
|
144
|
+
opacity: 0 !important;
|
|
145
|
+
}
|
|
146
|
+
|
|
115
147
|
// nested elements end
|
|
116
148
|
|
|
117
149
|
.table-wrapper {
|
|
118
150
|
overflow-x: auto;
|
|
151
|
+
|
|
119
152
|
.table-inner {
|
|
120
153
|
min-width: 630px;
|
|
154
|
+
|
|
121
155
|
.thead {
|
|
122
156
|
background-color: $ac-white-lighter;
|
|
157
|
+
|
|
123
158
|
.tr {
|
|
124
159
|
.th {
|
|
125
160
|
font-weight: 600;
|
|
126
161
|
}
|
|
162
|
+
|
|
127
163
|
border-top: 1px solid var(--ac-white-light);
|
|
128
164
|
border-bottom: 1px solid var(--ac-white-light);
|
|
129
165
|
}
|
|
130
166
|
}
|
|
167
|
+
|
|
131
168
|
.thead,
|
|
132
169
|
.tbody {
|
|
133
170
|
.tr {
|
|
@@ -152,18 +189,21 @@
|
|
|
152
189
|
}
|
|
153
190
|
}
|
|
154
191
|
}
|
|
192
|
+
|
|
155
193
|
.is-selected {
|
|
156
194
|
border: 1px solid $ac-primary;
|
|
157
195
|
border-bottom: 1px solid $ac-primary !important;
|
|
158
196
|
border-radius: 4px;
|
|
159
197
|
}
|
|
160
198
|
}
|
|
199
|
+
|
|
161
200
|
.is-collapsed {
|
|
162
201
|
&.ac-nested-elements::before,
|
|
163
202
|
&.ac-nested-elements::after {
|
|
164
203
|
display: none;
|
|
165
204
|
}
|
|
166
205
|
}
|
|
206
|
+
|
|
167
207
|
// details with checkradio
|
|
168
208
|
.details-with-checkradio-wrapper {
|
|
169
209
|
display: grid;
|
|
@@ -179,6 +219,30 @@
|
|
|
179
219
|
}
|
|
180
220
|
}
|
|
181
221
|
}
|
|
222
|
+
|
|
223
|
+
//For resource input from
|
|
224
|
+
.resource-input {
|
|
225
|
+
display: grid;
|
|
226
|
+
grid-template-columns: 60px 1fr 1fr;
|
|
227
|
+
grid-gap: 15px;
|
|
228
|
+
align-items: center;
|
|
229
|
+
margin-bottom: 15px;
|
|
230
|
+
|
|
231
|
+
.label-text {
|
|
232
|
+
font-weight: 300;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.ac-single-input {
|
|
236
|
+
margin: 0;
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.pass-strength {
|
|
241
|
+
position: absolute;
|
|
242
|
+
right: 30px;
|
|
243
|
+
top: 7px;
|
|
244
|
+
}
|
|
245
|
+
|
|
182
246
|
// dark theme end
|
|
183
247
|
/****************************************
|
|
184
248
|
Responsive Classes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.component-wrapper {
|
|
2
2
|
.component-inner {
|
|
3
|
-
margin
|
|
3
|
+
margin: 20px;
|
|
4
4
|
border: 1px solid $ac-white-light;
|
|
5
5
|
border-radius: 4px;
|
|
6
6
|
display: flex;
|
|
@@ -109,10 +109,13 @@
|
|
|
109
109
|
|
|
110
110
|
// new code preview
|
|
111
111
|
.ac-components {
|
|
112
|
+
margin: 20px;
|
|
112
113
|
.single-component {
|
|
113
|
-
box-shadow: $ac-shadow-1;
|
|
114
|
+
// box-shadow: $ac-shadow-1;
|
|
115
|
+
border: 1px solid $ac-white-light;
|
|
114
116
|
border-radius: 4px;
|
|
115
117
|
margin-bottom: 25px;
|
|
118
|
+
overflow: hidden;
|
|
116
119
|
|
|
117
120
|
.component-header {
|
|
118
121
|
display: flex;
|
package/main.scss
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
@import "~assets/design-system/base/utilities/customize-bulma";
|
|
1
3
|
// Third party CSS
|
|
2
4
|
@import "~bulma";
|
|
3
5
|
@import "~bulma-checkradio";
|
|
@@ -7,63 +9,10 @@
|
|
|
7
9
|
@import "vue-multiselect/dist/vue-multiselect.min.css";
|
|
8
10
|
|
|
9
11
|
// BASE
|
|
10
|
-
@import "~assets/design-system/base/utilities/
|
|
11
|
-
@import "~assets/design-system/base/utilities/dark-theme";
|
|
12
|
-
@import "~assets/design-system/base/utilities/derived-variables";
|
|
13
|
-
@import "~assets/design-system/base/utilities/typography";
|
|
14
|
-
@import "~assets/design-system/base/utilities/default";
|
|
15
|
-
@import "~assets/design-system/base/utilities/mixin";
|
|
12
|
+
@import "~assets/design-system/base/utilities/all";
|
|
16
13
|
|
|
17
14
|
// LAYOUTS
|
|
18
|
-
@import "~assets/design-system/layouts/
|
|
15
|
+
@import "~assets/design-system/layouts/all";
|
|
19
16
|
|
|
20
17
|
// COMPONENTS
|
|
21
|
-
@import "~assets/design-system/components/
|
|
22
|
-
@import "~assets/design-system/components/ac-select-box";
|
|
23
|
-
@import "~assets/design-system/components/ac-multi-select";
|
|
24
|
-
@import "~assets/design-system/components/ac-code-highlight";
|
|
25
|
-
@import "~assets/design-system/components/navbar";
|
|
26
|
-
@import "~assets/design-system/components/breadcumb";
|
|
27
|
-
@import "~assets/design-system/components/card-body-wrapper";
|
|
28
|
-
@import "~assets/design-system/components/ac-options";
|
|
29
|
-
@import "~assets/design-system/components/left-sidebar-menu";
|
|
30
|
-
@import "~assets/design-system/components/dashboard-header";
|
|
31
|
-
@import "~assets/design-system/components/widget-menu";
|
|
32
|
-
@import "~assets/design-system/components/buttons";
|
|
33
|
-
@import "~assets/design-system/components/ac-input";
|
|
34
|
-
@import "~assets/design-system/components/ac-content-layout";
|
|
35
|
-
@import "~assets/design-system/components/ac-table";
|
|
36
|
-
@import "~assets/design-system/components/progress-bar";
|
|
37
|
-
@import "~assets/design-system/components/go-to-top";
|
|
38
|
-
@import "~assets/design-system/components/image-upload";
|
|
39
|
-
@import "~assets/design-system/components/ac-modal";
|
|
40
|
-
@import "~assets/design-system/components/ac-drag";
|
|
41
|
-
@import "~assets/design-system/components/ac-tabs";
|
|
42
|
-
@import "~assets/design-system/components/payment-card";
|
|
43
|
-
@import "~assets/design-system/components/ac-accordion";
|
|
44
|
-
@import "~assets/design-system/components/ac-card";
|
|
45
|
-
@import "~assets/design-system/components/add-card";
|
|
46
|
-
@import "~assets/design-system/components/subscription-card";
|
|
47
|
-
@import "~assets/design-system/components/ac-calendar";
|
|
48
|
-
@import "~assets/design-system/components/ac-tags";
|
|
49
|
-
@import "~assets/design-system/components/nested-list";
|
|
50
|
-
@import "~assets/design-system/components/overview-info";
|
|
51
|
-
@import "~assets/design-system/components/pricing-table";
|
|
52
|
-
@import "~assets/design-system/components/table-of-content";
|
|
53
|
-
@import "~assets/design-system/components/direct-deploy";
|
|
54
|
-
@import "~assets/design-system/components/preview-modal";
|
|
55
|
-
@import "~assets/design-system/components/wizard";
|
|
56
|
-
@import "~assets/design-system/components/preloader";
|
|
57
|
-
@import "~assets/design-system/components/pagination";
|
|
58
|
-
@import "~assets/design-system/components/graph";
|
|
59
|
-
@import "~assets/design-system/components/ui-builder/ui-builder";
|
|
60
|
-
@import "~assets/design-system/components/ac-toaster/ac-toasted";
|
|
61
|
-
@import "~assets/design-system/components/bbum/post";
|
|
62
|
-
@import "~assets/design-system/components/bbum/single-post-preview";
|
|
63
|
-
@import "~assets/design-system/components/bbum/user-profile";
|
|
64
|
-
@import "~assets/design-system/components/bbum/sign-up-notification";
|
|
65
|
-
@import "~assets/design-system/components/bbum/activities-header";
|
|
66
|
-
@import "~assets/design-system/components/bbum/card-team";
|
|
67
|
-
@import "~assets/design-system/components/bbum/information-center";
|
|
68
|
-
@import "~assets/design-system/components/bbum/left-sidebar";
|
|
69
|
-
@import "~assets/design-system/components/bbum/mobile-desktop";
|
|
18
|
+
@import "~assets/design-system/components/all";
|
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appscode/design-system",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0-alpha.10",
|
|
4
4
|
"description": "A design system for Appscode websites and dashboards made using Bulma",
|
|
5
5
|
"main": "main.scss",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@appscode/design-system-images": "0.0.13"
|
|
10
|
+
"@appscode/design-system-images": "^0.0.13",
|
|
11
|
+
"crypto-js": "^4.1.1",
|
|
12
|
+
"fast-json-stable-stringify": "^2.1.0"
|
|
11
13
|
},
|
|
12
14
|
"repository": {
|
|
13
15
|
"type": "git",
|