-
Notifications
You must be signed in to change notification settings - Fork 4
/
comment.css
57 lines (56 loc) · 998 Bytes
/
comment.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
/* Comment extension, https://github.com/GiovanniSalmeri/yellow-comment */
.comment {
clear:both;
margin-bottom: 1em;
padding: 0.5em;
background-color: #f7f7f7;
border-radius: 3px;
}
.comment-icon {
float: left;
margin-right: 1em;
}
.comment-message {
display: none;
}
input:focus, textarea:focus {
background-color: #FFFFCC;
}
.comment-name, .comment-date {
display: inline;
}
.comment-name {
font-weight: bold;
}
.comment-info {
font-size: 0.85em;
}
form div {
margin-bottom: 0.5em;
}
.separate {
margin-bottom: 2em;
}
.comment-main {
display: table-cell;
}
.comment-icon {
display: table-cell;
}
.comment-form .form-control {
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.incomplete, .invalid, .error {
color: red;
font-weight: bold;
}
.none, .done, .closed {
font-weight: bold;
}
.comment-charcount {
display: block;
text-align: right;
}