@mixin o-comment-ui--button() {
	display: inline-block;
	margin: 0;
	padding: 0 8px;
	border-width: 0;

	background-color: #4e8fbd;
	background-image: linear-gradient(#549ccf, #4782ab);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#549ccf, endColorstr=#4782ab);

	zoom: 1;
	outline: 0;

	font-family: Arial, Helvetica, sans-serif;
	color: oColorsGetPaletteColor("white");
	text-shadow: 0 0 0 oColorsGetPaletteColor("white");
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;

	min-height: 24px;
	line-height: 24px;
	font-size: 14px;

	border-radius: 0.3em;

	&[disabled] {
		cursor: default;
		color: oColorsGetPaletteColor("white");

		background-color: #acacac;
		background-image: linear-gradient(#b5b5b5, #a5a5a5);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b5b5b5, endColorstr=#a5a5a5);
	}
}
.o-comment-ui--button {
	@include o-comment-ui--button();
}
