2012-02-27 00:49:51 +00:00
|
|
|
/*!
|
2011-01-11 02:44:25 +00:00
|
|
|
* jQuery UI Tooltip @VERSION
|
2012-07-04 13:08:08 +00:00
|
|
|
* http://jqueryui.com
|
2011-01-11 02:44:25 +00:00
|
|
|
*
|
2012-07-04 13:08:08 +00:00
|
|
|
* Copyright 2012 jQuery Foundation and other contributors
|
2012-08-09 14:13:24 +00:00
|
|
|
* Released under the MIT license.
|
2011-01-11 02:44:25 +00:00
|
|
|
* http://jquery.org/license
|
|
|
|
*/
|
2010-04-08 21:21:47 +00:00
|
|
|
.ui-tooltip {
|
2010-04-08 21:41:49 +00:00
|
|
|
padding:8px;
|
|
|
|
position:absolute;
|
|
|
|
z-index:9999;
|
2010-04-08 21:21:47 +00:00
|
|
|
-o-box-shadow: 0 0 5px #aaa;
|
|
|
|
-moz-box-shadow: 0 0 5px #aaa;
|
|
|
|
-webkit-box-shadow: 0 0 5px #aaa;
|
|
|
|
box-shadow: 0 0 5px #aaa;
|
|
|
|
}
|
|
|
|
/* Fades and background-images don't work well together in IE6, drop the image */
|
|
|
|
* html .ui-tooltip {
|
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
body .ui-tooltip { border-width:2px; }
|