_comments.scss 1.9 KB

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