@appscode/design-system 1.1.0-beta.5 → 1.1.0-beta.51
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 +25 -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-select-box.scss +5 -5
- package/components/_ac-table.scss +7 -7
- package/components/_ac-tabs.scss +29 -26
- package/components/_all.scss +7 -5
- 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/{_ac-input.scss → _input.scss} +53 -7
- package/components/_left-sidebar-menu.scss +9 -13
- package/components/_monaco-editor.scss +2 -2
- package/components/_multi-select.scss +589 -0
- 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} +62 -73
- package/components/_widget-menu.scss +7 -12
- package/components/_wizard.scss +13 -286
- 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 +194 -10
- package/components/ui-builder/_vue-open-api.scss +58 -13
- package/icons/close-icon.svg +3 -0
- package/layouts/_code-preview.scss +6 -7
- package/package.json +1 -1
- package/vue-components/types/importFlow.ts +16 -0
- package/vue-components/types/notification.ts +3 -3
- 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 +66 -4
- package/vue-components/v3/button/Button.vue +33 -11
- package/vue-components/v3/cards/Cluster.vue +7 -3
- package/vue-components/v3/cards/FeatureCard.vue +1 -1
- package/vue-components/v3/cards/FeatureCards.vue +1 -1
- package/vue-components/v3/cards/InfoCard.vue +1 -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/FooterArea.vue +6 -0
- package/vue-components/v3/footer/Info.vue +10 -8
- package/vue-components/v3/footer/Status.vue +24 -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 +503 -1
- package/vue-components/v3/header/Header.vue +2 -2
- package/vue-components/v3/loaders/InfoCardLoader.vue +18 -60
- package/vue-components/v3/loaders/SingleInfoCardLoader.vue +24 -0
- package/vue-components/v3/modal/Modal.vue +6 -11
- 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/notification/Notification.vue +2 -2
- 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 +1 -761
- 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/vue-components/v3/tag/Tag.vue +1 -0
- package/components/_ac-card.scss +0 -0
- package/components/_ac-multi-select.scss +0 -780
- package/vue-components/types/longRunningTasks.ts +0 -20
- package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +0 -94
- package/vue-components/v3/modals/LongRunningTasksModal.vue +0 -402
- package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +0 -151
- /package/components/{_ac-accordion.scss → _accordion.scss} +0 -0
- /package/components/{_ac-report.scss → _report.scss} +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
interface Props {
|
|
3
|
-
type
|
|
3
|
+
type?: string;
|
|
4
|
+
isCollapsible?: boolean;
|
|
4
5
|
}
|
|
5
6
|
|
|
6
7
|
withDefaults(defineProps<Props>(), {
|
|
@@ -49,7 +50,7 @@ withDefaults(defineProps<Props>(), {
|
|
|
49
50
|
height: calc(100vh - 80px);
|
|
50
51
|
overflow-y: auto;
|
|
51
52
|
padding-top: 4px;
|
|
52
|
-
scrollbar-color: $white-100
|
|
53
|
+
scrollbar-color: $white-100 transparent;
|
|
53
54
|
|
|
54
55
|
/* width */
|
|
55
56
|
&::-webkit-scrollbar {
|
|
@@ -196,34 +197,6 @@ withDefaults(defineProps<Props>(), {
|
|
|
196
197
|
}
|
|
197
198
|
}
|
|
198
199
|
}
|
|
199
|
-
|
|
200
|
-
// .ac-options.is-right {
|
|
201
|
-
// .option-dots {
|
|
202
|
-
// transition: 0.3s;
|
|
203
|
-
|
|
204
|
-
// i.fa {
|
|
205
|
-
// &.fa-angle-left {
|
|
206
|
-
// font-size: 18px;
|
|
207
|
-
// }
|
|
208
|
-
// }
|
|
209
|
-
|
|
210
|
-
// &:active {
|
|
211
|
-
// i.fa {
|
|
212
|
-
// background-color: $white-100-lighter;
|
|
213
|
-
// width: 25px;
|
|
214
|
-
// height: 25px;
|
|
215
|
-
// text-align: center;
|
|
216
|
-
// line-height: 25px;
|
|
217
|
-
// border-radius: 50%;
|
|
218
|
-
// }
|
|
219
|
-
// }
|
|
220
|
-
|
|
221
|
-
// &:hover {
|
|
222
|
-
// color: $primary !important;
|
|
223
|
-
// transform: scale(1.2);
|
|
224
|
-
// }
|
|
225
|
-
// }
|
|
226
|
-
// }
|
|
227
200
|
}
|
|
228
201
|
|
|
229
202
|
.sidebar-collapsed {
|
|
@@ -73,8 +73,11 @@ const AccentColorPicker = defineAsyncComponent(
|
|
|
73
73
|
.accent-color-picker {
|
|
74
74
|
display: none;
|
|
75
75
|
}
|
|
76
|
-
.sidebar-footer
|
|
77
|
-
|
|
76
|
+
.sidebar-footer {
|
|
77
|
+
.back-button {
|
|
78
|
+
width: 100%;
|
|
79
|
+
transform: rotate(180deg);
|
|
80
|
+
}
|
|
78
81
|
}
|
|
79
82
|
}
|
|
80
83
|
</style>
|
|
@@ -1,65 +1,69 @@
|
|
|
1
1
|
<script lang="ts" setup>
|
|
2
2
|
import FeCheck from "~icons/fe/check";
|
|
3
|
+
import type { Step } from "../../types/importFlow";
|
|
4
|
+
|
|
5
|
+
interface Props {
|
|
6
|
+
steps?: Step[];
|
|
7
|
+
activeStepIdentifier?: number;
|
|
8
|
+
activeSubStepIdentifier?: number;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
withDefaults(defineProps<Props>(), {
|
|
12
|
+
steps: () => [],
|
|
13
|
+
activeStepIdentifier: 1,
|
|
14
|
+
activeSubStepIdentifier: 1,
|
|
15
|
+
});
|
|
3
16
|
</script>
|
|
4
17
|
|
|
5
18
|
<template>
|
|
6
|
-
|
|
7
|
-
|
|
19
|
+
<li
|
|
20
|
+
v-for="step in steps"
|
|
21
|
+
:key="step.identifier"
|
|
22
|
+
:class="{
|
|
23
|
+
'is-hidden': !step.isVisible,
|
|
24
|
+
}"
|
|
25
|
+
>
|
|
8
26
|
<strong
|
|
9
|
-
|
|
10
|
-
|
|
27
|
+
:class="{
|
|
28
|
+
'is-active': step.identifier <= activeStepIdentifier,
|
|
29
|
+
}"
|
|
11
30
|
>
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
>
|
|
18
|
-
|
|
19
|
-
<
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
<li>
|
|
26
|
-
<strong
|
|
27
|
-
><span class="step-count"> <FeCheck /> </span>
|
|
28
|
-
<span class="label-text">Select Cluster</span></strong
|
|
29
|
-
>
|
|
30
|
-
</li>
|
|
31
|
-
</ul>
|
|
32
|
-
</li>
|
|
33
|
-
<!-- steps 01-->
|
|
34
|
-
|
|
35
|
-
<!-- steps 02-->
|
|
36
|
-
<li>
|
|
37
|
-
<strong
|
|
38
|
-
><span class="step-count">2</span>
|
|
39
|
-
<span class="label-text">IMPORT</span></strong
|
|
31
|
+
<span
|
|
32
|
+
:class="{
|
|
33
|
+
'step-count': true,
|
|
34
|
+
'is-active': step.identifier <= activeStepIdentifier,
|
|
35
|
+
}"
|
|
36
|
+
>{{ step.identifier }}</span
|
|
37
|
+
>
|
|
38
|
+
<span class="label-text">{{ step.title }}</span>
|
|
39
|
+
</strong>
|
|
40
|
+
<ul
|
|
41
|
+
:class="{
|
|
42
|
+
'is-hidden': step.identifier !== activeStepIdentifier,
|
|
43
|
+
}"
|
|
40
44
|
>
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
<strong
|
|
50
|
-
|
|
51
|
-
<span
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
45
|
+
<li
|
|
46
|
+
v-for="substep in step.substeps"
|
|
47
|
+
:key="substep?.identifier"
|
|
48
|
+
:class="{
|
|
49
|
+
'is-hidden': !substep.isVisible,
|
|
50
|
+
'is-active': substep.identifier < activeSubStepIdentifier,
|
|
51
|
+
}"
|
|
52
|
+
>
|
|
53
|
+
<strong>
|
|
54
|
+
<span class="step-count"><FeCheck /></span>
|
|
55
|
+
<span
|
|
56
|
+
:class="{
|
|
57
|
+
'label-text': true,
|
|
58
|
+
'has-text-weight-semibold':
|
|
59
|
+
substep.identifier <= activeSubStepIdentifier,
|
|
60
|
+
}"
|
|
61
|
+
>{{ substep.title }}</span
|
|
62
|
+
>
|
|
63
|
+
</strong>
|
|
59
64
|
</li>
|
|
60
65
|
</ul>
|
|
61
66
|
</li>
|
|
62
|
-
<!-- steps 02-->
|
|
63
67
|
</template>
|
|
64
68
|
|
|
65
69
|
<style lang="scss" scoped>
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
a {
|
|
17
17
|
display: flex;
|
|
18
18
|
align-items: center;
|
|
19
|
-
color: $
|
|
19
|
+
color: $primary-10;
|
|
20
20
|
position: relative;
|
|
21
21
|
z-index: 1;
|
|
22
22
|
padding: 8px 16px;
|
|
@@ -59,8 +59,84 @@
|
|
|
59
59
|
opacity: 1;
|
|
60
60
|
visibility: visible;
|
|
61
61
|
}
|
|
62
|
+
&.is-danger {
|
|
63
|
+
color: $danger;
|
|
64
|
+
&:hover {
|
|
65
|
+
&::after {
|
|
66
|
+
background-color: $red-90;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
&:after {
|
|
70
|
+
opacity: 1;
|
|
71
|
+
visibility: visible;
|
|
72
|
+
background-color: $red-95;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
&.is-success {
|
|
76
|
+
color: $success;
|
|
77
|
+
&:hover {
|
|
78
|
+
&::after {
|
|
79
|
+
background-color: $green-90;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
&:after {
|
|
83
|
+
opacity: 1;
|
|
84
|
+
visibility: visible;
|
|
85
|
+
background-color: $green-95;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
&.is-warning {
|
|
89
|
+
color: $warning;
|
|
90
|
+
&:hover {
|
|
91
|
+
&::after {
|
|
92
|
+
background-color: $yellow-90;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
&:after {
|
|
96
|
+
opacity: 1;
|
|
97
|
+
visibility: visible;
|
|
98
|
+
background-color: $yellow-95;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
62
101
|
}
|
|
63
|
-
|
|
102
|
+
&.is-danger {
|
|
103
|
+
color: $danger;
|
|
104
|
+
&:hover {
|
|
105
|
+
&::after {
|
|
106
|
+
background-color: $red-90;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
&:after {
|
|
110
|
+
opacity: 1;
|
|
111
|
+
visibility: visible;
|
|
112
|
+
background-color: transparent;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
&.is-success {
|
|
116
|
+
color: $success;
|
|
117
|
+
&:hover {
|
|
118
|
+
&::after {
|
|
119
|
+
background-color: $green-90;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
&:after {
|
|
123
|
+
opacity: 1;
|
|
124
|
+
visibility: visible;
|
|
125
|
+
background-color: transparent;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
&.is-warning {
|
|
129
|
+
color: $warning;
|
|
130
|
+
&:hover {
|
|
131
|
+
&::after {
|
|
132
|
+
background-color: $yellow-90;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
&:after {
|
|
136
|
+
opacity: 1;
|
|
137
|
+
visibility: visible;
|
|
138
|
+
background-color: transparent;
|
|
139
|
+
}
|
|
64
140
|
}
|
|
65
141
|
}
|
|
66
142
|
&.is-open {
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
<script lang="ts" setup
|
|
1
|
+
<script lang="ts" setup>
|
|
2
|
+
interface Props {
|
|
3
|
+
isSidebarVisible: boolean;
|
|
4
|
+
}
|
|
5
|
+
withDefaults(defineProps<Props>(), {
|
|
6
|
+
isSidebarVisible: true,
|
|
7
|
+
});
|
|
8
|
+
</script>
|
|
2
9
|
|
|
3
10
|
<template>
|
|
4
11
|
<div class="sidebar-tabs-layout is-flex">
|
|
@@ -8,7 +15,7 @@
|
|
|
8
15
|
</div>
|
|
9
16
|
<!-- sidebar tabs -->
|
|
10
17
|
|
|
11
|
-
<div class="content-wrapper">
|
|
18
|
+
<div class="content-wrapper" :class="isSidebarVisible ? 'pl-220' : 'pl-0'">
|
|
12
19
|
<!-- sidebar content -->
|
|
13
20
|
<slot name="tabs-content" />
|
|
14
21
|
<!-- sidebar content -->
|
|
@@ -21,8 +28,10 @@
|
|
|
21
28
|
position: fixed;
|
|
22
29
|
background-color: $white-100;
|
|
23
30
|
}
|
|
24
|
-
.
|
|
31
|
+
.pl-220 {
|
|
25
32
|
padding-left: 220px;
|
|
33
|
+
}
|
|
34
|
+
.content-wrapper {
|
|
26
35
|
padding-bottom: 40px;
|
|
27
36
|
width: 100%;
|
|
28
37
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import { defineAsyncComponent, ref
|
|
2
|
+
import { computed, defineAsyncComponent, ref } from "vue";
|
|
3
3
|
|
|
4
4
|
interface Props {
|
|
5
5
|
isLoaderActive?: boolean;
|
|
@@ -67,8 +67,10 @@ const isFullTableLoaderActive = computed(() => {
|
|
|
67
67
|
:key="(tableHeader as string)"
|
|
68
68
|
>
|
|
69
69
|
<table-cell>
|
|
70
|
-
<
|
|
71
|
-
|
|
70
|
+
<span class="is-flex is-align-items-center">
|
|
71
|
+
<slot :name="`table-cell-icon-${idx}`" />
|
|
72
|
+
{{ tableHeader }}
|
|
73
|
+
</span>
|
|
72
74
|
</table-cell>
|
|
73
75
|
<table-cell v-if="isLoaderActive">
|
|
74
76
|
<cell-value :is-loader-active="true" />
|
|
@@ -89,7 +91,7 @@ const isFullTableLoaderActive = computed(() => {
|
|
|
89
91
|
// INFO TABLE START
|
|
90
92
|
.table.ac-info-table {
|
|
91
93
|
background-color: transparent;
|
|
92
|
-
border-top: 1px solid $primary-
|
|
94
|
+
border-top: 1px solid $primary-93;
|
|
93
95
|
|
|
94
96
|
&.is-fullwidth {
|
|
95
97
|
tbody {
|
|
@@ -272,7 +272,7 @@ onUpdated(() => {
|
|
|
272
272
|
margin-bottom: 0;
|
|
273
273
|
|
|
274
274
|
thead {
|
|
275
|
-
background-color: $
|
|
275
|
+
background-color: $primary-90;
|
|
276
276
|
font-size: 13px;
|
|
277
277
|
line-height: initial;
|
|
278
278
|
|
|
@@ -334,11 +334,11 @@ onUpdated(() => {
|
|
|
334
334
|
box-shadow: inset 0 0 0 1px $primary;
|
|
335
335
|
border-radius: 4px;
|
|
336
336
|
border-bottom: none;
|
|
337
|
-
color: $
|
|
337
|
+
color: $black-5;
|
|
338
338
|
}
|
|
339
339
|
|
|
340
340
|
tr {
|
|
341
|
-
border-bottom: 1px solid
|
|
341
|
+
border-bottom: 1px solid $primary-90;
|
|
342
342
|
&.is-link {
|
|
343
343
|
cursor: pointer;
|
|
344
344
|
}
|
|
@@ -348,10 +348,10 @@ onUpdated(() => {
|
|
|
348
348
|
box-shadow: inset 0 0 0 1.2px $primary;
|
|
349
349
|
border-radius: 4px;
|
|
350
350
|
border-bottom: none;
|
|
351
|
-
color: $
|
|
351
|
+
color: $black-5;
|
|
352
352
|
transition: 0.3s ease-in-out;
|
|
353
353
|
.tag {
|
|
354
|
-
background-color: $primary
|
|
354
|
+
background-color: $primary;
|
|
355
355
|
}
|
|
356
356
|
&:hover {
|
|
357
357
|
background-color: $primary-95 !important;
|
|
@@ -466,15 +466,15 @@ onUpdated(() => {
|
|
|
466
466
|
width: 36px;
|
|
467
467
|
|
|
468
468
|
.increase-innner {
|
|
469
|
-
border-bottom: 1px solid
|
|
470
|
-
border-top: 1px solid
|
|
469
|
+
border-bottom: 1px solid $primary-90;
|
|
470
|
+
border-top: 1px solid $primary-90;
|
|
471
471
|
bottom: -1px;
|
|
472
472
|
left: 0;
|
|
473
473
|
position: absolute;
|
|
474
474
|
right: -451px;
|
|
475
475
|
top: -1px;
|
|
476
476
|
visibility: visible;
|
|
477
|
-
background-color: $
|
|
477
|
+
background-color: $primary-90;
|
|
478
478
|
}
|
|
479
479
|
}
|
|
480
480
|
|
|
@@ -490,9 +490,9 @@ onUpdated(() => {
|
|
|
490
490
|
thead {
|
|
491
491
|
tr {
|
|
492
492
|
th {
|
|
493
|
-
border-top: 1px solid $primary-
|
|
494
|
-
border-bottom: 1px solid $primary-
|
|
495
|
-
border-right: 1px solid $primary-
|
|
493
|
+
border-top: 1px solid $primary-93;
|
|
494
|
+
border-bottom: 1px solid $primary-93;
|
|
495
|
+
border-right: 1px solid $primary-93;
|
|
496
496
|
background-color: $primary-97;
|
|
497
497
|
|
|
498
498
|
&:first-child {
|
|
@@ -515,8 +515,8 @@ onUpdated(() => {
|
|
|
515
515
|
font-size: 13px;
|
|
516
516
|
color: $primary-20;
|
|
517
517
|
background-color: transparent;
|
|
518
|
-
border-bottom: 1px solid $primary-
|
|
519
|
-
border-right: 1px solid $primary-
|
|
518
|
+
border-bottom: 1px solid $primary-93;
|
|
519
|
+
border-right: 1px solid $primary-93;
|
|
520
520
|
&:last-child {
|
|
521
521
|
border-right: 1px solid transparent;
|
|
522
522
|
}
|
|
@@ -536,7 +536,7 @@ onUpdated(() => {
|
|
|
536
536
|
.ac-single-checkbox {
|
|
537
537
|
.is-checkradio[type="checkbox"] {
|
|
538
538
|
&.ac-checkbox + label {
|
|
539
|
-
color: $
|
|
539
|
+
color: $primary-20;
|
|
540
540
|
|
|
541
541
|
&::before {
|
|
542
542
|
height: 16px;
|
|
@@ -559,7 +559,7 @@ onUpdated(() => {
|
|
|
559
559
|
}
|
|
560
560
|
|
|
561
561
|
&:checked + label::after {
|
|
562
|
-
border-color: $
|
|
562
|
+
border-color: $primary-90;
|
|
563
563
|
}
|
|
564
564
|
}
|
|
565
565
|
}
|
|
@@ -652,7 +652,7 @@ onUpdated(() => {
|
|
|
652
652
|
// table inner shadow
|
|
653
653
|
.table-inner-shadow {
|
|
654
654
|
border-radius: 0px;
|
|
655
|
-
background: $
|
|
655
|
+
background: $primary-90;
|
|
656
656
|
box-shadow: inset 5px 5px 10px #e3e6e9, inset -5px -5px 10px #ffffff;
|
|
657
657
|
}
|
|
658
658
|
|
|
@@ -77,7 +77,7 @@ const toggleCollapse = () => {
|
|
|
77
77
|
>
|
|
78
78
|
<table-cell v-if="collapsible">
|
|
79
79
|
<collapsible-button
|
|
80
|
-
modifier-classes="is-square is-light height-20 width-20 is-rounded is-size-7"
|
|
80
|
+
modifier-classes="is-square is-light height-20 width-20 is-rounded is-size-7 p-0"
|
|
81
81
|
:icon-class="isCollapsed ? 'chevron-right' : 'chevron-down'"
|
|
82
82
|
@click.stop="toggleCollapse"
|
|
83
83
|
/>
|
|
@@ -102,7 +102,7 @@ const toggleCollapse = () => {
|
|
|
102
102
|
>
|
|
103
103
|
<table-cell v-if="collapsible">
|
|
104
104
|
<collapsible-button
|
|
105
|
-
modifier-classes="is-square is-light height-20 width-20 is-rounded is-size-7"
|
|
105
|
+
modifier-classes="is-square is-light height-20 width-20 is-rounded is-size-7 p-0"
|
|
106
106
|
:icon-class="isCollapsed ? 'chevron-right' : 'chevron-down'"
|
|
107
107
|
@click.stop="toggleCollapse"
|
|
108
108
|
/>
|
package/components/_ac-card.scss
DELETED
|
File without changes
|