-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstyles.css
87 lines (69 loc) · 1.2 KB
/
styles.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
87
.mark_all_read img {
//border: 1px solid white;
position: relative;
top: 2px;
}
.mark_all_read img:hover {
cursor: pointer;
box-shadow: 1px 1px 9px black;
}
.hide_news_span {
position: relative;
top: -4px;
font-size: 10px;
}
.hide_comments_span {
position: relative;
font-size: 10px;
}
.near_more {
position: relative;
top: 2px;
}
#parent_div {
position: absolute;
bottom: 100%;
background-color: white;
border: 1px solid #ddd;
border-radius: 3px;
padding: 3px;
}
.read_comment_td {
background-color: #EBEBE4;
}
.unread_comment_td {
}
.comment_collapse {
width: 20px;
height: 15px;
position: absolute;
top: 30px;
left: -20px;
font-family: monospace;
font-size: 10px;
font-weight: bold;
text-align: center;
}
.comment_collapse:hover {
cursor: pointer;
}
#parent_div .comment_collapse {
display: none;
}
.collapsible_comment {
position: relative;
}
.collapsible_collapsed .comment_collapse {
color: green;
}
.clickable:hover {
cursor: pointer;
}
#expand_collapse_top {
padding-left: 27px;
position: relative;
top: -3px;
}
#post_comments_tr {
padding-left: 10px;
}