optimized-react-component-library-xyz123 0.20.2 → 0.20.4
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/package.json +1 -1
- package/src/css/questions.css +7 -21
package/package.json
CHANGED
package/src/css/questions.css
CHANGED
|
@@ -52,6 +52,7 @@ div.pts-root-question:last-child {
|
|
|
52
52
|
margin-bottom: 0.4rem;
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
+
.pts-root-question select,
|
|
55
56
|
.pts-root-question input[type='text']:focus,
|
|
56
57
|
.pts-root-question input[type='email']:focus,
|
|
57
58
|
.pts-root-question input[type='tel']:focus {
|
|
@@ -96,7 +97,7 @@ div.pts-root-question:last-child {
|
|
|
96
97
|
padding: 3.6rem 0 0 0;
|
|
97
98
|
margin: 0;
|
|
98
99
|
}
|
|
99
|
-
|
|
100
|
+
.pts-root-question select,
|
|
100
101
|
.pts-root-question input[type='text'],
|
|
101
102
|
.pts-root-question input[type='email'],
|
|
102
103
|
.pts-root-question input[type='tel'] {
|
|
@@ -157,27 +158,7 @@ div.pts-root-question:last-child {
|
|
|
157
158
|
}
|
|
158
159
|
|
|
159
160
|
.pts-dropdown-container select {
|
|
160
|
-
display: block;
|
|
161
|
-
width: 100%;
|
|
162
|
-
padding-right: 2.4em;
|
|
163
|
-
padding-left: 0.6em;
|
|
164
|
-
|
|
165
|
-
border: #747474 1px solid;
|
|
166
|
-
box-shadow: none;
|
|
167
|
-
margin: 0;
|
|
168
|
-
height: 42px;
|
|
169
|
-
|
|
170
|
-
word-wrap: normal;
|
|
171
|
-
|
|
172
|
-
text-transform: none;
|
|
173
|
-
|
|
174
161
|
cursor: pointer;
|
|
175
|
-
|
|
176
|
-
border-radius: 6px;
|
|
177
|
-
|
|
178
|
-
font-family: Arial;
|
|
179
|
-
font-size: 16px;
|
|
180
|
-
|
|
181
162
|
background-image: url('../icons/arrow-down.svg');
|
|
182
163
|
background-repeat: no-repeat;
|
|
183
164
|
background-position: right 14px center;
|
|
@@ -191,6 +172,11 @@ div.pts-root-question:last-child {
|
|
|
191
172
|
border-color 0.15s ease-in-out,
|
|
192
173
|
box-shadow 0.15s ease-in-out;
|
|
193
174
|
}
|
|
175
|
+
.pts-dropdown-container select:focus {
|
|
176
|
+
outline: none;
|
|
177
|
+
border-width: 2px;
|
|
178
|
+
border-color: var(--action);
|
|
179
|
+
}
|
|
194
180
|
|
|
195
181
|
/* ---------- SINGLE CHECKBOX ---------- */
|
|
196
182
|
|