forked from juggy/jquery-popover
-
Notifications
You must be signed in to change notification settings - Fork 8
/
jquery.popover.css
86 lines (86 loc) · 2.98 KB
/
jquery.popover.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
/* line 5, ../../app/stylesheets/popover.scss */
.popover {
position: absolute;
display: none;
opacity: 0;
cursor: auto;
color: black;
background-color: white;
border: 3px solid black;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
-ms-border-radius: 4px;
-khtml-border-radius: 4px;
border-radius: 4px;
-moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
-o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
-moz-transition-property: opacity;
-webkit-transition-property: opacity;
-o-transition-property: opacity;
transition-property: opacity;
-moz-transition-duration: 0.25s;
-webkit-transition-duration: 0.25s;
-o-transition-duration: 0.25s;
transition-duration: 0.25s;
-moz-transition-timing-function: linear;
-webkit-transition-timing-function: linear;
-o-transition-timing-function: linear;
transition-timing-function: linear;
}
/* line 17, ../../app/stylesheets/popover.scss */
.popover.active {
opacity: 1;
}
/* line 21, ../../app/stylesheets/popover.scss */
.popover > .triangle {
position: absolute;
width: 0px;
border-bottom: 20px solid transparent;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-top: 20px solid transparent;
}
/* line 29, ../../app/stylesheets/popover.scss */
.popover > .triangle.top {
bottom: -40px;
border-top: 20px solid black;
}
/* line 34, ../../app/stylesheets/popover.scss */
.popover > .triangle.bottom {
top: -40px;
border-bottom: 20px solid black;
}
/* line 39, ../../app/stylesheets/popover.scss */
.popover > .triangle.left {
right: -40px;
border-left: 20px solid black;
}
/* line 44, ../../app/stylesheets/popover.scss */
.popover > .triangle.right {
left: -40px;
border-right: 20px solid black;
}
/* line 50, ../../app/stylesheets/popover.scss */
.popover > .header {
font-weight: bold;
margin: 0;
padding: 3px;
height: 1.25em;
color: white;
background-color: black;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, rgba(255, 255, 255, 0.4)), color-stop(50%, rgba(255, 255, 255, 0.2)), color-stop(50%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 0)));
background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.4) 20%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.4) 20%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
background-image: -o-linear-gradient(rgba(255, 255, 255, 0.4) 20%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
background-image: linear-gradient(rgba(255, 255, 255, 0.4) 20%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
text-align: center;
}
/* line 64, ../../app/stylesheets/popover.scss */
.popover > .content {
min-width: 15em;
overflow-x: hidden;
overflow-y: auto;
}