2020-01-03 14:23:49 +00:00
|
|
|
.wc-block-text-input {
|
2019-12-16 22:13:41 +00:00
|
|
|
position: relative;
|
2020-05-14 09:07:21 +00:00
|
|
|
margin-bottom: rem($gap-large);
|
2020-03-03 10:46:53 +00:00
|
|
|
white-space: nowrap;
|
2020-03-17 11:45:33 +00:00
|
|
|
|
2020-03-23 11:22:00 +00:00
|
|
|
label {
|
2020-05-14 09:07:21 +00:00
|
|
|
@include reset-typography();
|
2020-05-07 08:48:38 +00:00
|
|
|
@include font-size(16px);
|
2020-03-23 11:22:00 +00:00
|
|
|
position: absolute;
|
2020-04-30 10:18:12 +00:00
|
|
|
transform: translateY(0.75em);
|
2020-03-23 11:22:00 +00:00
|
|
|
left: 0;
|
2020-04-09 14:26:16 +00:00
|
|
|
top: 0;
|
2020-03-23 11:22:00 +00:00
|
|
|
transform-origin: top left;
|
2020-04-24 12:23:25 +00:00
|
|
|
line-height: 1.375;
|
2020-03-23 11:22:00 +00:00
|
|
|
color: $gray-50;
|
|
|
|
transition: transform 200ms ease;
|
|
|
|
margin: 0 $gap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
max-width: calc(100% - #{ 2 * $gap });
|
|
|
|
|
|
|
|
@media screen and (prefers-reduced-motion: reduce) {
|
|
|
|
transition: none;
|
2020-03-17 11:45:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-23 11:22:00 +00:00
|
|
|
input:-webkit-autofill + label {
|
|
|
|
transform: translateY(#{$gap-smallest}) scale(0.75);
|
2020-03-17 11:45:33 +00:00
|
|
|
}
|
2019-12-16 22:13:41 +00:00
|
|
|
|
2020-03-23 11:22:00 +00:00
|
|
|
&.is-active label {
|
|
|
|
transform: translateY(#{$gap-smallest}) scale(0.75);
|
2020-01-18 09:39:13 +00:00
|
|
|
}
|
2020-01-17 16:58:08 +00:00
|
|
|
|
2020-03-23 11:22:00 +00:00
|
|
|
input[type="tel"],
|
|
|
|
input[type="url"],
|
|
|
|
input[type="text"],
|
|
|
|
input[type="email"] {
|
2020-05-07 08:48:38 +00:00
|
|
|
@include font-size(16px);
|
2020-01-17 16:58:08 +00:00
|
|
|
background-color: #fff;
|
2020-05-14 09:07:21 +00:00
|
|
|
padding: rem($gap-small) $gap;
|
2020-03-23 11:22:00 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
border: 1px solid $input-border-gray;
|
|
|
|
width: 100%;
|
2020-04-24 12:23:25 +00:00
|
|
|
line-height: 1.375;
|
2020-03-23 11:22:00 +00:00
|
|
|
font-family: inherit;
|
|
|
|
margin: 0;
|
|
|
|
box-sizing: border-box;
|
2020-05-14 09:07:21 +00:00
|
|
|
height: rem(48px);
|
|
|
|
min-height: 0;
|
2020-03-23 11:22:00 +00:00
|
|
|
color: $input-text-active;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.is-active input[type="tel"],
|
|
|
|
&.is-active input[type="url"],
|
|
|
|
&.is-active input[type="text"],
|
|
|
|
&.is-active input[type="email"] {
|
2020-05-14 09:07:21 +00:00
|
|
|
padding: rem($gap-large) 0 rem($gap-smallest) $gap;
|
2020-03-23 11:22:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.has-error input {
|
|
|
|
border-color: $error-red;
|
|
|
|
&:focus {
|
|
|
|
outline-color: $error-red;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.has-error label {
|
|
|
|
color: $error-red;
|
2020-01-17 16:58:08 +00:00
|
|
|
}
|
2020-04-06 15:57:38 +00:00
|
|
|
|
|
|
|
&:only-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2019-12-16 22:13:41 +00:00
|
|
|
}
|