您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

styles.js 491B

123456789101112131415161718192021
  1. import { ColorPalette, createStyleSheet } from '../../styles';
  2. /**
  3. * The React {@code Component} styles of the feature base/dialog.
  4. */
  5. export default createStyleSheet({
  6. /**
  7. * The style of the {@code Text} in a {@code Dialog} button.
  8. */
  9. buttonText: {
  10. color: ColorPalette.blue
  11. },
  12. /**
  13. * The style of the {@code Text} in a {@code Dialog} button which is
  14. * disabled.
  15. */
  16. disabledButtonText: {
  17. color: ColorPalette.darkGrey
  18. }
  19. });