/**
 * @license GNU GPL v2+
 * @author H. Snater < mediawiki@snater.com >
 * @author Thiemo Kreuz
 */
.wikibase-edittoolbar-container > .wikibase-toolbar {
	padding-left: 0;
}

/* This is partially copied from core's resources/src/mediawiki.legacy/shared.css. */
.wb-help-field-hint {
	/* 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/ooui/helpNotice.png );
	/* @embed */
	background-image: linear-gradient( transparent, transparent ), url( images/icons/ooui/helpNotice.svg );
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 14px 14px;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-left: 6px;
	vertical-align: middle;
	opacity: 0.87; /* Equals `#222` on `background-color: #fff` */
	cursor: pointer;
}

.wb-help-field-hint:hover {
	opacity: 0.73; /* Equals `#454545` on `background-color: #fff`, closest to `#444` */
}
