thread.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. @import '_variables';
  2. @import '_mixins';
  3. .conversation {
  4. @include panel(100%, 600px);
  5. background-color: $bg_color !important;
  6. }
  7. .main-thread {
  8. margin-bottom: 20px;
  9. background-color: $bg_panel;
  10. }
  11. .main-tweet .status-content {
  12. font-size: 20px;
  13. }
  14. .reply {
  15. background-color: $bg_panel;
  16. margin-bottom: 10px;
  17. }
  18. .thread-line {
  19. .status-el::before {
  20. background: $accent_dark;
  21. content: '';
  22. position: relative;
  23. min-width: 3px;
  24. width: 3px;
  25. left: 26px;
  26. border-radius: 2px;
  27. margin-left: -3px;
  28. margin-bottom: 37px;
  29. top: 56px;
  30. }
  31. .unavailable::before {
  32. top: 48px;
  33. margin-bottom: 28px;
  34. }
  35. .more-replies::before {
  36. content: '...';
  37. background: unset;
  38. color: $more_replies_dots;
  39. font-weight: bold;
  40. font-size: 20px;
  41. line-height: 0.25em;
  42. left: 1.2em;
  43. width: 5px;
  44. top: 2px;
  45. margin-bottom: 0;
  46. margin-left: -5px;
  47. }
  48. }
  49. .thread-last .status-el::before {
  50. background: unset;
  51. min-width: unset;
  52. width: 0;
  53. margin: 0;
  54. }
  55. .more-replies {
  56. padding-top: 0.3em !important;
  57. }
  58. .more-replies-text {
  59. @include ellipsis;
  60. display: block;
  61. margin-left: 58px;
  62. padding: 7px 0;
  63. }