Project

General

Profile

1
/*Tooltip UI component by www.menucool.com */
2

    
3
/*For tooltip target element that has set class="tooltip" */
4
.tooltip {
5
	text-decoration: none;
6
	border-bottom: 2px dotted #36c;
7
	outline: none;
8
}
9

    
10
/*For tooltip box*/
11
div#mcTooltip {
12
	line-height: 16px;
13
	border-width: 1px;
14
	color: #333;
15
	border-color: #BBBBBB;
16
	padding: 20px;
17
	font-size: 12px;
18
	font-family: Verdana, Arial;
19
	border-radius: 6px; /*Rounded corners. N/A for IE 8 and below.*/
20
	box-shadow: 0 1px 4px #AAAAAA; /*Drop shadow. N/A for IE 8 and below.*/
21
}
22

    
23
div#mcTooltip, div#mcTooltip div {
24
	background-color: #fff;
25
}
26

    
27
/* For hyperlink within tooltip */
28
div#mcTooltip a {
29
}
30

    
31
/*Close button. Only available when sticky or overlay has been set to true.*/
32
div#mcttCloseButton {
33
	width: 14px;
34
	height: 14px;
35
	position: absolute;
36
	background-image: url(../../images/tooltip/closeBtn.gif);
37
	cursor: pointer;
38
	overflow: hidden;
39
	top: 12px;
40
	right: 12px;
41
	left: auto;
42
}
43

    
44
/* Only applies when overlay has been set to true or 1.*/
45
div#mcOverlay {
46
	background-color: white;
47
	opacity: 0.8;
48
	filter: alpha(opacity=80);
49
	display: none;
50
	top: 0;
51
	left: 0;
52
	width: 100%;
53
	height: 100%;
54
	overflow: visible;
55
	z-index: 4;
56
}
57

    
58
/*Only available when calling by tooltip.ajax(...). It will be a spinning image indicating a request is in progress.*/
59
div#tooltipAjaxSpin {
60
	margin: 20px 50px;
61
	background: transparent url(../images/tooltip/loading.gif) no-repeat center center;
62
	width: 50px;
63
	height: 30px;
64
	font-size: 0;
65
}
66

    
67
/*The settings below should remain unchanged*/
68
div#mcTooltipWrapper {
69
	position: absolute;
70
	visibility: hidden;
71
	overflow: visible;
72
	z-index: 9999999999;
73
	top: -2000px;
74
}
75

    
76
div#mcTooltip {
77
	float: left;
78
	border-style: solid;
79
	position: relative;
80
	overflow: hidden;
81
}
82

    
83
div#mcttCo {
84
	position: absolute;
85
	text-align: left;
86
}
87

    
88
div#mcttCo em, div#mcttCo b {
89
	display: block;
90
	width: 0;
91
	height: 0;
92
	overflow: hidden;
93
}
(1-1/2)