~ubuntu-branches/ubuntu/wily/acl2/wily

« back to all changes in this revision

Viewing changes to doc/manual/lib/jquery.powertip.css

  • Committer: Package Import Robot
  • Author(s): Camm Maguire
  • Date: 2015-01-16 10:35:45 UTC
  • mfrom: (3.3.26 sid)
  • Revision ID: package-import@ubuntu.com-20150116103545-prehe9thgo79o8w8
Tags: 7.0-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* PowerTip Plugin */
2
 
#powerTip {
3
 
        cursor: default;
4
 
        background-color: #333;
5
 
        background-color: rgba(0, 0, 0, 0.8);
6
 
        border-radius: 6px;
7
 
        color: #fff;
8
 
        display: none;
9
 
        padding: 10px;
10
 
        position: absolute;
11
 
        z-index: 2147483647;
12
 
        width: 400px;
13
 
}
14
 
#powerTip:before {
15
 
        content: "";
16
 
        position: absolute;
17
 
}
18
 
#powerTip.n:before, #powerTip.s:before {
19
 
        border-right: 5px solid transparent;
20
 
        border-left: 5px solid transparent;
21
 
        left: 50%;
22
 
        margin-left: -5px;
23
 
}
24
 
#powerTip.e:before, #powerTip.w:before {
25
 
        border-bottom: 5px solid transparent;
26
 
        border-top: 5px solid transparent;
27
 
        margin-top: -5px;
28
 
        top: 50%;
29
 
}
30
 
#powerTip.n:before {
31
 
        border-top: 10px solid #333;
32
 
        border-top: 10px solid rgba(0, 0, 0, 0.8);
33
 
        bottom: -10px;
34
 
}
35
 
#powerTip.e:before {
36
 
        border-right: 10px solid #333;
37
 
        border-right: 10px solid rgba(0, 0, 0, 0.8);
38
 
        left: -10px;
39
 
}
40
 
#powerTip.s:before {
41
 
        border-bottom: 10px solid #333;
42
 
        border-bottom: 10px solid rgba(0, 0, 0, 0.8);
43
 
        top: -10px;
44
 
}
45
 
#powerTip.w:before {
46
 
        border-left: 10px solid #333;
47
 
        border-left: 10px solid rgba(0, 0, 0, 0.8);
48
 
        right: -10px;
49
 
}
50
 
#powerTip.ne:before, #powerTip.se:before {
51
 
        border-right: 10px solid transparent;
52
 
        border-left: 0;
53
 
        left: 10px;
54
 
}
55
 
#powerTip.nw:before, #powerTip.sw:before {
56
 
        border-left: 10px solid transparent;
57
 
        border-right: 0;
58
 
        right: 10px;
59
 
}
60
 
#powerTip.ne:before, #powerTip.nw:before {
61
 
        border-top: 10px solid #333;
62
 
        border-top: 10px solid rgba(0, 0, 0, 0.8);
63
 
        bottom: -10px;
64
 
}
65
 
#powerTip.se:before, #powerTip.sw:before {
66
 
        border-bottom: 10px solid #333;
67
 
        border-bottom: 10px solid rgba(0, 0, 0, 0.8);
68
 
        top: -10px;
69
 
}
70
 
#powerTip.nw-alt:before, #powerTip.ne-alt:before,
71
 
#powerTip.sw-alt:before, #powerTip.se-alt:before {
72
 
        border-top: 10px solid #333;
73
 
        border-top: 10px solid rgba(0, 0, 0, 0.8);
74
 
        bottom: -10px;
75
 
        border-left: 5px solid transparent;
76
 
        border-right: 5px solid transparent;
77
 
        left: 10px;
78
 
}
79
 
#powerTip.ne-alt:before {
80
 
        left: auto;
81
 
        right: 10px;
82
 
}
83
 
#powerTip.sw-alt:before, #powerTip.se-alt:before {
84
 
        border-top: none;
85
 
        border-bottom: 10px solid #333;
86
 
        border-bottom: 10px solid rgba(0, 0, 0, 0.8);
87
 
        bottom: auto;
88
 
        top: -10px;
89
 
}
90
 
#powerTip.se-alt:before {
91
 
        left: auto;
92
 
        right: 10px;
93
 
}