2006-07-26 17:12:30 +00:00
|
|
|
/*
|
2008-02-04 09:22:12 +00:00
|
|
|
* Stylesheet for the CategoryTree extension, an AJAX based gadget
|
2006-07-26 17:12:30 +00:00
|
|
|
* to display the category structure of a wiki
|
|
|
|
*
|
2010-06-06 15:12:22 +00:00
|
|
|
* @file
|
|
|
|
* @ingroup Extensions
|
2007-03-13 11:39:12 +00:00
|
|
|
* @author Daniel Kinzler, brightbyte.de
|
2006-07-26 17:12:30 +00:00
|
|
|
* @copyright © 2006 Daniel Kinzler
|
|
|
|
* @licence GNU General Public Licence 2.0 or later
|
2008-02-27 10:37:52 +00:00
|
|
|
*
|
2010-04-20 22:00:34 +00:00
|
|
|
* NOTE: if you change this, increment $wgCategoryTreeVersion
|
2008-02-27 10:37:52 +00:00
|
|
|
* in CategoryTree.php to avoid users getting stale copies from cache.
|
2006-07-26 17:12:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
.CategoryTreeChildren {
|
|
|
|
margin-left: 1.5ex;
|
|
|
|
}
|
|
|
|
|
2008-11-14 12:47:54 +00:00
|
|
|
|
|
|
|
.CategoryTreeBullet {
|
|
|
|
cursor: pointer;
|
|
|
|
cursor: hand; /* hack for MSIE 5.0 and 5.5 */
|
|
|
|
}
|
2010-05-28 02:15:44 +00:00
|
|
|
.CategoryTreeEmptyBullet {
|
|
|
|
cursor: default;
|
|
|
|
}
|
2008-11-14 12:47:54 +00:00
|
|
|
|
2008-06-28 20:13:20 +00:00
|
|
|
.CategoryTreeBullet a,
|
|
|
|
.CategoryTreeBullet a:link,
|
|
|
|
.CategoryTreeBullet a:active,
|
|
|
|
.CategoryTreeBullet a:visited {
|
2006-07-26 17:12:30 +00:00
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
2008-06-28 20:13:20 +00:00
|
|
|
speak: none;
|
2006-07-26 17:12:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.CategoryTreeLabelPage {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CategoryTreeParents {
|
|
|
|
margin-top: 1.5ex;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CategoryTreeResult {
|
|
|
|
margin-top: 1.5ex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CategoryTreeTag {
|
|
|
|
margin-top: 0.5ex;
|
2011-06-25 00:09:24 +00:00
|
|
|
margin-bottom: 0.5ex;
|
2006-07-26 17:12:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.CategoryTreeNotice {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
2008-06-30 21:22:03 +00:00
|
|
|
|
2008-07-11 23:18:41 +00:00
|
|
|
/*
|
2008-07-02 21:16:55 +00:00
|
|
|
div.CategoryTreeInlineNode,
|
|
|
|
div.CategoryTreeInlineNode div {
|
|
|
|
display: table-cell;
|
|
|
|
}
|
2008-07-11 23:18:41 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
.CategoryTreeCategoryBarItem {
|
|
|
|
display:-moz-inline-box; display:inline-block; /* yes, specify display twice! quirk for FF2 */
|
|
|
|
margin:-0.5ex 0 0 1ex; /* why is the -0.5ex needed? */
|
|
|
|
padding:0;
|
|
|
|
vertical-align: top;
|
2011-09-30 02:51:53 +00:00
|
|
|
/* IE6-7 Hack for display: inline-block */
|
|
|
|
zoom: 1;
|
|
|
|
*display: inline;
|
2008-07-11 23:18:41 +00:00
|
|
|
}
|
2011-06-25 00:09:24 +00:00
|
|
|
|
|
|
|
.CategoryTreeSection {
|
|
|
|
direction: ltr;
|
|
|
|
}
|