office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
101 lines • 3.32 kB
JavaScript
import { concatStyleSets, FontWeights, HighContrastSelector } from '../../../Styling';
import { memoizeFunction } from '../../../Utilities';
import { getStyles as getBaseButtonStyles } from '../BaseButton.styles';
import { getStyles as getSplitButtonStyles } from '../SplitButton/SplitButton.styles';
import { primaryStyles, standardStyles } from '../ButtonThemes';
export var getStyles = memoizeFunction(function (theme, customStyles, primary) {
var baseButtonStyles = getBaseButtonStyles(theme);
var splitButtonStyles = getSplitButtonStyles(theme);
var compoundButtonStyles = {
root: {
maxWidth: '280px',
minHeight: '72px',
height: 'auto',
padding: '20px'
},
flexContainer: {
flexDirection: 'row',
alignItems: 'flex-start',
minWidth: '100%',
margin: ''
},
textContainer: {
textAlign: 'left'
},
icon: {
fontSize: '2em',
lineHeight: '1em',
height: '1em',
margin: '0px 8px 0px 0px',
flexBasis: '1em',
flexShrink: '0'
},
label: {
margin: '0 0 5px',
lineHeight: '100%',
fontWeight: FontWeights.semibold
},
description: [
theme.fonts.small,
{
lineHeight: '100%'
}
]
};
var standardCompoundTheme = {
description: {
color: theme.palette.neutralSecondary
},
descriptionHovered: {
color: theme.palette.neutralDark
},
descriptionPressed: {
color: 'inherit'
},
descriptionChecked: {
color: 'inherit'
},
descriptionDisabled: {
color: 'inherit'
}
};
var primaryCompoundTheme = {
description: {
color: theme.palette.white,
selectors: (_a = {},
_a[HighContrastSelector] = {
color: 'Window',
backgroundColor: 'WindowText',
MsHighContrastAdjust: 'none'
},
_a)
},
descriptionHovered: {
color: theme.palette.white,
selectors: (_b = {},
_b[HighContrastSelector] = {
color: 'Window',
backgroundColor: 'Highlight',
MsHighContrastAdjust: 'none'
},
_b)
},
descriptionPressed: {
color: 'inherit'
},
descriptionChecked: {
color: 'inherit'
},
descriptionDisabled: {
color: 'inherit',
selectors: (_c = {},
_c[HighContrastSelector] = {
color: 'inherit'
},
_c)
}
};
return concatStyleSets(baseButtonStyles, compoundButtonStyles, primary ? primaryStyles(theme) : standardStyles(theme), primary ? primaryCompoundTheme : standardCompoundTheme, splitButtonStyles, customStyles);
var _a, _b, _c;
});
//# sourceMappingURL=CompoundButton.styles.js.map