-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcss-threaded-comments.css
More file actions
143 lines (120 loc) · 2.26 KB
/
css-threaded-comments.css
File metadata and controls
143 lines (120 loc) · 2.26 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
.upp-comments {
margin: 40px 0
}
.upp-comment {
margin: 40px 0;
}
.upp-comments > .upp-comment {}
.upp-com-auth {
display: flex;
justify-content: flex-start;
align-items: center;
margin: 20px 0;
}
.upp-com-auth .img-person,
.upp-com-auth-name,
.upp-com-auth-ts {
margin-right: 15px;
}
.upp-com-auth-ts {
color: #777;
font-size: 0.9rem;
}
.upp-com-replies {
border-left: 2px solid #dedede;
padding: 0 0 0 25px;
margin: 20px 0 0 40px;
}
/* Comment Box */
.upp-comment-box {
padding-top: 10px;
display: flex;
}
.upp-comment-box-avatar {
min-width: 64px;
}
.upp-comment-box-avatar img,
.upp-comment-box-avatar a {
padding: 0;
}
.upp-comment-box-avatar img {
width: 46px;
height: 46px;
object-fit: cover;
border-radius: 50%;
margin: 5px 15px 0 0;
}
.upp-comment-box-comm {
width: 100%;
display: flex;
flex-direction: column;
border: 1px solid #dedede
}
.upp-comment-box-comm-ent {
width: 100%
}
.upp-comment-box-comm-ent-ta {
width: 100%;
min-height: 50px;
max-height: 100px;
cursor: text;
box-sizing: border-box;
border-radius: 0;
line-height: 1.25rem;
padding: 15px;
margin: 0;
border: none;
box-shadow: none;
background-color: transparent;
resize: none;
outline: none;
}
.upp-comment-box-comm-ent-ta:focus {
resize: none;
outline: none;
border: none;
box-shadow: none;
}
.upp-comment-box-comm-actions {
width: 100%;
border-top: 1px solid #eee;
display: flex;
justify-content: space-between;
align-items: center;
}
.upp-comment-box-comm-actions-meta {
padding: 5px 10px;
color: #777;
}
.upp-comment-box-comm-word-count {
font-size: 0.9rem;
padding-right: 10px;
}
.upp-comment-box-comm-actions-action {
display: flex;
justify-content: space-between;
align-items: center;
padding: 2px 10px;
}
.upp-img-person {
width: 42px;
height: 42px;
min-width: 42px;
min-height: 42px;
border-radius: 50%;
object-fit: cover !important;
margin-right: 10px;
}
.upp-btn {
background: #0190D4;
color: #FFF;
padding: 5px 10px;
text-decoration: none;
cursor: pointer;
}
.upp-btn:hover {
opacity: 0.9;
}
.upp-small {
font-size: 0.9rem;
}