2011-01-11 02:44:25 +00:00
|
|
|
/*
|
|
|
|
* jQuery UI Tooltip @VERSION
|
|
|
|
*
|
2012-03-08 15:53:08 +00:00
|
|
|
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
2011-01-11 02:44:25 +00:00
|
|
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
|
|
* http://jquery.org/license
|
|
|
|
*
|
|
|
|
* http://docs.jquery.com/UI/Tooltip#theming
|
|
|
|
*/
|
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; }
|