Newer
Older
input[type="number"],
input[type="tel"],
background: #fff;
border: 1px solid #c9c8c5;
font-family: 'Maven Pro', Verdana, sans-serif;

Michael Danielczok
committed
outline: none;
-moz-appearance: none;
-webkit-appearance: none;
background-color: #fff;
background-image: url("../images/arrow-select.svg");
background-position: calc(100% - 10px) center;
background-repeat: no-repeat;
background-size: 8px;
height: 40px;
padding-bottom: 0;
-moz-transition: all 0.2s ease;
-ms-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
padding-bottom: 10px;
input[type="text"]:hover,
input[type="text"]:focus,
input[type="email"]:hover,
input[type="email"]:focus,
input[type="number"]:hover,
input[type="number"]:focus,
input[type="tel"]:hover,
input[type="tel"]:focus,
input[type="password"]:focus,
select:hover,
select:focus,
textarea:hover,
textarea:focus {
/* disabled */
:is(
input:where(:not([type])),
[type='text'],
[type='email'],
[type='url'],
[type='password'],
[type='number'],
[type='date'],
[type='datetime-local'],
[type='month'],
[type='search'],
[type='tel'],
[type='time'],
[type='week'],
[multiple],
textarea,
select
):where([disabled]) {
opacity: 0.6;
}
/* iOs input search fix */
input[type="search"] {
.quiqqer-simple-contact label {
margin: 10px 0;
}
.quiqqer-simple-contact input[type="checkbox"],
.quiqqer-simple-contact input[type="radio"] {
margin-bottom: 0;
}
.quiqqer-simple-contact label > * {
vertical-align: middle;
}
.quiqqer-simple-contact button {
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
color: #99a6b5;
}
::-moz-placeholder { /* Firefox 19+ */
color: #99a6b5;
}
:-ms-input-placeholder { /* IE 10+ */
color: #99a6b5;
}
:-moz-placeholder { /* Firefox 18- */
color: #99a6b5;
}
::-moz-placeholder {
opacity: 1;
}
/* height of qui select */
div.qui-select {
height: 40px;
line-height: 40px;
display: flex;
}
div.qui-select .icon {
height: inherit;
}
div.qui-select .text {
height: inherit;
line-height: inherit;
}
div.qui-select .drop-icon {
height: inherit;
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/*******************/
/* Forms structure */
/*******************/
.form-group,
fieldset ,
legend {
margin-bottom: var(--qui-spacing, 1rem);
}
.form-label {
display: inline-block;
margin-bottom: var(--qui-spacing-xs, 0.5rem);
}
.form-input {
display: block;
width: 100%;
}
.form-text {
color: var(--text-muted);
font-size: var(--font-size-sm, 0.875rem);
margin-top: var(--qui-spacing-xs, 0.5rem);
}
.form-check {
display: block;
margin-bottom: 0.25rem;
}
fieldset > [class^="grid-"]:first-child {
padding-left: 0;
}
fieldset > [class^="grid-"]:last-child {
padding-right: 0;
}
@media screen and (max-width: 767px) {
fieldset > [class^="grid-"] {
padding-left: 0;
padding-right: 0;
}
}
legend {
font-size: var(--qui-fs-md, 1.25rem);
display: block;
width: 100%;
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
vertical-align: middle;
}
/** checkbox
===================================== */
input[type="checkbox"],
.quiqqer-products-productList-filter-entry input[type="checkbox"] {
-webkit-appearance: none;
background-color: #e5e5e5;
border: none;
display: inline-block;
line-height: initial;
margin-bottom: 0;
margin-right: 10px;
padding: 9px;
position: relative;
}
input[type="checkbox"]:checked {
background: #d5d5d5;
}
input[type="checkbox"]:active,
input[type="checkbox"]:checked:active {
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
input[type="checkbox"]:checked:after {
content: '\2713';
font-size: 14px;
left: 5px;
position: absolute;
top: -1px;
}
@supports (-ms-ime-align:auto) {
input[type="checkbox"]:checked,
input[type="checkbox"]:checked:active {
border: none;
padding: 3px 2px 4px;
}
}
/** radio buttons
===================================== */
input[type="radio"] {
-webkit-appearance: none;
background-color: #fafafa;
border: 1px solid #cacece;
border-radius: 50px;
display: inline-block;
margin-right: 10px;
padding: 9px;
position: relative;
}
input[type="radio"]:after {
background: #99a1a7;
border-radius: 50px;
content: ' ';
font-size: 32px;
height: 12px;
left: 3px;
position: absolute;
text-shadow: none;
top: 3px;
transition: 0.3s all;
}
input[type="radio"]:checked:after {
transform: scale(1);
}
input[type="radio"]:checked {
background-color: #e9ecee;
border: 1px solid #adb8c0;
color: #99a1a7;
}
@supports (-ms-ime-align:auto) {
input[type="radio"] {
padding: 9px 9px 10px 10px;
}
input[type="radio"]:checked {
padding: 3px;
background: #e9ecee;
}
}
input[type="radio"]:active,
input[type="radio"]:checked:active {
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
.form-row {
display: flex;
}
.form-group {
margin-bottom: 1rem;
width: 100%;
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
}
/*******************/
/* quiqqer/contact */
/*******************/
fieldset {
border: none;
}
.qui-formfield {
margin-bottom: 1.5rem;
}
.qui-form legend {
background: none;
font-size: 1rem;
}
.qui-formfield-body {
padding: 0;
}
.qui-formfield-body label > * {
vertical-align: middle;
}
.qui-formfield-body > input {
margin-bottom: 0;
}
.qui-formfield-body label {
margin-right: 1rem;
}
.qui-form input[type="submit"] {
margin: 1rem 0 0 0;
width: auto;