jquery.ui.tooltip.css

/*!
 * jQuery UI Tooltip @VERSION
 *
 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 */
.ui-tooltip {
	padding:8px;
	position:absolute;
	z-index:9999;
	-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; }

File

drupal/core/misc/ui/themes/base/jquery.ui.tooltip.css
View source
  1. /*!
  2. * jQuery UI Tooltip @VERSION
  3. *
  4. * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
  5. * Dual licensed under the MIT or GPL Version 2 licenses.
  6. * http://jquery.org/license
  7. */
  8. .ui-tooltip {
  9. padding:8px;
  10. position:absolute;
  11. z-index:9999;
  12. -o-box-shadow: 0 0 5px #aaa;
  13. -moz-box-shadow: 0 0 5px #aaa;
  14. -webkit-box-shadow: 0 0 5px #aaa;
  15. box-shadow: 0 0 5px #aaa;
  16. }
  17. /* Fades and background-images don't work well together in IE6, drop the image */
  18. * html .ui-tooltip {
  19. background-image: none;
  20. }
  21. body .ui-tooltip { border-width:2px; }