Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 523799e9cb8edbcf2f08ea9ed4ad784849276f0c (plain) (blame)
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
.hidden_tooltip {
  display: none;
}

span.visible_tooltip {
  display: block;
  position: absolute;
  top: 10px;
  left: 21px;
  width: 300px;
  font-size: 9px;;
  padding-left: 5px;
  padding-right: 5px;
  border: 1px solid black;
  background-color: #FFFFCC;
  text-decoration: none;
  color: #000000;
  z-index: 10;
}

a {
  text-decoration: none;
}

span {z-index =100;
  
}

img,table {
  z-index: 1;
}

.tooltipSource {
  position: relative;
}

Back to the top