-
Notifications
You must be signed in to change notification settings - Fork 1
/
tooltip.css
59 lines (58 loc) · 1.46 KB
/
tooltip.css
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* Copyright 2012 Google Inc. All Rights Reserved. */
.google-visualization-tooltip-action: hover {
background-color: #eeeeee;
}
.google-visualization-tooltip {
border:solid 1px #bdbdbd;
border-radius: 2px;
background-color: white;
position: absolute;
box-shadow: 0px 2px 2px 0px rgba(204, 204, 204, 0.6);
font-size: 12px;
padding: 0px;
-moz-box-shadow: 0px 2px 2px 0px rgba(204, 204, 204, 0.6);
-webkit-box-shadow: 0px 2px 2px 0px rgba(204, 204, 204, 0.6);
}
.google-visualization-tooltip-action-list {
list-style-type: none;
margin: 0;
padding: 0.5em 0em 0.5em 0em;
cursor: hand;
}
.google-visualization-tooltip-action {
margin: 0;
cursor: pointer;
padding: 0.5em 2em 0.5em 1em;
}
.google-visualization-tooltip-action:hover {
background-color: #eeeeee;
}
.google-visualization-tooltip-item-list {
list-style-type: none;
margin: 1em 0 1em 0;
padding: 0em;
}
.google-visualization-tooltip-item {
margin: 0.65em 0em 0.65em 0em;
padding: 0em 2em 0em 1em;
}
.google-visualization-tooltip-item-list
.google-visualization-tooltip-item:first-child {
margin: 1em 0em 1em 0em;
}
.google-visualization-tooltip-separator {
margin: 0;
padding: 0;
height: 1px;
background-color: #dddddd;
}
.google-visualization-tooltip-square {
display: inline-block;
/* IE does not support inline-block fall back to float left */
float: left\9;
clear: none;
width: 0.5em;
height: 0.5em;
margin: 0.16em 0.7em 0em 0em;
border-bottom: solid 0.1em white;
}