Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. // @flow
  2. import BaseTheme from '../../../base/ui/components/BaseTheme.native';
  3. const contentColumn = {
  4. flex: 1,
  5. flexDirection: 'column',
  6. marginLeft: BaseTheme.spacing[2]
  7. };
  8. const contentText = {
  9. color: BaseTheme.palette.text04,
  10. marginLeft: BaseTheme.spacing[6]
  11. };
  12. /**
  13. * The styles of the React {@code Components} of the feature notifications.
  14. */
  15. export default {
  16. /**
  17. * The content (left) column of the notification.
  18. */
  19. interactiveContentColumn: {
  20. ...contentColumn
  21. },
  22. contentColumn: {
  23. ...contentColumn,
  24. justifyContent: 'center'
  25. },
  26. /**
  27. * Test style of the notification.
  28. */
  29. contentContainer: {
  30. marginTop: BaseTheme.spacing[2]
  31. },
  32. contentText: {
  33. ...contentText,
  34. marginVertical: BaseTheme.spacing[1]
  35. },
  36. contentTextInteractive: {
  37. ...contentText,
  38. marginTop: BaseTheme.spacing[1]
  39. },
  40. contentTextTitle: {
  41. ...contentText,
  42. fontWeight: 'bold',
  43. marginTop: BaseTheme.spacing[1]
  44. },
  45. /**
  46. * Dismiss icon style.
  47. */
  48. dismissIcon: {
  49. color: BaseTheme.palette.icon04,
  50. fontSize: 20
  51. },
  52. notification: {
  53. display: 'flex',
  54. backgroundColor: BaseTheme.palette.ui12,
  55. borderRadius: BaseTheme.shape.borderRadius,
  56. flexDirection: 'row',
  57. maxHeight: 104,
  58. height: 'auto',
  59. marginBottom: BaseTheme.spacing[3],
  60. marginHorizontal: BaseTheme.spacing[2]
  61. },
  62. /**
  63. * Wrapper for the message.
  64. */
  65. notificationContent: {
  66. alignItems: 'center',
  67. flexDirection: 'row'
  68. },
  69. participantName: {
  70. color: BaseTheme.palette.text04,
  71. overflow: 'hidden'
  72. },
  73. iconContainer: {
  74. left: BaseTheme.spacing[1],
  75. position: 'absolute',
  76. top: BaseTheme.spacing[2]
  77. },
  78. btn: {
  79. marginLeft: BaseTheme.spacing[4]
  80. },
  81. btnContainer: {
  82. display: 'flex',
  83. flexDirection: 'row',
  84. marginLeft: BaseTheme.spacing[1]
  85. }
  86. };