@linzjs/lui 21.48.0 → 21.49.0
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/CHANGELOG.md +14 -0
- package/dist/components/LuiSearchInput/ResultsDisplay.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/dist/lui.css +8 -16
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiFormElements/LuiSelectInput/LuiSelectInput.scss +6 -19
- package/package.json +1 -1
|
@@ -71,28 +71,14 @@
|
|
|
71
71
|
.LuiSelect-wrapper {
|
|
72
72
|
position: relative;
|
|
73
73
|
|
|
74
|
-
&:before {
|
|
75
|
-
content: '';
|
|
76
|
-
display: block;
|
|
77
|
-
position: absolute;
|
|
78
|
-
width: spacing.$unit-sm;
|
|
79
|
-
top: 0;
|
|
80
|
-
bottom: 0;
|
|
81
|
-
left: -8px;
|
|
82
|
-
border-radius: MiscVars.$borderRadius 0 0 MiscVars.$borderRadius;
|
|
83
|
-
z-index: -1;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
74
|
.hasError & {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
}
|
|
75
|
+
box-shadow: -8px 0px 0 0 colors.$error;
|
|
76
|
+
border-radius: 4px;
|
|
90
77
|
}
|
|
91
78
|
|
|
92
79
|
.hasWarning & {
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
}
|
|
80
|
+
box-shadow: -8px 0px 0 0 colors.$warning;
|
|
81
|
+
border-radius: 4px;
|
|
96
82
|
}
|
|
97
83
|
}
|
|
98
84
|
|
|
@@ -125,7 +111,8 @@
|
|
|
125
111
|
color: colors.$charcoal;
|
|
126
112
|
}
|
|
127
113
|
|
|
128
|
-
.LuiSelect-error-icon,
|
|
114
|
+
.LuiSelect-error-icon,
|
|
115
|
+
.LuiSelect-warning-icon {
|
|
129
116
|
position: absolute;
|
|
130
117
|
left: 0;
|
|
131
118
|
top: 2px;
|
package/package.json
CHANGED