tizen beta release
[framework/web/webkit-efl.git] / debian / tmp / usr / share / ewebkit-0 / webinspector / popover.css
1 .popover {
2     position: absolute;
3     -webkit-border-image: url(Images/popoverBackground.png) 25 25 25 25;
4     border-width: 25px;
5     z-index: 100;
6     pointer-events: none;
7 }
8
9 .popover .content {
10     position: absolute;
11     top: 0;
12     bottom: 0;
13     left: 0;
14     right: 0;
15     pointer-events: auto;
16     overflow: auto;
17     -webkit-user-select: text;
18 }
19
20 .popover .arrow {
21     position: absolute;
22     background-image: url(Images/popoverArrows.png);
23     width: 19px;
24     height: 19px;
25     margin-left: 15px;
26     margin-top: -25px;
27     top: 0;
28     left: 0;
29 }
30
31 .popover.top-left-arrow .arrow {
32     /* The default is top-left, no styles needed. */
33 }
34
35 .popover.top-right-arrow .arrow {
36     right: 25px;
37     left: auto;
38 }
39
40 .popover.bottom-left-arrow .arrow {
41     top: auto;
42     bottom: 0;
43     margin-top: 0;
44     margin-bottom: -25px;
45     background-position: 0 -19px;
46 }
47
48 .popover.bottom-right-arrow .arrow {
49     right: 15px;
50     left: auto;
51     top: auto;
52     bottom: 0;
53     margin-top: 0;
54     margin-bottom: -25px;
55     background-position: 0 -19px;
56 }
57
58 .popover.left-top-arrow .arrow {
59     top: 0;
60     margin-top: 15px;
61     margin-left: -25px;
62     background-position: 0 -38px;
63 }
64
65 .popover.left-bottom-arrow .arrow {
66     top: auto;
67     bottom: 0;
68     margin-bottom: 15px;
69     margin-left: -25px;
70     background-position: 0 -38px;
71 }
72
73 .popover.right-top-arrow .arrow {
74     right: 0;
75     left: auto;
76     top: 0;
77     margin-top: 15px;
78     margin-right: -25px;
79     background-position: 0 -57px;
80 }
81
82 .popover.right-bottom-arrow .arrow {
83     right: 0;
84     left: auto;
85     top: auto;
86     bottom: 0;
87     margin-bottom: 15px;
88     margin-right: -25px;
89     background-position: 0 -57px;
90 }