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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. flex: 1,
  48. fontSize: 17,
  49. paddingVertical: 7
  50. },
  51. separator: {
  52. borderBottomColor: LIGHT_GREY,
  53. borderBottomWidth: 1,
  54. marginLeft: 85
  55. },
  56. searchFieldWrapper: {
  57. alignItems: 'stretch',
  58. flexDirection: 'row',
  59. height: 52,
  60. paddingHorizontal: 15,
  61. paddingVertical: 8
  62. },
  63. searchIcon: {
  64. color: DARK_GREY,
  65. fontSize: ICON_SIZE
  66. },
  67. searchIconWrapper: {
  68. alignItems: 'center',
  69. backgroundColor: 'rgb(240, 243, 247)',
  70. borderBottomLeftRadius: 10,
  71. borderTopLeftRadius: 10,
  72. flexDirection: 'row',
  73. justifyContent: 'center',
  74. width: ICON_SIZE + 16
  75. }
  76. };