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

styles.js 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. // @flow
  2. import { ColorPalette } from '../../../base/styles';
  3. const SECONDARY_COLOR = '#B8C7E0';
  4. export default {
  5. button: {
  6. alignItems: 'center',
  7. borderRadius: 4,
  8. marginVertical: 8,
  9. paddingVertical: 10
  10. },
  11. contentWrapper: {
  12. alignItems: 'center',
  13. flexDirection: 'column',
  14. padding: 32
  15. },
  16. dialogTitle: {
  17. fontSize: 18,
  18. fontWeight: 'bold',
  19. marginBottom: 10
  20. },
  21. displayNameText: {
  22. fontWeight: 'bold',
  23. marginVertical: 10
  24. },
  25. editButton: {
  26. alignSelf: 'flex-end',
  27. paddingHorizontal: 10
  28. },
  29. editIcon: {
  30. color: 'black',
  31. fontSize: 16
  32. },
  33. field: {
  34. borderColor: SECONDARY_COLOR,
  35. borderRadius: 4,
  36. borderWidth: 1,
  37. marginVertical: 8,
  38. padding: 8
  39. },
  40. fieldError: {
  41. color: ColorPalette.warning,
  42. fontSize: 10
  43. },
  44. fieldRow: {
  45. paddingTop: 16
  46. },
  47. fieldLabel: {
  48. textAlign: 'center'
  49. },
  50. formWrapper: {
  51. alignItems: 'stretch',
  52. alignSelf: 'stretch',
  53. paddingVertical: 16
  54. },
  55. joiningMessage: {
  56. textAlign: 'center'
  57. },
  58. loadingIndicator: {
  59. marginVertical: 36
  60. },
  61. participantBox: {
  62. alignItems: 'center',
  63. alignSelf: 'stretch',
  64. borderColor: SECONDARY_COLOR,
  65. borderRadius: 4,
  66. borderWidth: 1,
  67. marginVertical: 18,
  68. paddingVertical: 12
  69. },
  70. primaryButton: {
  71. alignSelf: 'stretch',
  72. backgroundColor: 'rgb(3, 118, 218)'
  73. },
  74. primaryButtonText: {
  75. color: 'white'
  76. },
  77. secondaryButton: {
  78. alignSelf: 'stretch',
  79. backgroundColor: 'transparent'
  80. },
  81. secondaryText: {
  82. color: 'rgba(0, 0, 0, .7)'
  83. },
  84. // KnockingParticipantList
  85. knockingParticipantList: {
  86. alignSelf: 'stretch',
  87. backgroundColor: 'rgba(22, 38, 55, 0.8)',
  88. flexDirection: 'column'
  89. },
  90. knockingParticipantListButton: {
  91. borderRadius: 4,
  92. marginHorizontal: 3,
  93. paddingHorizontal: 10,
  94. paddingVertical: 5
  95. },
  96. knockingParticipantListDetails: {
  97. flex: 1,
  98. marginLeft: 10
  99. },
  100. knockingParticipantListEntry: {
  101. alignItems: 'center',
  102. flexDirection: 'row',
  103. padding: 10
  104. },
  105. knockingParticipantListPrimaryButton: {
  106. backgroundColor: 'rgb(3, 118, 218)'
  107. },
  108. knockingParticipantListSecondaryButton: {
  109. backgroundColor: 'transparent'
  110. },
  111. knockingParticipantListText: {
  112. color: 'white'
  113. }
  114. };