@ni/spright-components 4.1.6 → 4.1.7
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.
|
@@ -26334,6 +26334,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
26334
26334
|
border-bottom-color: ${borderHoverColor};
|
|
26335
26335
|
}
|
|
26336
26336
|
|
|
26337
|
+
:host([readonly]) .root,
|
|
26337
26338
|
:host([disabled]) .root {
|
|
26338
26339
|
border-color: rgba(${borderRgbPartialColor}, 0.1);
|
|
26339
26340
|
}
|
|
@@ -26375,6 +26376,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
26375
26376
|
width: 100%;
|
|
26376
26377
|
}
|
|
26377
26378
|
|
|
26379
|
+
:host([readonly]:hover) .root::after,
|
|
26378
26380
|
:host([disabled]:hover) .root::after {
|
|
26379
26381
|
width: 0px;
|
|
26380
26382
|
}
|
|
@@ -26455,11 +26457,20 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
26455
26457
|
}
|
|
26456
26458
|
|
|
26457
26459
|
:host(:hover) .root {
|
|
26460
|
+
border-bottom-width: ${borderWidth};
|
|
26458
26461
|
padding-bottom: 0;
|
|
26459
26462
|
}
|
|
26460
26463
|
|
|
26464
|
+
:host([readonly]) .root,
|
|
26461
26465
|
:host([disabled]) .root {
|
|
26462
26466
|
background-color: rgba(${borderRgbPartialColor}, 0.07);
|
|
26467
|
+
border-color: transparent;
|
|
26468
|
+
}
|
|
26469
|
+
|
|
26470
|
+
:host([error-visible][readonly]) .root,
|
|
26471
|
+
:host([error-visible][disabled]) .root {
|
|
26472
|
+
padding-bottom: 0;
|
|
26473
|
+
border-bottom-color: ${failColor};
|
|
26463
26474
|
}
|
|
26464
26475
|
`), appearanceBehavior(NumberFieldAppearance.outline, css `
|
|
26465
26476
|
.root {
|