@appscode/design-system 2.5.1 → 2.5.3
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/package.json
CHANGED
|
@@ -12,6 +12,11 @@
|
|
|
12
12
|
min-width: 200px;
|
|
13
13
|
max-width: 250px;
|
|
14
14
|
margin-bottom: 0 !important;
|
|
15
|
+
&.ac-radio [type="radio"] + label {
|
|
16
|
+
color: $color-heading;
|
|
17
|
+
font-weight: 500;
|
|
18
|
+
font-size: 14px;
|
|
19
|
+
}
|
|
15
20
|
|
|
16
21
|
&.is-active-require-field {
|
|
17
22
|
&:after {
|
|
@@ -99,7 +104,17 @@
|
|
|
99
104
|
}
|
|
100
105
|
|
|
101
106
|
&.is-selected {
|
|
102
|
-
|
|
107
|
+
&::after {
|
|
108
|
+
position: absolute;
|
|
109
|
+
content: "";
|
|
110
|
+
left: 0;
|
|
111
|
+
top: 0;
|
|
112
|
+
width: 100%;
|
|
113
|
+
height: 100%;
|
|
114
|
+
z-index: -1;
|
|
115
|
+
border: 2px solid $ac-primary;
|
|
116
|
+
border-radius: 4px;
|
|
117
|
+
}
|
|
103
118
|
}
|
|
104
119
|
|
|
105
120
|
&:last-child {
|
|
@@ -217,7 +232,7 @@
|
|
|
217
232
|
font-weight: normal;
|
|
218
233
|
font-size: 1rem;
|
|
219
234
|
line-height: 140%;
|
|
220
|
-
color: $color-
|
|
235
|
+
color: $color-text;
|
|
221
236
|
|
|
222
237
|
&.is-warning {
|
|
223
238
|
color: $danger;
|
|
@@ -26,7 +26,11 @@ defineEmits(["onClick"]);
|
|
|
26
26
|
</div>
|
|
27
27
|
</div>
|
|
28
28
|
|
|
29
|
-
<div
|
|
29
|
+
<div
|
|
30
|
+
v-if="bodyInside"
|
|
31
|
+
class="accordion-body"
|
|
32
|
+
:style="{ 'max-height': isActive ? '100%' : 0, display: isActive ? '' : 'none' }"
|
|
33
|
+
>
|
|
30
34
|
<slot name="body" />
|
|
31
35
|
</div>
|
|
32
36
|
</div>
|