| 1 | /** |
| 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. |
| 3 | * |
| 4 | * This source code is licensed under the MIT license found in the |
| 5 | * LICENSE file in the root directory of this source tree. |
| 6 | */ |
| 7 | |
| 8 | .comment-collapsable { |
| 9 | padding: 10px; |
| 10 | } |
| 11 | |
| 12 | .comment-collapsible-title { |
| 13 | display: flex; |
| 14 | gap: 10px; |
| 15 | } |
| 16 | |
| 17 | .comment-count { |
| 18 | font-size: 90%; |
| 19 | align-items: center; |
| 20 | display: flex; |
| 21 | gap: 2px; |
| 22 | width: 100%; |
| 23 | } |
| 24 | |
| 25 | .comment-content-container { |
| 26 | margin: 0 20px; |
| 27 | } |
| 28 | |
| 29 | .comment-list { |
| 30 | display: flex; |
| 31 | flex-direction: column; |
| 32 | gap: 16px; |
| 33 | } |
| 34 | |
| 35 | .comment-container { |
| 36 | display: flex; |
| 37 | gap: 4px; |
| 38 | flex-direction: column; |
| 39 | } |
| 40 | |
| 41 | .comment-header { |
| 42 | font-size: 90%; |
| 43 | } |
| 44 | |
| 45 | .comment-link { |
| 46 | cursor: pointer; |
| 47 | } |
| 48 | |
| 49 | .comment-body { |
| 50 | line-clamp: 2; |
| 51 | -webkit-line-clamp: 2; |
| 52 | display: -webkit-box; |
| 53 | -webkit-box-orient: vertical; |
| 54 | overflow: hidden; |
| 55 | } |
| 56 | |