Ticket #52380: 52380.diff
File 52380.diff, 1.9 KB (added by , 3 years ago) |
---|
-
comments.scss
2 2 * Comments Wrapper 3 3 */ 4 4 .comments-area { 5 6 5 > * { 7 6 margin-top: var(--global--spacing-vertical); 8 7 margin-bottom: var(--global--spacing-vertical); … … 17 16 } 18 17 19 18 &.show-avatars { 20 21 19 .avatar { 22 20 border-radius: 50%; 23 21 position: absolute; … … 32 30 .comment-metadata { 33 31 padding: 8px 0 9px 85px; 34 32 } 35 36 33 } 37 34 } 38 35 … … 51 48 justify-content: space-between; 52 49 53 50 small { 54 55 51 a { 56 52 font-family: var(--global--font-secondary); 57 53 font-size: var(--global--font-size-xs); … … 78 74 margin-top: var(--global--spacing-vertical); 79 75 margin-bottom: var(--global--spacing-vertical); 80 76 } 81 82 77 } 83 78 84 79 .comment-list .children { … … 89 84 margin-top: var(--global--spacing-vertical); 90 85 margin-bottom: var(--global--spacing-vertical); 91 86 } 92 93 87 } 94 88 95 89 .comment-list .depth-2, … … 103 97 * Comment Meta 104 98 */ 105 99 .comment-meta { 106 107 100 .comment-author { 108 101 line-height: var(--global--line-height-heading); 109 102 margin-bottom: calc(0.25 * var(--global--spacing-unit)); … … 121 114 word-wrap: break-word; 122 115 word-break: break-word; 123 116 } 124 125 117 } 126 118 127 119 .comment-metadata { … … 132 124 .edit-link { 133 125 margin-left: var(--global--spacing-horizontal); 134 126 } 135 136 127 } 137 128 138 129 @include media(mobile) { … … 177 168 } 178 169 } 179 170 180 .comment-content a { 171 .comment-content a, 172 .comment-content p { 181 173 word-wrap: break-word; 182 174 } 183 175 … … 269 261 textarea { 270 262 display: block; 271 263 font-size: var(--global--font-size-sm); 272 margin-bottom: calc( .5 * var(--global--spacing-unit));264 margin-bottom: calc(0.5 * var(--global--spacing-unit)); 273 265 width: 100%; 274 266 font-weight: var(--form--label-weight); 275 267 } … … 279 271 } 280 272 281 273 @include media(mobile) { 282 283 274 &.comment-form-author { 284 275 margin-right: calc(1.5 * var(--global--spacing-horizontal)); 285 276 }