_comments.scss 1.9 KB

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