mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CategoryTree
synced 2024-11-16 12:42:26 +00:00
026cc40790
* Implemented memcached caching for ajax requests with invalidation via page_touched * General refactoring, moved some global functions into a class * Lazy initialisation of messages, initialise the <head> section in the output only when a categorytree tag is present. * Eliminated all $wgUser and $wgLang accesses from ajax requests, using message placeholders. * Added speak:none style in .CategoryTreeBullet in case voice browsers try to read out the punctuation
44 lines
752 B
CSS
44 lines
752 B
CSS
/*
|
|
* Stylesheet for the CategoryTree extension, an AJAX based gadget
|
|
* to display the category structure of a wiki
|
|
*
|
|
* @package MediaWiki
|
|
* @subpackage Extensions
|
|
* @author Daniel Kinzler <duesentrieb@brightbyte.de>
|
|
* @copyright © 2006 Daniel Kinzler
|
|
* @licence GNU General Public Licence 2.0 or later
|
|
*/
|
|
|
|
.CategoryTreeChildren {
|
|
margin-left: 1.5ex;
|
|
}
|
|
|
|
.CategoryTreeBullet a:link {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
font-weight: bold;
|
|
speak: none;
|
|
}
|
|
|
|
.CategoryTreeLabelPage {
|
|
font-style: italic;
|
|
}
|
|
|
|
.CategoryTreeParents {
|
|
margin-top: 1.5ex;
|
|
font-style: italic;
|
|
}
|
|
|
|
.CategoryTreeResult {
|
|
margin-top: 1.5ex;
|
|
}
|
|
|
|
.CategoryTreeTag {
|
|
margin-top: 0.5ex;
|
|
margin-bottom: 0.5ex;
|
|
}
|
|
|
|
.CategoryTreeNotice {
|
|
font-style: italic;
|
|
}
|