office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
29 lines • 845 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var Styling_1 = require("../../Styling");
var GlobalClassNames = {
focusedContainer: 'ms-swatchColorPickerBodyContainer'
};
exports.getStyles = function (props) {
var className = props.className, theme = props.theme;
var classNames = Styling_1.getGlobalClassNames(GlobalClassNames, theme);
return {
root: {
padding: 2,
outline: 'none'
},
tableCell: {
padding: 0
},
focusedContainer: [
classNames.focusedContainer,
{
clear: 'both',
display: 'block',
minWidth: '180px'
},
className
]
};
};
//# sourceMappingURL=SwatchColorPicker.styles.js.map
;