halleyx-ui-framework 7.0.3 → 7.0.5
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 +29 -25
- 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
|
@@ -118,18 +118,18 @@ input[type='password'] {
|
|
|
118
118
|
}
|
|
119
119
|
}
|
|
120
120
|
.input-field.small.readOnly {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
121
|
+
border: 1px solid var(--hlx-border-color) !important;
|
|
122
|
+
textarea {
|
|
123
|
+
cursor: default !important;
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
126
|
+
input {
|
|
127
|
+
cursor: default !important;
|
|
128
|
+
}
|
|
129
|
+
label {
|
|
130
|
+
color: #a6a6a6 !important;
|
|
131
|
+
cursor: default !important;
|
|
132
|
+
}
|
|
133
133
|
}
|
|
134
134
|
.input-field.small input {
|
|
135
135
|
display: flex;
|
|
@@ -171,14 +171,14 @@ input[type='password'] {
|
|
|
171
171
|
background-color: white;
|
|
172
172
|
}
|
|
173
173
|
.input-field.small.disabled.readOnly {
|
|
174
|
-
input{
|
|
174
|
+
input {
|
|
175
175
|
color: #a6a6a6 !important;
|
|
176
176
|
}
|
|
177
|
-
textarea{
|
|
177
|
+
textarea {
|
|
178
178
|
color: #a6a6a6 !important;
|
|
179
179
|
cursor: not-allowed !important;
|
|
180
180
|
}
|
|
181
|
-
.readonly-overlay{
|
|
181
|
+
.readonly-overlay {
|
|
182
182
|
cursor: not-allowed !important;
|
|
183
183
|
}
|
|
184
184
|
}
|
|
@@ -390,19 +390,23 @@ input[type='password'] {
|
|
|
390
390
|
background-color: var(--hlx-color-primary-light);
|
|
391
391
|
cursor: pointer;
|
|
392
392
|
}
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
393
|
+
.address-options {
|
|
394
|
+
white-space: nowrap;
|
|
395
|
+
overflow: hidden;
|
|
396
|
+
text-overflow: ellipsis;
|
|
397
|
+
}
|
|
398
|
+
.link {
|
|
399
|
+
display: flex;
|
|
400
|
+
color: #2879b7;
|
|
401
|
+
align-items: center;
|
|
402
|
+
gap: 0.5rem;
|
|
403
|
+
span {
|
|
404
|
+
font-size: 14px;
|
|
405
|
+
}
|
|
405
406
|
}
|
|
406
407
|
}
|
|
407
408
|
}
|
|
409
|
+
|
|
410
|
+
.hover-country:hover {
|
|
411
|
+
background-color: var(--hlx-color-primary-light);
|
|
408
412
|
}
|