Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | 31x 31x 13x 6x 6x | import { css, cssClass } from '../styled';
import { borderRadius, fontSize, palette, theme } from '../utils';
export const TextareaWrapper = styleProps => cssClass`
align-items: center;
position: relative;
width: 100%;
${styleProps.size && wrapperSizeProperties(styleProps)};
& {
${theme(styleProps.themeKey, `css.root`)(styleProps)};
}
`;
export const Textarea = styleProps => cssClass`
-webkit-appearance: none;
border: 1px solid ${palette('white900')(styleProps)};
border-radius: ${borderRadius('default')(styleProps)};
width: 100%;
padding: 0.4em 0.8em;
transition: box-shadow 0.1s ease-in-out 0s, border-color 0.1s, background-color 0.1s;
&[disabled] {
background-color: ${palette('white700')(styleProps)};
box-shadow: unset;
cursor: not-allowed;
& {
${theme(styleProps.themeKey, `css.disabled`)(styleProps)};
}
}
&:not([disabled]):hover {
box-shadow: ${palette(`${styleProps.state || 'primary'}Tint`)(styleProps)} 0px 0px 0px 2px !important;
border-color: ${palette(`${styleProps.state || 'primary'}100`)(styleProps)};
}
&:focus {
outline: unset;
z-index: 2;
border-color: ${palette('primary')(styleProps)};
box-shadow: ${palette('primaryTint')(styleProps)} 0px 0px 0px 3px !important;
& {
${theme(styleProps.themeKey, `css.focus`)(styleProps)};
}
}
&::placeholder {
opacity: 0.6;
& {
${theme(styleProps.themeKey, `css.placeholder`)(styleProps)};
}
}
${styleProps.state &&
css`
& {
border-color: ${palette(`${styleProps.state}`)(styleProps)};
box-shadow: ${palette(`${styleProps.state}Tint`)(styleProps)} 0px 0px 0px 3px !important;
}
`}
& {
${theme(styleProps.themeKey, `css.root`)(styleProps)};
}
`;
export const TextareaField = styleProps => cssClass`
& {
${theme(styleProps.themeKey, `css.root`)(styleProps)};
}
`;
export function wrapperSizeProperties(styleProps) {
const properties = {
small: css`
font-size: ${fontSize('150')(styleProps)}rem;
& {
${theme(styleProps.themeKey, `css.sizes.small`)(styleProps)};
}
`,
default: css`
& {
${theme(styleProps.themeKey, `css.sizes.default`)(styleProps)};
}
`,
medium: css`
font-size: ${fontSize('300')(styleProps)}rem;
& {
${theme(styleProps.themeKey, `css.sizes.medium`)(styleProps)};
}
`,
large: css`
font-size: ${fontSize('400')(styleProps)}rem;
& {
${theme(styleProps.themeKey, `css.sizes.large`)(styleProps)};
}
`
};
return properties[styleProps.size];
}
|