Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/*
2
 * jQuery Tooltip plugin 1.3
3
 *
4
 * http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/
5
 * http://docs.jquery.com/Plugins/Tooltip
6
 *
7
 * Copyright (c) 2006 - 2008 Jörn Zaefferer
8
 *
9
 * $Id$
10
 *
11
 * Dual licensed under the MIT and GPL licenses:
12
 *   http://www.opensource.org/licenses/mit-license.php
13
 *   http://www.gnu.org/licenses/gpl.html
14
 */
15
 
16
 #tooltip {
17
	position: absolute;
18
	z-index: 3000;
19
	border: 1px solid #111;
20
	background-color: lightyellow;
21
	padding: 5px;
22
	opacity: 0.9;
23
}
24
#tooltip h3, #tooltip div { margin: 0; }