mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CategoryTree
synced 2024-11-15 03:43:55 +00:00
400a3ad210
Fixed the following rules: color-hex-case declaration-colon-space-after indentation Change-Id: I417137916607a25bab6a3c85a95b4c489fb8a8a5
90 lines
1.5 KiB
CSS
90 lines
1.5 KiB
CSS
/**
|
|
* Stylesheet for the CategoryTree extension.
|
|
*
|
|
* @file
|
|
* @ingroup Extensions
|
|
* @author Daniel Kinzler, brightbyte.de
|
|
* @copyright © 2006 Daniel Kinzler
|
|
* @licence GNU General Public Licence 2.0 or later
|
|
*/
|
|
|
|
#mw-subcategories ul {
|
|
list-style: none none;
|
|
margin-left: 0.25em;
|
|
}
|
|
|
|
#mw-panel div.portal div.body .CategoryTreeTag {
|
|
margin: 0;
|
|
font-size: 0.75em;
|
|
line-height: 1.125em;
|
|
}
|
|
|
|
#mw-panel div.portal div.body .CategoryTreeItem {
|
|
padding: 0.25em 0;
|
|
}
|
|
|
|
.CategoryTreeChildren {
|
|
margin-left: 1.25em;
|
|
}
|
|
|
|
.CategoryTreeBullet {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.CategoryTreeEmptyBullet {
|
|
cursor: default;
|
|
color: #c0c0c0;
|
|
}
|
|
|
|
.CategoryTreeBullet a,
|
|
.CategoryTreeBullet a:link,
|
|
.CategoryTreeBullet a:active,
|
|
.CategoryTreeBullet a:visited {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
speak: none;
|
|
}
|
|
|
|
.CategoryTreeToggle {
|
|
color: #0645ad;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.CategoryTreeCategoryBarItem {
|
|
/* yes, specify display twice! quirk for FF2 */
|
|
display: -moz-inline-box;
|
|
display: inline-block;
|
|
/* why is the -0.5ex needed? */
|
|
margin: -0.5ex 0 0 1ex;
|
|
padding: 0;
|
|
vertical-align: top;
|
|
/* IE6-7 Hack for display: inline-block */
|
|
zoom: 1;
|
|
*display: inline; /* stylelint-disable-line declaration-block-no-duplicate-properties */
|
|
}
|
|
|
|
.CategoryTreeSection {
|
|
direction: ltr;
|
|
}
|