wix-style-react
Version:
wix-style-react
39 lines • 848 B
JavaScript
module.exports = {
// Applies the same box-sizing on all content and root
boxSizingMixin(boxSizing) {
return {
boxSizing,
'*': {
boxSizing
}
};
},
// Sets color of an input placeholder
// TODO: remove this polyfill, as ::placeholder falls under our supported browser version range
placeholderMixin(color) {
return {
'&::-webkit-input-placeholder': {
color
},
'&:-moz-placeholder': {
color
},
'&::-moz-placeholder': {
color
},
'&:-ms-input-placeholder': {
color: "".concat(color, " !important")
}
};
},
// Sets the border radius
borderRadiusMixin(borderRadius) {
return {
borderRadius,
'&:-webkit-autofill': {
borderRadius
}
};
}
};
//# sourceMappingURL=Input.mixins.js.map