File: tooltip.css

package info (click to toggle)
brewtarget 4.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 35,468 kB
  • sloc: cpp: 56,958; xml: 19,031; python: 1,266; sh: 183; makefile: 11
file content (36 lines) | stat: -rw-r--r-- 529 bytes parent folder | download | duplicates (5)
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
#tooltip
{
   border-collapse:collapse;
   width:100%;
   empty-cells:hide;
}
#tooltip td
{
   border: 0px solid white;
   padding: 0px 0px 0px 0px;
   empty-cells:show;
}
#tooltip th
{
   border: 0px solid white;
   padding: 0px 0px 0px 0px;
   font-weight:bold;
   text-align:left;
   empty-cells:show;
}
#tooltip caption 
{ 
    caption-side:bottom; 
    text-align: center;
    font-weight:bold;
}
#tooltip td.left
{
   font-weight:bold;
   text-align:left;
}
#tooltip td.value
{
   font-weight:normal;
   text-align:left;
}