halleyx-ui-framework 11.6.26 → 11.6.28
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/cjs/index.css +1 -1
- package/dist/cjs/index.js +2 -2
- package/dist/es/index.css +1 -1
- package/dist/es/index.js +2 -2
- package/dist/src/assets/styles/inputfields.scss +42 -1
- package/dist/umd/index.css +1 -1
- package/dist/umd/index.umd.js +2 -2
- package/dist/umd/index.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -101,13 +101,54 @@ input[type='datetime-local']:before {
|
|
|
101
101
|
input[type='password'] {
|
|
102
102
|
font-family: Verdana;
|
|
103
103
|
}
|
|
104
|
+
.isSwitchError:checked + .slider {
|
|
105
|
+
background: var(--hlx-color-error) !important;
|
|
106
|
+
border: 1px solid var(--hlx-color-error) !important;
|
|
107
|
+
}
|
|
108
|
+
.isSwitchError + .slider {
|
|
109
|
+
background: var(--hlx-border-color) !important;
|
|
110
|
+
border: 1px solid var(--hlx-color-error) !important;
|
|
111
|
+
}
|
|
112
|
+
.isSwitchError:checked:disabled + .slider {
|
|
113
|
+
background: var(--hlx-border-color) !important;
|
|
114
|
+
border: 1px solid var(--hlx-color-error) !important;
|
|
115
|
+
}
|
|
116
|
+
.isCheckMarkError {
|
|
117
|
+
border: 1px solid var(--hlx-color-error) !important;
|
|
118
|
+
}
|
|
119
|
+
.isCheckMarkError.select-all-theme {
|
|
120
|
+
border: 1px solid var(--hlx-color-error) !important;
|
|
121
|
+
background: var(--hlx-color-error) !important;
|
|
122
|
+
}
|
|
123
|
+
input:checked ~ .isCheckMarkError {
|
|
124
|
+
border: 1px solid var(--hlx-color-error) !important;
|
|
125
|
+
background: var(--hlx-color-error) !important;
|
|
126
|
+
}
|
|
127
|
+
.isRadioError {
|
|
128
|
+
border: 1px solid var(--hlx-color-error) !important;
|
|
129
|
+
&:after {
|
|
130
|
+
background: var(--hlx-color-error) !important;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
104
134
|
.input-container {
|
|
105
135
|
display: flex;
|
|
106
136
|
flex-direction: column;
|
|
107
137
|
align-items: center;
|
|
108
138
|
// background: white;
|
|
109
139
|
position: relative;
|
|
110
|
-
|
|
140
|
+
.singleBorder {
|
|
141
|
+
border: none !important;
|
|
142
|
+
border-bottom: 1px solid var(--hlx-border-color) !important;
|
|
143
|
+
}
|
|
144
|
+
// .singleBorder:hover {
|
|
145
|
+
// border: none !important;
|
|
146
|
+
// border-bottom: 1px solid var(--hlx-color-primary) !important;
|
|
147
|
+
// }
|
|
148
|
+
.singleBorder:focus-within {
|
|
149
|
+
border: none !important;
|
|
150
|
+
border-bottom: 1px solid var(--hlx-color-primary) !important;
|
|
151
|
+
}
|
|
111
152
|
.readOnly.singleBorder:hover {
|
|
112
153
|
border-bottom: 1px solid var(--hlx-border-color) !important;
|
|
113
154
|
input {
|