_android.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .android {
  2. #header {
  3. background-color: $blue;
  4. color: white;
  5. transition: background-color 0.5s;
  6. &.inactive {
  7. background-color: $grey_l;
  8. color: $grey_d;
  9. }
  10. }
  11. .contact-details .name {
  12. font-weight: 400;
  13. }
  14. .conversation.placeholder .conversation-header {
  15. display: none;
  16. }
  17. .conversation-header, .bubble {
  18. @include avatar-colors;
  19. }
  20. .bottom-bar {
  21. min-height: 10px;
  22. }
  23. .bubble {
  24. padding: 9px 12px;
  25. border-radius: $border-radius;
  26. box-shadow: 0 3px 3px -4px black;
  27. }
  28. .outgoing .bubble {
  29. background-color: $grey_l;
  30. }
  31. .outgoing .hourglass {
  32. @include hourglass(#999);
  33. }
  34. .incoming .hourglass {
  35. @include hourglass(#fff);
  36. }
  37. .incoming .bubble {
  38. .sender, .content, .body, .meta, a {
  39. @include invert-text-color;
  40. }
  41. .attachments, .content {
  42. a {
  43. color: $grey_l;
  44. }
  45. }
  46. }
  47. button.clock {
  48. @include header-icon-white('/images/clock.svg');
  49. }
  50. .inactive button.clock {
  51. @include header-icon-black('/images/clock.svg');
  52. }
  53. button.hamburger {
  54. @include header-icon-white('/images/menu.svg');
  55. }
  56. .inactive button.hamburger {
  57. @include header-icon-black('/images/menu.svg');
  58. }
  59. button.back {
  60. @include header-icon-white('/images/back.svg');
  61. }
  62. .inactive button.back {
  63. @include header-icon-black('/images/back.svg');
  64. }
  65. }