-
Notifications
You must be signed in to change notification settings - Fork 29
/
inlineDisqussions.css
97 lines (93 loc) · 1.77 KB
/
inlineDisqussions.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
88
89
90
91
92
93
94
95
96
97
.disqussion {
padding: 5px 10px 10px;
position: absolute;
top: 0;
left: 0;
line-height: 16px;
font-size: 13px;
font-weight: bold;
font-family: sans-serif;
text-align: center;
z-index: 7;
}
.disqussion a {
opacity: 0;
display: block;
overflow: hidden;
width: 20px;
height: 17px;
color: white;
text-decoration: none;
cursor: pointer;
background: #bbbbbb;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
}
.disqussion a.has-comments {
opacity: .8;
}
.disqussion-contain:hover .disqussion a {
opacity: 1;
}
.disqussion a:after {
border-left: 7px solid transparent;
border-top: 7px solid #bbbbbb;
left: 19px;
top: 22px;
height: 0;
width: 0;
display: block;
content: " ";
position: absolute;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
}
.disqussion:hover a, .disqussion.hovered a {
opacity: 1;
background: #999999;
}
.disqussion:hover a:after, .disqussion.hovered a:after {
border-top-color: #999999;
}
#disqussions_wrapper {
position: absolute;
top: 0;
left: 0;
}
#disqus_thread.positioned {
position: absolute;
top: 0;
left: 0;
padding: 5px 15px 0 15px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.disqussion-highlight #disqus_thread.positioned {
background: #fff;
z-index: 9;
}
#disqussions_overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 8;
display: none;
}
.disqussion-highlighted {
position: relative;
background: #fff;
z-index: 9;
}