UNPKG

@ni/spright-components

Version:

NI Spright Components

79 lines (67 loc) 2.12 kB
import { css } from '@ni/fast-element'; import { applicationBackgroundColor, bodyFont, bodyFontColor, borderWidth, controlLabelFontColor, elevation2BoxShadow, mediumPadding, popupBorderColor, borderHoverColor, smallDelay } from '@ni/nimble-components/dist/esm/theme-provider/design-tokens'; import { display } from '../../utilities/style/display'; export const styles = css ` ${display('flex')} :host { width: 100%; height: auto; outline: none; --ni-private-hover-indicator-width: calc(${borderWidth} + 1px); } .container { display: flex; flex-direction: column; position: relative; width: 100%; height: 100%; background-color: ${applicationBackgroundColor}; border: ${borderWidth} solid ${popupBorderColor}; box-shadow: ${elevation2BoxShadow}; } .container::after { content: ''; position: absolute; bottom: calc(-1 * ${borderWidth}); width: 0px; height: 0px; align-self: center; border-bottom: ${borderHoverColor} var(--ni-private-hover-indicator-width) solid; transition: width ${smallDelay} ease-in; } :host(:hover) .container::after { width: 100%; transition: width ${smallDelay} ease-in; } :host(:focus-within) .container { border-bottom-color: ${borderHoverColor}; } @media (prefers-reduced-motion) { .container::after { transition-duration: 0s; } } textarea { font: ${bodyFont}; color: ${bodyFontColor}; background-color: transparent; width: 100%; resize: none; height: auto; max-height: calc(6lh + 2 * ${mediumPadding}); field-sizing: content; border-width: 0px; outline: none; padding: ${mediumPadding}; } textarea::placeholder { color: ${controlLabelFontColor}; } .send-button { align-self: flex-end; width: 80px; margin: ${mediumPadding}; } `; //# sourceMappingURL=styles.js.map