User:George Orwell III/vector.css

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
@charset "UTF-8";
/*
 * ##### Fixes for IE font-size relative units bug #####
 *
 * see https://connect.microsoft.com/IE/feedback/details/816709/
 */
.mw-body .mw-indicators {
	position: relative;
	font-size: 0.8750em;
	font-size: calc(1.00em * 0.8750);
	line-height: 1.6;
/* Move page status indicators down slightly */
	top: 0.50em;
	float: right;
	z-index: 1;
}
#bodyContent.mw-body-content {
	position: relative;
	font-size: 0.8750em;
	font-size: calc(1.00em * 0.8750);
	line-height: 1.6;
	z-index: 0;
}

/* ##### End IE font-size relative units bug fixes ##### */

/*
 * Giving those boring gray standard buttons a Vector-like appearance.
 */

button, input[type="button"], input[type="submit"], input[type="reset"] {
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	border: 1px solid;
	border-color: #CCC #666 #666 #CCC;
	padding: 2px 7px;
	background-color: #FFFFFF;
	/* @embed */
	background-image: url(/w/skins/Vector/images/tab-break.png);
	background-position: left top;
	background-repeat: repeat-x;
}
button:hover, input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover {
	background-position: 0% 30%;
}
button:active, input[type="button"]:active, input[type="submit"]:active, input[type="reset"]:active {
	border-color: #666 #AAA #AAA #666;
}