benivo-ui-library 1.7.29 → 1.7.31
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/checkbox.less +7 -4
- package/data-table.less +1 -1
- package/package.json +1 -1
package/checkbox.less
CHANGED
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
background-color: #d9d9d9;
|
|
21
21
|
border: 1px solid #d9d9d9;
|
|
22
22
|
top: 0;
|
|
23
|
+
transition: .4s;
|
|
23
24
|
}
|
|
24
25
|
|
|
25
26
|
&:after {
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
width: 16px;
|
|
32
33
|
.border-radius(50%);
|
|
33
34
|
background-color: #ffffff;
|
|
35
|
+
transition: .4s;
|
|
34
36
|
}
|
|
35
37
|
}
|
|
36
38
|
|
|
@@ -218,16 +220,17 @@
|
|
|
218
220
|
}
|
|
219
221
|
}
|
|
220
222
|
|
|
221
|
-
input:hover + label.on-off-slide {
|
|
223
|
+
input:not(:checked):hover + label.on-off-slide {
|
|
222
224
|
border-color: @primary-color;
|
|
223
|
-
|
|
225
|
+
|
|
224
226
|
&:before {
|
|
225
|
-
border-color:
|
|
227
|
+
border-color: rgba(0, 0, 0, 0.15);
|
|
226
228
|
}
|
|
227
229
|
}
|
|
228
230
|
|
|
229
231
|
input:checked + .on-off-slide {
|
|
230
232
|
background-color: @primary-color;
|
|
233
|
+
border-color: @primary-color;
|
|
231
234
|
}
|
|
232
235
|
|
|
233
236
|
input:focus + .on-off-slide {
|
|
@@ -235,7 +238,7 @@
|
|
|
235
238
|
}
|
|
236
239
|
|
|
237
240
|
input:checked + .on-off-slide:before {
|
|
238
|
-
.transform(translateX(
|
|
241
|
+
.transform(translateX(15px));
|
|
239
242
|
}
|
|
240
243
|
|
|
241
244
|
input:checked + label:after {
|
package/data-table.less
CHANGED
|
@@ -276,7 +276,6 @@
|
|
|
276
276
|
}
|
|
277
277
|
|
|
278
278
|
> span {
|
|
279
|
-
align-self: center;
|
|
280
279
|
display: flex;
|
|
281
280
|
justify-content: space-between;
|
|
282
281
|
align-items: baseline;
|
|
@@ -287,6 +286,7 @@
|
|
|
287
286
|
}
|
|
288
287
|
|
|
289
288
|
a:not(.nav-link) {
|
|
289
|
+
align-self: center;
|
|
290
290
|
visibility: hidden;
|
|
291
291
|
display: inline-block;
|
|
292
292
|
margin-left: 150px;
|