/**
 * @license GNU GPL v2+
 * @author H. Snater < mediawiki@snater.com >
 */

.wikibase-toolbarlabel.ui-state-disabled {
	color: grey;
}

.wikibase-toolbar-item .mw-help-field-hint {
	display: inline-block;
	margin-left: 3px;
	padding: 0;
	text-decoration: none;
	min-width: 11px;
}

.wikibase-toolbar-item .mw-collapsible-toggle {
	background-position: right;
	background-repeat: no-repeat;
	height: 24px;
	overflow: hidden;
	text-indent: 24px;
	width: 24px;
}

.wikibase-toolbar-item .mw-collapsible-toggle,
.wikibase-toolbar-item .mw-collapsible-toggle-expanded {
	/* SVG support using a transparent gradient to guarantee cross-browser
	 * compatibility (browsers able to understand gradient syntax support also SVG).
	 * http://pauginer.tumblr.com/post/36614680636/invisible-gradient-technique */
	background-image: url(images/icons/oojs-ui/collapse.png);
	/* @embed */
	background-image: -webkit-linear-gradient(transparent, transparent), url(images/icons/oojs-ui/collapse.svg);
	/* @embed */
	background-image: linear-gradient(transparent, transparent), url(images/icons/oojs-ui/collapse.svg);
}

.wikibase-toolbar-item .mw-collapsible-toggle-collapsed {
	/* SVG support using a transparent gradient to guarantee cross-browser
	 * compatibility (browsers able to understand gradient syntax support also SVG).
	 * http://pauginer.tumblr.com/post/36614680636/invisible-gradient-technique */
	background-image: url(images/icons/oojs-ui/expand.png);
	/* @embed */
	background-image: -webkit-linear-gradient(transparent, transparent), url(images/icons/oojs-ui/expand.svg);
	/* @embed */
	background-image: linear-gradient(transparent, transparent), url(images/icons/oojs-ui/expand.svg);
}
