forked from nbdd0121/MW-FlowThread
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanage.css
executable file
·86 lines (69 loc) · 1.51 KB
/
manage.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
.comment-avatar {
float: left;
cursor: pointer;
}
.comment-thread {
border-top: 1px solid rgba(0, 0, 0, 0.13);
}
.comment-post {
padding: 10px;
}
.comment-container {
margin-top: 1em;
}
.comment-body {
padding-left: 60px;
}
.comment-user, .comment-user a {
color: #777;
font-size: 13px;
}
.comment-text {
font-size: 13px;
line-height: 1.5em;
margin: 0.5em 0px;
word-wrap: break-word;
/* Added to guard against malacious position:absolute */
position: relative;
overflow: hidden;
min-height: 1em;
}
.comment-footer {
font-size: 12px;
margin-right: 8px;
color: #999;
}
.comment-like, .comment-report, .comment-delete, .comment-recover, .comment-markchecked {
margin-left: 5px;
}
.comment-delete, .comment-recover, .comment-markchecked {
cursor: pointer;
transition: color 0.15s linear 0s;
}
.comment-like::before {
background-position: 0px -14px;
}
.comment-report::before {
background-position: 0px -50px;
}
.comment-delete::before {
background-position: 0px -40px;
}
.comment-recover::before {
background-position: 0px 0px;
}
.comment-like:hover::before, .comment-report:hover::before, .comment-delete:hover::before, .comment-recover:hover::before {
opacity: 1.0;
}
.comment-report:hover, .comment-like:hover, .comment-delete:hover, .comment-recover:hover {
opacity: 1.0;
color: #555;
}
.comment-avatar img {
width: 50px;
height: 50px;
}
.comment-selected {
padding-left: 1em;
background: lightblue;
}