Plugin UnivBristol by Frederic Francois
[myslice.git] / plugins / univbristopo / static / css / tooltip.css
1 .tooltip {
2         background-color: #c5cfd8; /*#b0c4ff;*/
3         border: 1px solid #9fa4a8;
4         border-radius: 6px;
5         /* color: #fff; */
6         display: none;
7         font-size: .9em;
8         max-width: 400px;
9         min-width: 250px;
10         padding: 10px 10px;
11         text-align: left;
12         /*opacity: 0.85;*/
13         /* outline radius for mozilla/firefox only */
14         -moz-box-shadow:0 0 2px #132c60;
15         -webkit-box-shadow:0 0 2px #132c60;
16         -moz-border-radius: 6px;
17         -webkit-border-radius: 6px;
18         /* IE 8 */
19         /*-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";*/
20         /* IE 5-7 */
21         /*filter: alpha(opacity=85);*/
22         /* Netscape */
23         /*-moz-opacity: 0.85;*/
24         /* Safari 1.x */
25         /*-khtml-opacity: 0.85;*/
26 }
27 .tooltiptable {
28         border: none;
29         border-collapse: collapse;
30 }
31 .tooltiptable tbody td,
32 .tooltipable tbody th {
33         border: none;
34         border-collapse: collapse;
35 }
36 /* Separate 1st row (th) from 2nd (td) */
37 .tooltiptable tbody th {
38         padding-right: 5px;
39 }
40
41 /* Links*/
42 .tooltip a {
43         /*color: #fff;*/
44         text-decoration: underline;
45 }
46 .tooltip a:hover {
47         text-decoration: none;
48 }
49