@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
|
@@ -12,20 +12,21 @@
|
|
|
12
12
|
|
|
13
13
|
/* Handle */
|
|
14
14
|
&::-webkit-scrollbar-thumb {
|
|
15
|
-
background:
|
|
15
|
+
background-color: $ac-white-light;
|
|
16
16
|
border-radius: 10px;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
/* Handle on hover */
|
|
20
20
|
&::-webkit-scrollbar-thumb:hover {
|
|
21
|
-
background:
|
|
21
|
+
background-color: $ac-white-light;
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
// INFO TABLE START
|
|
27
27
|
.table.ac-info-table {
|
|
28
|
-
|
|
28
|
+
background-color: transparent;
|
|
29
|
+
|
|
29
30
|
&.is-fullwidth {
|
|
30
31
|
tbody {
|
|
31
32
|
tr {
|
|
@@ -49,13 +50,12 @@
|
|
|
49
50
|
td {
|
|
50
51
|
border: none;
|
|
51
52
|
font-size: $font-size-small;
|
|
52
|
-
color: $ac-
|
|
53
|
+
color: $ac-color-value;
|
|
53
54
|
font-weight: 400;
|
|
54
55
|
padding: 3px 0px;
|
|
55
56
|
min-width: 230px;
|
|
56
57
|
|
|
57
58
|
&:first-child {
|
|
58
|
-
color: $ac-black;
|
|
59
59
|
font-weight: 400;
|
|
60
60
|
padding-right: 10px;
|
|
61
61
|
color: $ac-color-heading;
|
|
@@ -86,6 +86,43 @@
|
|
|
86
86
|
color: $ac-color-heading;
|
|
87
87
|
border: none;
|
|
88
88
|
font-weight: 500;
|
|
89
|
+
|
|
90
|
+
&.sorting {
|
|
91
|
+
cursor: pointer;
|
|
92
|
+
position: relative;
|
|
93
|
+
|
|
94
|
+
&.sorting-asc {
|
|
95
|
+
&::before {
|
|
96
|
+
color: $ac-color-heading;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
&.sorting-desc {
|
|
101
|
+
&::after {
|
|
102
|
+
color: $ac-color-heading;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
&:after,
|
|
107
|
+
&::before {
|
|
108
|
+
position: absolute;
|
|
109
|
+
color: #808998;
|
|
110
|
+
top: 0.4em;
|
|
111
|
+
font-size: 13px;
|
|
112
|
+
font-weight: 1000;
|
|
113
|
+
display: block;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
&:before {
|
|
117
|
+
right: 1em;
|
|
118
|
+
content: "\2191";
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
&:after {
|
|
122
|
+
right: 0.5em;
|
|
123
|
+
content: "\2193";
|
|
124
|
+
}
|
|
125
|
+
}
|
|
89
126
|
}
|
|
90
127
|
}
|
|
91
128
|
}
|
|
@@ -96,12 +133,15 @@
|
|
|
96
133
|
box-shadow: inset 0 0 0 1px $ac-primary;
|
|
97
134
|
border-radius: 4px;
|
|
98
135
|
border-bottom: none;
|
|
99
|
-
color:
|
|
136
|
+
color: $ac-black;
|
|
100
137
|
}
|
|
101
138
|
|
|
102
139
|
tr {
|
|
103
|
-
|
|
104
|
-
|
|
140
|
+
&.is-link {
|
|
141
|
+
cursor: pointer;
|
|
142
|
+
}
|
|
143
|
+
border-bottom: 1px solid var(--ac-white-light);
|
|
144
|
+
|
|
105
145
|
td {
|
|
106
146
|
font-size: $font-size-small;
|
|
107
147
|
padding: 5px 20px;
|
|
@@ -120,12 +160,14 @@
|
|
|
120
160
|
color: $ac-primary;
|
|
121
161
|
font-weight: 500;
|
|
122
162
|
transition: 0.3s ease-in-out;
|
|
163
|
+
|
|
123
164
|
&:hover {
|
|
124
165
|
color: $ac-color-heading;
|
|
125
166
|
}
|
|
126
167
|
}
|
|
127
168
|
}
|
|
128
169
|
}
|
|
170
|
+
|
|
129
171
|
&.is-error {
|
|
130
172
|
color: $ac-danger;
|
|
131
173
|
}
|
|
@@ -137,12 +179,12 @@
|
|
|
137
179
|
display: inline-flex;
|
|
138
180
|
|
|
139
181
|
&.is-danger {
|
|
140
|
-
background: $ac-danger;
|
|
182
|
+
background-color: $ac-danger;
|
|
141
183
|
}
|
|
142
184
|
|
|
143
185
|
i.fa {
|
|
144
186
|
position: absolute;
|
|
145
|
-
background: $ac-primary;
|
|
187
|
+
background-color: $ac-primary;
|
|
146
188
|
color: $ac-white;
|
|
147
189
|
font-size: $font-size-tiny;
|
|
148
190
|
width: 15px;
|
|
@@ -166,14 +208,24 @@
|
|
|
166
208
|
}
|
|
167
209
|
}
|
|
168
210
|
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
211
|
+
.collapsible-row {
|
|
212
|
+
max-height: 0;
|
|
213
|
+
overflow-y: hidden;
|
|
214
|
+
|
|
215
|
+
&.is-active {
|
|
216
|
+
max-height: 60vh;
|
|
217
|
+
overflow-y: overlay;
|
|
218
|
+
animation: expand 0.5s ease-in-out;
|
|
219
|
+
}
|
|
172
220
|
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
221
|
+
&.is-closed {
|
|
222
|
+
max-height: 0;
|
|
223
|
+
overflow-y: hidden;
|
|
224
|
+
animation: collapse 0.5s ease-in-out;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
176
227
|
}
|
|
228
|
+
|
|
177
229
|
.options-items {
|
|
178
230
|
a:hover {
|
|
179
231
|
color: $ac-white;
|
|
@@ -187,7 +239,7 @@
|
|
|
187
239
|
box-shadow: inset 0 0 0 1px $ac-primary;
|
|
188
240
|
border-radius: 4px;
|
|
189
241
|
border-bottom: none;
|
|
190
|
-
color:
|
|
242
|
+
color: $ac-black;
|
|
191
243
|
}
|
|
192
244
|
|
|
193
245
|
&.is-hoverless {
|
|
@@ -200,36 +252,63 @@
|
|
|
200
252
|
}
|
|
201
253
|
}
|
|
202
254
|
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
255
|
+
.increase-width {
|
|
256
|
+
position: relative;
|
|
257
|
+
visibility: hidden;
|
|
258
|
+
width: 36px;
|
|
259
|
+
|
|
260
|
+
.increase-innner {
|
|
261
|
+
border-bottom: 1px solid var(--ac-white-light);
|
|
262
|
+
border-top: 1px solid var(--ac-white-light);
|
|
263
|
+
bottom: -1px;
|
|
264
|
+
left: 0;
|
|
265
|
+
position: absolute;
|
|
266
|
+
right: -451px;
|
|
267
|
+
top: -1px;
|
|
268
|
+
visibility: visible;
|
|
269
|
+
background-color: $ac-white-lighter;
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
td {
|
|
274
|
+
&.increase-width {
|
|
275
|
+
.increase-innner {
|
|
276
|
+
background-color: transparent;
|
|
208
277
|
}
|
|
209
278
|
}
|
|
279
|
+
}
|
|
210
280
|
|
|
211
|
-
|
|
281
|
+
&.ac-label-texted {
|
|
282
|
+
thead {
|
|
212
283
|
tr {
|
|
213
|
-
border-bottom: 1px solid $ac-white-light;
|
|
214
|
-
|
|
215
284
|
th {
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
285
|
+
border-top: 1px solid $ac-white-light;
|
|
286
|
+
border-bottom: 1px solid $ac-white-light;
|
|
287
|
+
border-right: 1px solid $ac-white-light;
|
|
219
288
|
|
|
220
|
-
&:
|
|
221
|
-
border-
|
|
289
|
+
&:first-child {
|
|
290
|
+
border-left: 1px solid $ac-white-light;
|
|
222
291
|
}
|
|
223
292
|
}
|
|
293
|
+
}
|
|
294
|
+
}
|
|
224
295
|
|
|
296
|
+
tbody {
|
|
297
|
+
tr {
|
|
225
298
|
&:hover {
|
|
226
299
|
box-shadow: none;
|
|
227
300
|
}
|
|
228
301
|
|
|
229
302
|
td {
|
|
230
303
|
font-size: $font-size-small;
|
|
231
|
-
color: $ac-
|
|
232
|
-
background-color:
|
|
304
|
+
color: $ac-color-value;
|
|
305
|
+
background-color: transparent;
|
|
306
|
+
border-bottom: 1px solid $ac-white-light;
|
|
307
|
+
border-right: 1px solid $ac-white-light;
|
|
308
|
+
|
|
309
|
+
&:first-child {
|
|
310
|
+
border-left: 1px solid $ac-white-light;
|
|
311
|
+
}
|
|
233
312
|
|
|
234
313
|
&:first-child {
|
|
235
314
|
color: $ac-color-heading;
|
|
@@ -254,7 +333,7 @@
|
|
|
254
333
|
&::after {
|
|
255
334
|
top: 6px;
|
|
256
335
|
left: 6px;
|
|
257
|
-
border-color:
|
|
336
|
+
border-color: $ac-gray-lightest;
|
|
258
337
|
width: 0.3rem;
|
|
259
338
|
height: 0.5rem;
|
|
260
339
|
}
|
|
@@ -266,7 +345,7 @@
|
|
|
266
345
|
}
|
|
267
346
|
|
|
268
347
|
&:checked + label::after {
|
|
269
|
-
border-color:
|
|
348
|
+
border-color: $ac-white-lighter;
|
|
270
349
|
}
|
|
271
350
|
}
|
|
272
351
|
}
|
|
@@ -291,8 +370,7 @@
|
|
|
291
370
|
|
|
292
371
|
tbody {
|
|
293
372
|
tr {
|
|
294
|
-
background-color:
|
|
295
|
-
transition: 0.3s ease-in-out;
|
|
373
|
+
background-color: transparent;
|
|
296
374
|
}
|
|
297
375
|
}
|
|
298
376
|
}
|
|
@@ -317,7 +395,7 @@
|
|
|
317
395
|
|
|
318
396
|
&.is-dark {
|
|
319
397
|
thead {
|
|
320
|
-
background-color: $ac-
|
|
398
|
+
background-color: $ac-color-heading;
|
|
321
399
|
|
|
322
400
|
tr {
|
|
323
401
|
th {
|
|
@@ -333,11 +411,11 @@
|
|
|
333
411
|
}
|
|
334
412
|
|
|
335
413
|
&:nth-child(odd) {
|
|
336
|
-
background-color:
|
|
414
|
+
background-color: $ac-color-value;
|
|
337
415
|
}
|
|
338
416
|
|
|
339
417
|
&:nth-child(even) {
|
|
340
|
-
background-color: $ac-
|
|
418
|
+
background-color: $ac-color-heading;
|
|
341
419
|
}
|
|
342
420
|
|
|
343
421
|
&:hover {
|
|
@@ -351,10 +429,53 @@
|
|
|
351
429
|
}
|
|
352
430
|
}
|
|
353
431
|
}
|
|
432
|
+
|
|
354
433
|
.table.ac-table tbody tr:hover td a:not(.tag a) {
|
|
355
434
|
text-decoration: underline;
|
|
356
435
|
color: $ac-primary;
|
|
357
436
|
}
|
|
437
|
+
|
|
438
|
+
// table inner shadow
|
|
439
|
+
.table-inner-shadow {
|
|
440
|
+
border-radius: 0px;
|
|
441
|
+
background: $ac-white-lighter;
|
|
442
|
+
box-shadow: inset 5px 5px 10px #e3e6e9, inset -5px -5px 10px #ffffff;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
@keyframes expand {
|
|
446
|
+
from {
|
|
447
|
+
max-height: 0;
|
|
448
|
+
overflow-y: hidden;
|
|
449
|
+
}
|
|
450
|
+
1% {
|
|
451
|
+
overflow-y: hidden;
|
|
452
|
+
}
|
|
453
|
+
99% {
|
|
454
|
+
overflow-y: hidden;
|
|
455
|
+
}
|
|
456
|
+
to {
|
|
457
|
+
max-height: 60vh;
|
|
458
|
+
overflow-y: overlay;
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
@keyframes collapse {
|
|
463
|
+
from {
|
|
464
|
+
max-height: 60vh;
|
|
465
|
+
overflow-y: overlay;
|
|
466
|
+
}
|
|
467
|
+
1% {
|
|
468
|
+
overflow-y: hidden;
|
|
469
|
+
}
|
|
470
|
+
99% {
|
|
471
|
+
overflow-y: hidden;
|
|
472
|
+
}
|
|
473
|
+
to {
|
|
474
|
+
max-height: 0;
|
|
475
|
+
overflow-y: hidden;
|
|
476
|
+
}
|
|
477
|
+
}
|
|
478
|
+
|
|
358
479
|
// GENERAL TABLE END
|
|
359
480
|
|
|
360
481
|
/****************************************
|
package/components/_ac-tabs.scss
CHANGED
|
@@ -1,35 +1,45 @@
|
|
|
1
1
|
.tabs {
|
|
2
2
|
&.ac-tabs {
|
|
3
|
-
|
|
4
|
-
ul {
|
|
3
|
+
ul {
|
|
5
4
|
border-bottom-color: $ac-white-light;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
&.is-line {
|
|
8
|
+
ul {
|
|
9
|
+
// border-bottom-color: $ac-white-light;
|
|
10
|
+
|
|
11
|
+
li {
|
|
12
|
+
&.is-active {
|
|
13
|
+
a {
|
|
14
|
+
font-weight: 500;
|
|
15
|
+
border-bottom-color: $ac-primary;
|
|
16
|
+
border-bottom: 2px solid $ac-primary !important;
|
|
17
|
+
border-width: 2px;
|
|
18
|
+
}
|
|
13
19
|
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
|
|
21
|
+
a {
|
|
22
|
+
text-transform: uppercase;
|
|
23
|
+
font-weight: 400;
|
|
24
|
+
color: $ac-color-heading;
|
|
25
|
+
font-size: $font-size-small;
|
|
26
|
+
border-bottom: none;
|
|
27
|
+
padding: 6px 20px;
|
|
28
|
+
|
|
29
|
+
&:hover {
|
|
30
|
+
border-bottom-color: $ac-primary;
|
|
31
|
+
}
|
|
23
32
|
}
|
|
24
33
|
}
|
|
25
34
|
}
|
|
26
35
|
}
|
|
27
|
-
|
|
36
|
+
|
|
28
37
|
&.is-boxed {
|
|
29
38
|
font-size: 14px;
|
|
30
39
|
|
|
31
40
|
a {
|
|
32
41
|
padding: 8px 20px;
|
|
42
|
+
color: $ac-color-value;
|
|
33
43
|
|
|
34
44
|
&:hover {
|
|
35
45
|
border-bottom-color: transparent;
|
|
@@ -84,6 +94,7 @@
|
|
|
84
94
|
border-bottom: none;
|
|
85
95
|
margin-bottom: -2px;
|
|
86
96
|
font-size: $font-size-small;
|
|
97
|
+
color: $ac-color-value;
|
|
87
98
|
}
|
|
88
99
|
}
|
|
89
100
|
}
|
|
@@ -95,7 +106,7 @@
|
|
|
95
106
|
li {
|
|
96
107
|
&.is-active {
|
|
97
108
|
a {
|
|
98
|
-
background-color:
|
|
109
|
+
background-color: $ac-white-light;
|
|
99
110
|
}
|
|
100
111
|
}
|
|
101
112
|
|
|
@@ -110,7 +121,7 @@
|
|
|
110
121
|
|
|
111
122
|
&.is-toggle {
|
|
112
123
|
ul {
|
|
113
|
-
border: 1px solid $ac-
|
|
124
|
+
border: 1px solid $ac-label-text;
|
|
114
125
|
border-radius: 4px;
|
|
115
126
|
padding: 4px;
|
|
116
127
|
flex-grow: inherit;
|
|
@@ -134,6 +145,7 @@
|
|
|
134
145
|
padding: 8px 25px;
|
|
135
146
|
line-height: 1;
|
|
136
147
|
border-radius: 4px;
|
|
148
|
+
|
|
137
149
|
&:hover {
|
|
138
150
|
background-color: inherit;
|
|
139
151
|
}
|
|
@@ -141,6 +153,19 @@
|
|
|
141
153
|
}
|
|
142
154
|
}
|
|
143
155
|
}
|
|
156
|
+
|
|
157
|
+
&.kubedb-ui-tabs {
|
|
158
|
+
ul {
|
|
159
|
+
border-bottom: none;
|
|
160
|
+
li {
|
|
161
|
+
&.is-active {
|
|
162
|
+
a {
|
|
163
|
+
border-bottom: 3px solid $ac-primary !important;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
}
|
|
144
169
|
}
|
|
145
170
|
}
|
|
146
171
|
|
|
@@ -170,7 +195,7 @@
|
|
|
170
195
|
|
|
171
196
|
&.is-borderless {
|
|
172
197
|
border: 1px solid transparent;
|
|
173
|
-
background-color:
|
|
198
|
+
background-color: $ac-white-light;
|
|
174
199
|
border-radius: 4px 4px 4px 4px;
|
|
175
200
|
}
|
|
176
201
|
}
|
|
@@ -187,7 +212,7 @@
|
|
|
187
212
|
li {
|
|
188
213
|
&.is-active {
|
|
189
214
|
a {
|
|
190
|
-
background-color:
|
|
215
|
+
background-color: $ac-white-lighter;
|
|
191
216
|
color: $ac-primary;
|
|
192
217
|
}
|
|
193
218
|
}
|
|
@@ -197,15 +222,53 @@
|
|
|
197
222
|
}
|
|
198
223
|
}
|
|
199
224
|
}
|
|
225
|
+
|
|
200
226
|
.tabs li.is-active a {
|
|
201
227
|
color: $ac-primary;
|
|
202
228
|
}
|
|
229
|
+
|
|
203
230
|
.no-data-available {
|
|
204
231
|
img {
|
|
205
232
|
width: 250px;
|
|
206
233
|
}
|
|
207
234
|
}
|
|
208
235
|
|
|
236
|
+
.ac-system-body.bb-user-management {
|
|
237
|
+
.tabs.ac-tabs.is-line {
|
|
238
|
+
margin-left: -20px;
|
|
239
|
+
position: sticky;
|
|
240
|
+
top: 50px;
|
|
241
|
+
z-index: 99;
|
|
242
|
+
background: $ac-white;
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
// dark theme
|
|
247
|
+
.is-dark-theme {
|
|
248
|
+
.tabs {
|
|
249
|
+
&.is-toggle {
|
|
250
|
+
a {
|
|
251
|
+
&:hover {
|
|
252
|
+
background-color: $dark-bg;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
a {
|
|
257
|
+
border-bottom: 1px solid $ac-white-lighter;
|
|
258
|
+
color: $ac-full-white;
|
|
259
|
+
}
|
|
260
|
+
&.ac-tabs.is-line {
|
|
261
|
+
ul {
|
|
262
|
+
li.is-active {
|
|
263
|
+
a {
|
|
264
|
+
color: $ac-color-text;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
|
|
209
272
|
/****************************************
|
|
210
273
|
Responsive Classes
|
|
211
274
|
*****************************************/
|
package/components/_ac-tags.scss
CHANGED
|
@@ -1,15 +1,97 @@
|
|
|
1
|
+
.tag:not(body) {
|
|
2
|
+
background-color: $ac-white-light;
|
|
3
|
+
font-size: 10px;
|
|
4
|
+
height: 18px;
|
|
5
|
+
font-weight: 500;
|
|
6
|
+
line-height: 1;
|
|
7
|
+
letter-spacing: 0px;
|
|
8
|
+
color: $ac-color-heading;
|
|
9
|
+
&.is-outlined {
|
|
10
|
+
border: 1px solid;
|
|
11
|
+
background-color: transparent;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
a {
|
|
15
|
+
&:hover {
|
|
16
|
+
color: $ac-color-text;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
&.is-available {
|
|
21
|
+
background-color: #27b064;
|
|
22
|
+
color: $ac-white;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&.is-success {
|
|
26
|
+
background-color: $ac-green;
|
|
27
|
+
color: $ac-white;
|
|
28
|
+
|
|
29
|
+
&.is-light {
|
|
30
|
+
background-color: rgba(39, 176, 100, 0.2);
|
|
31
|
+
color: $ac-green;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&.is-primary {
|
|
36
|
+
background-color: $ac-primary;
|
|
37
|
+
color: $ac-white;
|
|
38
|
+
|
|
39
|
+
&.is-light {
|
|
40
|
+
background-color: rgba(25, 113, 189, 0.2);
|
|
41
|
+
color: $ac-primary;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&.is-gray {
|
|
46
|
+
background-color: #e5e9f2;
|
|
47
|
+
color: $ac-gray-darker;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&.is-warning {
|
|
51
|
+
background-color: $ac-warning;
|
|
52
|
+
color: $ac-white;
|
|
53
|
+
|
|
54
|
+
&.is-light {
|
|
55
|
+
background-color: #ffd58b42;
|
|
56
|
+
color: #c88b21;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
&.is-danger {
|
|
61
|
+
background-color: $ac-red;
|
|
62
|
+
color: $ac-white !important;
|
|
63
|
+
|
|
64
|
+
&.is-light {
|
|
65
|
+
background-color: rgba(234, 61, 47, 0.2);
|
|
66
|
+
color: $ac-red !important;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.tags {
|
|
72
|
+
.icon {
|
|
73
|
+
margin-bottom: 0.5rem;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.tag {
|
|
77
|
+
a {
|
|
78
|
+
font-weight: 500;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
1
83
|
.has-tags {
|
|
2
84
|
display: flex;
|
|
3
85
|
align-items: center;
|
|
4
86
|
|
|
5
87
|
li {
|
|
6
|
-
background: $ac-
|
|
88
|
+
background-color: $ac-gray-lightest;
|
|
7
89
|
list-style: none;
|
|
8
90
|
padding: 2px 10px;
|
|
9
91
|
border-radius: 4px;
|
|
10
92
|
font-size: 12px;
|
|
11
93
|
line-height: 1;
|
|
12
|
-
border: 1px solid
|
|
94
|
+
border: 1px solid $ac-color-value;
|
|
13
95
|
margin-right: 5px;
|
|
14
96
|
|
|
15
97
|
&:last-child {
|
|
@@ -27,5 +109,8 @@
|
|
|
27
109
|
&.is-danger {
|
|
28
110
|
@include ac-tags($ac-danger);
|
|
29
111
|
}
|
|
112
|
+
&.is-dark {
|
|
113
|
+
@include ac-tags($ac-gray-dark);
|
|
114
|
+
}
|
|
30
115
|
}
|
|
31
116
|
}
|