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.native.js 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import { ColorPalette, createStyleSheet } from '../../base/styles';
  2. /**
  3. * The styles of the React {@code Component}s of the feature recent-list i.e.
  4. * {@code CalendarList}.
  5. */
  6. export default createStyleSheet({
  7. /**
  8. * Text style of the empty recent list message.
  9. */
  10. emptyListText: {
  11. backgroundColor: 'transparent',
  12. color: 'rgba(255, 255, 255, 0.6)',
  13. textAlign: 'center'
  14. },
  15. /**
  16. * The style of the empty recent list container.
  17. */
  18. emptyListContainer: {
  19. alignItems: 'center',
  20. justifyContent: 'center',
  21. padding: 20
  22. },
  23. entryNameContainer: {
  24. alignItems: 'center',
  25. borderBottomColor: ColorPalette.lightGrey,
  26. borderBottomWidth: 1,
  27. borderTopLeftRadius: 16,
  28. borderTopRightRadius: 16,
  29. flexDirection: 'row',
  30. justifyContent: 'center',
  31. height: 48
  32. },
  33. entryNameLabel: {
  34. color: ColorPalette.lightGrey,
  35. flexShrink: 1,
  36. fontSize: 16,
  37. opacity: 0.90
  38. }
  39. });