1
0

style.css 898 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. .slack-context {
  6. display: inline-block;
  7. position: absolute;
  8. top: 0;
  9. bottom: 0;
  10. left: 0;
  11. width: 250px;
  12. overflow-x: hidden;
  13. overflow-y: scroll;
  14. }
  15. .slack-chat-container {
  16. display: inline-block;
  17. position: absolute;
  18. top: 0;
  19. bottom: 0;
  20. left: 250px;
  21. right: 0;
  22. }
  23. .slack-context-room.selected {
  24. background-color: lightgrey;
  25. }
  26. .slack-chat-content { height: 85vh; overflow: auto; }
  27. .slack-chat-title { font-size: 1.75em; font-style: italic; }
  28. .slackmsg-item { position: relative; background: #eee; margin-top: 15px; }
  29. .slackmsg-author { display: inline-block; }
  30. .slackmsg-author-img { margin-right: 15px; }
  31. .slackmsg-author-name { position: absolute; max-height: 1em; overflow: hidden; font-style: italic; }
  32. .slackmsg-msg { display: inline-block; vertical-align: top; margin-top: 1em; }
  33. .slackmsg-ts {}