mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-14 11:15:33 +00:00
f68dab62a6
As we continue to live with software like 2010 wikitext editor for a chunk of our users in foreseeable future, let's at least remove some obsolete code sent down the wire. Note that I haven't touched this code as part of If51f20137a00, but when thinking about this again while doing a final code search it seems appropriate to remove this the highly customized code here in contrast to normal 'library' styles. Bug: T258766 Change-Id: Id4993dcb5b5be6a399800d9c07e26ebe145a8372
18 lines
339 B
CSS
18 lines
339 B
CSS
/*!
|
|
* jQuery UI Tooltip 1.9.2
|
|
* http://jqueryui.com
|
|
*
|
|
* Copyright 2012 jQuery Foundation and other contributors
|
|
* Released under the MIT license.
|
|
* http://jquery.org/license
|
|
*/
|
|
.ui-tooltip {
|
|
padding: 8px;
|
|
position: absolute;
|
|
z-index: 9999;
|
|
max-width: 300px;
|
|
box-shadow: 0 0 5px #aaa;
|
|
}
|
|
|
|
body .ui-tooltip { border-width: 2px; }
|