2021-04-12 10:03:36 +00:00
|
|
|
.wc-block-components-form .wc-block-components-text-input,
|
2020-06-17 09:53:42 +00:00
|
|
|
.wc-block-components-text-input {
|
2019-12-16 22:13:41 +00:00
|
|
|
position: relative;
|
2023-10-13 11:13:50 +00:00
|
|
|
margin-top: $gap;
|
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 {
|
2023-04-21 20:11:10 +00:00
|
|
|
@include reset-color();
|
2020-05-14 09:07:21 +00:00
|
|
|
@include reset-typography();
|
2020-05-29 10:16:33 +00:00
|
|
|
@include font-size(regular);
|
2020-03-23 11:22:00 +00:00
|
|
|
position: absolute;
|
2023-10-13 11:13:50 +00:00
|
|
|
transform: translateY(em($gap));
|
|
|
|
line-height: 1.25; // =20px when font-size is 16px.
|
|
|
|
left: em($gap-smaller + 1px);
|
2020-04-09 14:26:16 +00:00
|
|
|
top: 0;
|
2020-03-23 11:22:00 +00:00
|
|
|
transform-origin: top left;
|
2023-10-13 11:13:50 +00:00
|
|
|
color: $universal-body-low-emphasis;
|
|
|
|
transition: all 200ms ease;
|
|
|
|
margin: 0;
|
2020-03-23 11:22:00 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2020-05-20 13:54:37 +00:00
|
|
|
max-width: calc(100% - #{2 * $gap});
|
2020-06-08 10:55:10 +00:00
|
|
|
cursor: text;
|
2020-03-23 11:22:00 +00:00
|
|
|
|
2020-08-14 11:08:16 +00:00
|
|
|
.has-dark-controls & {
|
|
|
|
color: $input-placeholder-dark;
|
|
|
|
}
|
2020-03-23 11:22:00 +00:00
|
|
|
@media screen and (prefers-reduced-motion: reduce) {
|
|
|
|
transition: none;
|
2020-03-17 11:45:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-13 11:13:50 +00:00
|
|
|
input[type="number"] {
|
|
|
|
-moz-appearance: textfield;
|
|
|
|
&::-webkit-outer-spin-button,
|
|
|
|
&::-webkit-inner-spin-button {
|
|
|
|
appearance: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
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"],
|
2021-06-04 08:44:26 +00:00
|
|
|
input[type="number"],
|
2020-03-23 11:22:00 +00:00
|
|
|
input[type="email"] {
|
2020-05-29 10:16:33 +00:00
|
|
|
@include font-size(regular);
|
2023-10-13 11:13:50 +00:00
|
|
|
padding: em($gap);
|
|
|
|
line-height: em($gap);
|
|
|
|
width: 100%;
|
2023-10-11 16:04:45 +00:00
|
|
|
border-radius: $universal-border-radius;
|
Update the border colors in the Cart and Checkout blocks (https://github.com/woocommerce/woocommerce-blocks/pull/11474)
* Change border color to Gutenberg 100 for Cart and Checkout blocks
* Change form input color to Gutenberg 900 for Cart and Checkout blocks
* Fix additional border colors of Checkout block
* Update borders and form field colors in Cart Block
* Change border color to $universal-border-light
* Change border color for cart line items to $universal-border-light
* Change form input fields border color to $universal-border-dark
- Add $universal-border-dark color variable for woocommerce/woocommerce-blocks#1e1e1e on white.
* Fix colors of text area border and form steps
* Change form input fields border color to $universal-border-dark
- Add $universal-border-dark color variable for woocommerce/woocommerce-blocks#1e1e1e on white.
* Fix form steps
* Update universal dark border rgba value
- Update universal dark border rgba value from rgba(0, 0, 0, 0.882) to rgba(17, 17, 17, .80) to keep it consistent with universal-border colors
* Update $universal-border-light color
* Update the opacity of the borders
* Update the border color to rgba (17, 17, 17, 0.12)
* Roll back $universal-border-light value to the original value: 0.115
* Remove Opacity and pass it as argument in with-translucent-border
- We have with-translucent-border option that accepts border and opacity for pseudo elements.
* Remove additional spaces
* Replace with-translucent-border with normal border
- Since we're are not mixing the opacity to the border color so we don't need to use mixin with-translucent-border.
* Fix applied css and add low contrast Color usage details
- Fix minor CSS as per the standards.
- Add comments for universal border colors that they're low contrast colors and should be used for decorative elements only
* Fix border gap and double border for multiple shipping packages
* Fix payment method borders and Cart line items borders
- Change border bottom to border-top for cart line items.
- Fix payment method radio control borders.
* Fix local pickup border
- Local pickup was using with-translucent-borders so it has some opacity, changed it to border-bottom.
* Add border-bottom to cart items
* Remove additional border from Cart items
* Fix radio and checkbox borders as per the design
* Fix shipping method borders and background color as per the design.
* Force align left on the description for the local pickup options.
* Update border color in quantity selector component
* Fix Shipping options radio selection alignment
- Add left padding to wc-block-components-shipping-rates-control__package element.
* Update colors and variables
* Change checkbox and radio button colors
- Change checkbox and radio button colors from rgba(25, 23, 17, 0.3) to rgba(25, 23, 17, 0.48).
* Remove bottom property from express payment style
2023-12-07 17:37:48 +00:00
|
|
|
border: 1px solid $universal-border-strong;
|
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
|
|
|
min-height: 0;
|
2023-10-13 11:13:50 +00:00
|
|
|
background-color: #fff;
|
2020-03-23 11:22:00 +00:00
|
|
|
color: $input-text-active;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: #fff;
|
2021-04-12 10:03:36 +00:00
|
|
|
color: $input-text-active;
|
2021-09-14 11:26:41 +00:00
|
|
|
outline: 0;
|
|
|
|
box-shadow: 0 0 0 1px $input-border-gray;
|
2020-03-23 11:22:00 +00:00
|
|
|
}
|
2021-04-12 10:03:36 +00:00
|
|
|
|
2020-08-14 11:08:16 +00:00
|
|
|
.has-dark-controls & {
|
|
|
|
background-color: $input-background-dark;
|
|
|
|
border-color: $input-border-dark;
|
|
|
|
color: $input-text-dark;
|
2021-04-12 10:03:36 +00:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: $input-background-dark;
|
|
|
|
color: $input-text-dark;
|
2021-09-14 11:26:41 +00:00
|
|
|
box-shadow: 0 0 0 1px $input-border-dark;
|
2021-04-12 10:03:36 +00:00
|
|
|
}
|
2020-08-14 11:08:16 +00:00
|
|
|
}
|
2020-03-23 11:22:00 +00:00
|
|
|
}
|
|
|
|
|
2023-10-13 11:13:50 +00:00
|
|
|
input:-webkit-autofill,
|
2020-03-23 11:22:00 +00:00
|
|
|
&.is-active input[type="tel"],
|
|
|
|
&.is-active input[type="url"],
|
|
|
|
&.is-active input[type="text"],
|
2021-06-04 08:44:26 +00:00
|
|
|
&.is-active input[type="number"],
|
2020-03-23 11:22:00 +00:00
|
|
|
&.is-active input[type="email"] {
|
2023-10-13 11:13:50 +00:00
|
|
|
padding: em($gap + $gap-smaller) em($gap-smaller) em($gap-smaller);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.is-active label,
|
|
|
|
input:-webkit-autofill + label {
|
|
|
|
transform: translateY(em($gap-smaller)) scale(0.875);
|
2020-03-23 11:22:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.has-error input {
|
2020-08-11 09:55:26 +00:00
|
|
|
&,
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2020-10-22 10:40:32 +00:00
|
|
|
border-color: $alert-red;
|
2020-08-11 09:55:26 +00:00
|
|
|
}
|
2020-03-23 11:22:00 +00:00
|
|
|
&:focus {
|
2021-09-14 11:26:41 +00:00
|
|
|
box-shadow: 0 0 0 1px $alert-red;
|
2020-03-23 11:22:00 +00:00
|
|
|
}
|
2022-07-06 14:03:15 +00:00
|
|
|
|
|
|
|
.has-dark-controls &,
|
|
|
|
.has-dark-controls &:hover,
|
|
|
|
.has-dark-controls &:focus,
|
|
|
|
.has-dark-controls &:active {
|
|
|
|
border-color: color.adjust($alert-red, $lightness: 30%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-dark-controls &:focus {
|
|
|
|
box-shadow: 0 0 0 1px color.adjust($alert-red, $lightness: 30%);
|
|
|
|
}
|
2020-03-23 11:22:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.has-error label {
|
2020-10-22 10:40:32 +00:00
|
|
|
color: $alert-red;
|
2022-07-06 14:03:15 +00:00
|
|
|
|
|
|
|
.has-dark-controls & {
|
|
|
|
color: color.adjust($alert-red, $lightness: 30%);
|
|
|
|
}
|
2020-01-17 16:58:08 +00:00
|
|
|
}
|
2020-04-06 15:57:38 +00:00
|
|
|
|
|
|
|
&:only-child {
|
2022-02-15 12:17:24 +00:00
|
|
|
margin-top: 1.5em;
|
2020-04-06 15:57:38 +00:00
|
|
|
}
|
2019-12-16 22:13:41 +00:00
|
|
|
}
|