_comments.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. #site-main > #isso-thread {
  2. margin-top: 3em;
  3. font-size: 1em;
  4. > h4 {
  5. color: var(--c-txt);
  6. }
  7. #isso-root {
  8. display: flex;
  9. flex-direction: column-reverse;
  10. }
  11. .isso-comment {
  12. border-color: var(--c-bg-alt);
  13. clear: both;
  14. }
  15. .isso-postbox {
  16. max-width: unset;
  17. margin-bottom: 1em;
  18. }
  19. .isso-preview {
  20. color: #545250;
  21. }
  22. .isso-textarea {
  23. min-height: 5em;
  24. border-radius: 0;
  25. border-color: transparent;
  26. color: var(--c-txt);
  27. background-color: var(--c-bg-alt);
  28. box-shadow: none;
  29. }
  30. .isso-input-wrapper {
  31. > label {
  32. font-size: .85em;
  33. color: var(--c-txt-alt);
  34. }
  35. > input {
  36. width: 100%;
  37. background-color: var(--c-bg-alt);
  38. line-height: unset;
  39. border: 1px solid var(--c-bg);
  40. border-radius: 0;
  41. box-shadow: none;
  42. }
  43. }
  44. .isso-post-action > input {
  45. margin-top: .2em;
  46. padding: .4em;
  47. border-radius: 0;
  48. border-color: var(--c-bg-alt);
  49. color: var(--c-txt);
  50. background: transparent;
  51. box-shadow: none;
  52. &:hover {
  53. border-color: $accent;
  54. }
  55. &:active {
  56. border-style: dashed;
  57. }
  58. }
  59. .isso-notification-section > label {
  60. font-size: .8em;
  61. color: var(--c-txt-alt);
  62. vertical-align: middle;
  63. &> input {
  64. margin-right: .5em;
  65. }
  66. }
  67. .isso-avatar {
  68. margin-top: 1.3em;
  69. margin-left: 0;
  70. > img {
  71. max-width: 2.5em;
  72. height: auto;
  73. border-radius: 50%;
  74. }
  75. }
  76. .isso-text {
  77. text-align: initial;
  78. }
  79. .isso-comment-footer {
  80. text-align: right;
  81. > .isso-downvote {
  82. display: none;
  83. }
  84. }
  85. a {
  86. border: none;
  87. &:hover {
  88. color: $accent!important;
  89. }
  90. }
  91. .isso-author {
  92. color: var(--c-txt);
  93. }
  94. a.isso-author {
  95. border-bottom: 1px solid var(--c-bg-alt);
  96. &:hover {
  97. color: $accent!important;
  98. }
  99. }
  100. }