noph-ui 0.26.6 → 0.26.8
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/dist/select/Check.svelte
CHANGED
|
@@ -23,13 +23,14 @@
|
|
|
23
23
|
border-end-end-radius: var(--np-checkbox-container-shape, 2px);
|
|
24
24
|
border-end-start-radius: var(--np-checkbox-container-shape, 2px);
|
|
25
25
|
display: inline-flex;
|
|
26
|
-
height:
|
|
26
|
+
height: 24px;
|
|
27
27
|
position: relative;
|
|
28
28
|
vertical-align: top;
|
|
29
|
-
width:
|
|
29
|
+
width: 24px;
|
|
30
30
|
padding: 3px;
|
|
31
31
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
32
32
|
cursor: pointer;
|
|
33
|
+
box-sizing: border-box;
|
|
33
34
|
}
|
|
34
35
|
.np-container {
|
|
35
36
|
border-radius: inherit;
|
|
@@ -394,14 +394,24 @@
|
|
|
394
394
|
.error:focus-within label {
|
|
395
395
|
color: var(--np-color-error);
|
|
396
396
|
}
|
|
397
|
+
|
|
398
|
+
.error:hover label,
|
|
399
|
+
.error:hover .arrow {
|
|
400
|
+
color: var(--np-color-on-error-container);
|
|
401
|
+
}
|
|
402
|
+
|
|
397
403
|
.error .np-select-outline,
|
|
398
|
-
.error:hover .np-select-outline,
|
|
399
404
|
.error:focus-within .np-select-outline,
|
|
400
405
|
.error .np-select-filled,
|
|
401
406
|
.error:focus-within .np-select-filled {
|
|
402
407
|
border-color: var(--np-color-error);
|
|
403
408
|
}
|
|
404
409
|
|
|
410
|
+
.error:hover .np-select-outline,
|
|
411
|
+
.error:hover .np-select-filled {
|
|
412
|
+
border-color: var(--np-color-on-error-container);
|
|
413
|
+
}
|
|
414
|
+
|
|
405
415
|
.disabled .np-select-filled {
|
|
406
416
|
background: color-mix(in srgb, var(--np-color-on-surface) 4%, transparent);
|
|
407
417
|
border-block-end-color: color-mix(in srgb, var(--np-color-on-surface) 38%, transparent);
|