`Element.scrollTo()` is not standardized
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / style / ui / comment.scss
1 .commentList {
2 > li {
3 &:hover {
4 background-color: transparent;
5
6 .buttonGroupNavigation {
7 opacity: 0;
8 }
9 }
10 }
11
12 .commentContent {
13 &:hover {
14 .buttonGroupNavigation {
15 opacity: 1;
16 }
17 }
18
19 + .commentOptionContainer {
20 .commentResponseAdd {
21 border-top: 1px solid $wcfContentBorderInner;
22 padding-top: 20px;
23 margin-top: 20px;
24 }
25 }
26
27 .wcfLikeCounter {
28 @include wcfFontSmall;
29 }
30 }
31
32 .commentResponseList {
33 &:not(:empty) {
34 margin-top: 20px;
35 }
36
37 > li {
38 &:first-child,
39 &:last-child {
40 border-color: $wcfContentBorderInner;
41 }
42 }
43 }
44
45 .commentOptionContainer {
46 margin-top: 10px;
47 }
48
49 .commentResponseAdd {
50 padding: 10px 20px 0 20px;
51 }
52
53 textarea + button {
54 margin-top: 2px;
55 }
56 }