2017-09-22 20:09:15 +00:00
|
|
|
import { ColorPalette, createStyleSheet } from '../../styles';
|
|
|
|
|
|
|
|
/**
|
2017-10-01 06:35:19 +00:00
|
|
|
* The React {@code Component} styles of the feature base/dialog.
|
2017-09-22 20:09:15 +00:00
|
|
|
*/
|
|
|
|
export default createStyleSheet({
|
|
|
|
/**
|
2017-10-01 06:35:19 +00:00
|
|
|
* The style of the {@code Text} in a {@code Dialog} button.
|
2017-09-22 20:09:15 +00:00
|
|
|
*/
|
|
|
|
buttonText: {
|
|
|
|
color: ColorPalette.blue
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2017-10-01 06:35:19 +00:00
|
|
|
* The style of the {@code Text} in a {@code Dialog} button which is
|
2017-09-22 20:09:15 +00:00
|
|
|
* disabled.
|
|
|
|
*/
|
|
|
|
disabledButtonText: {
|
|
|
|
color: ColorPalette.darkGrey
|
|
|
|
}
|
|
|
|
});
|