Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

styles.js 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. // @flow
  2. import {
  3. MD_FONT_SIZE,
  4. MD_ITEM_HEIGHT,
  5. MD_ITEM_MARGIN_PADDING
  6. } from '../../../base/dialog';
  7. import { ColorPalette, createStyleSheet } from '../../../base/styles';
  8. import BaseTheme from '../../../base/ui/components/BaseTheme.native';
  9. export default createStyleSheet({
  10. participantNameContainer: {
  11. alignItems: 'center',
  12. borderBottomColor: BaseTheme.palette.dividerColor,
  13. borderBottomWidth: 0.4,
  14. borderTopLeftRadius: 16,
  15. borderTopRightRadius: 16,
  16. flexDirection: 'row',
  17. height: MD_ITEM_HEIGHT,
  18. paddingLeft: MD_ITEM_MARGIN_PADDING
  19. },
  20. participantNameLabel: {
  21. color: ColorPalette.lightGrey,
  22. flexShrink: 1,
  23. fontSize: MD_FONT_SIZE,
  24. marginLeft: MD_ITEM_MARGIN_PADDING,
  25. opacity: 0.90
  26. },
  27. statsTitleText: {
  28. color: BaseTheme.palette.text01,
  29. fontSize: 16,
  30. fontWeight: 'bold',
  31. marginRight: 3
  32. },
  33. statsInfoText: {
  34. color: BaseTheme.palette.text01,
  35. fontSize: 16,
  36. marginRight: 2,
  37. marginLeft: 2
  38. },
  39. statsInfoCell: {
  40. alignItems: 'center',
  41. flexDirection: 'row',
  42. height: 30,
  43. justifyContent: 'flex-start'
  44. },
  45. statsWrapper: {
  46. margin: BaseTheme.spacing[3]
  47. },
  48. volumeSliderContainer: {
  49. alignItems: 'center',
  50. flexDirection: 'row',
  51. marginHorizontal: BaseTheme.spacing[3],
  52. marginVertical: BaseTheme.spacing[2]
  53. },
  54. sliderContainer: {
  55. marginLeft: BaseTheme.spacing[3],
  56. minWidth: '80%'
  57. },
  58. divider: {
  59. backgroundColor: BaseTheme.palette.dividerColor
  60. },
  61. dividerDialog: {
  62. backgroundColor: BaseTheme.palette.dividerColor,
  63. marginBottom: BaseTheme.spacing[3]
  64. },
  65. contextMenuItem: {
  66. alignItems: 'center',
  67. display: 'flex',
  68. flexDirection: 'row',
  69. height: BaseTheme.spacing[7],
  70. marginLeft: BaseTheme.spacing[3]
  71. },
  72. contextMenuItemText: {
  73. ...BaseTheme.typography.bodyShortRegularLarge,
  74. color: BaseTheme.palette.text01,
  75. marginLeft: BaseTheme.spacing[4]
  76. }
  77. });