UNPKG

@fluentui/react

Version:

Reusable React components for building web experiences.

133 lines 5.05 kB
import { getGlobalClassNames, getFocusStyle, HighContrastSelector } from '../../../Styling'; import { ButtonGlobalClassNames } from '../../Button/BaseButton.classNames'; import { getRTL } from '../../../Utilities'; var GlobalClassNames = { root: 'ms-TagItem', text: 'ms-TagItem-text', close: 'ms-TagItem-close', isSelected: 'is-selected', }; var TAG_HEIGHT = 26; export function getStyles(props) { var _a, _b, _c, _d, _e; var className = props.className, theme = props.theme, selected = props.selected, disabled = props.disabled; var palette = theme.palette, effects = theme.effects, fonts = theme.fonts, semanticColors = theme.semanticColors; var classNames = getGlobalClassNames(GlobalClassNames, theme); return { root: [ classNames.root, fonts.medium, getFocusStyle(theme), { boxSizing: 'content-box', flexShrink: '1', margin: 2, height: TAG_HEIGHT, lineHeight: TAG_HEIGHT, cursor: 'default', userSelect: 'none', display: 'flex', flexWrap: 'nowrap', maxWidth: 300, minWidth: 0, borderRadius: effects.roundedCorner2, color: semanticColors.inputText, background: palette.neutralLighter, selectors: (_a = { ':hover': [ !disabled && !selected && { color: palette.neutralDark, background: palette.neutralLight, selectors: { '.ms-TagItem-close': { color: palette.neutralPrimary, }, }, }, disabled && { background: palette.neutralLighter }, ] }, _a[HighContrastSelector] = { border: "1px solid ".concat(!selected ? 'WindowText' : 'WindowFrame'), }, _a), }, disabled && { selectors: (_b = {}, _b[HighContrastSelector] = { borderColor: 'GrayText', }, _b), }, selected && !disabled && [ classNames.isSelected, { ':focus-within': { background: palette.themePrimary, color: palette.white, }, }, ], className, ], text: [ classNames.text, { overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap', minWidth: 30, margin: '0 8px', }, disabled && { selectors: (_c = {}, _c[HighContrastSelector] = { color: 'GrayText', }, _c), }, ], close: [ classNames.close, getFocusStyle(theme, { borderColor: 'transparent', inset: 1, outlineColor: palette.white }), { color: palette.neutralSecondary, width: 30, height: '100%', flex: '0 0 auto', borderRadius: getRTL(theme) ? "".concat(effects.roundedCorner2, " 0 0 ").concat(effects.roundedCorner2) : "0 ".concat(effects.roundedCorner2, " ").concat(effects.roundedCorner2, " 0"), selectors: (_d = { ':hover': { background: palette.neutralQuaternaryAlt, color: palette.neutralPrimary, } }, _d[".".concat(classNames.isSelected, " &:focus")] = { color: palette.white, background: palette.themePrimary, }, _d[':focus:hover'] = { color: palette.white, background: palette.themeDark, }, _d[':active'] = { color: palette.white, backgroundColor: palette.themeDark, }, _d), }, disabled && { selectors: (_e = {}, _e[".".concat(ButtonGlobalClassNames.msButtonIcon)] = { color: palette.neutralSecondary, }, _e), }, ], }; } //# sourceMappingURL=TagItem.styles.js.map