You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.js 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. // @flow
  2. import { ColorPalette } from '../../../../base/styles';
  3. export const AVATAR_SIZE = 40;
  4. export const DARK_GREY = 'rgb(28, 32, 37)';
  5. export const LIGHT_GREY = 'rgb(209, 219, 232)';
  6. export const ICON_SIZE = 15;
  7. export default {
  8. avatar: {
  9. backgroundColor: LIGHT_GREY
  10. },
  11. avatarText: {
  12. color: 'rgb(28, 32, 37)',
  13. fontSize: 12
  14. },
  15. dialogWrapper: {
  16. alignItems: 'stretch',
  17. backgroundColor: ColorPalette.white,
  18. flex: 1,
  19. flexDirection: 'column'
  20. },
  21. itemLinesStyle: {
  22. color: 'rgb(118, 136, 152)',
  23. fontSize: 13
  24. },
  25. itemText: {
  26. color: DARK_GREY,
  27. fontSize: 14,
  28. fontWeight: 'normal'
  29. },
  30. itemWrapper: {
  31. alignItems: 'center',
  32. flexDirection: 'row',
  33. paddingLeft: 5
  34. },
  35. radioButton: {
  36. color: DARK_GREY,
  37. fontSize: 16,
  38. padding: 2
  39. },
  40. resultList: {
  41. padding: 5
  42. },
  43. searchField: {
  44. backgroundColor: 'rgb(240, 243, 247)',
  45. borderBottomRightRadius: 10,
  46. borderTopRightRadius: 10,
  47. color: DARK_GREY,
  48. flex: 1,
  49. fontSize: 17,
  50. paddingVertical: 7
  51. },
  52. separator: {
  53. borderBottomColor: LIGHT_GREY,
  54. borderBottomWidth: 1,
  55. marginLeft: 85
  56. },
  57. searchFieldWrapper: {
  58. alignItems: 'stretch',
  59. flexDirection: 'row',
  60. height: 52,
  61. paddingHorizontal: 15,
  62. paddingVertical: 8
  63. },
  64. searchIcon: {
  65. color: DARK_GREY,
  66. fontSize: ICON_SIZE
  67. },
  68. searchIconWrapper: {
  69. alignItems: 'center',
  70. backgroundColor: 'rgb(240, 243, 247)',
  71. borderBottomLeftRadius: 10,
  72. borderTopLeftRadius: 10,
  73. flexDirection: 'row',
  74. justifyContent: 'center',
  75. width: ICON_SIZE + 16
  76. }
  77. };