/*
 * diff.css
 * based on liqube forum style
 */
html {
	background-color: #151B20;
	scrollbar-color: #657180 #0f1418;
	font-size: 16px;
}
body {
	font-family: 'Open Sans';
	background-color: #151B20;
	color: #B3B5B7; /* soft gray */
	margin: 0;
	padding: 0;
}

.container {
	position: relative;
}
.sticky {
	position: sticky;
	top: 0;
}

table {
	border-collapse: collapse;
}
.message {
	padding: 1em;
}
.diff {
	font-family: 'Tahoma', 'Arial', sans-serif;
	width: 100%;
}
.picker {
	background-color: #1E2630;
	padding-top: .5em;
	padding-left: 1em;
	padding-bottom: .5em;
}
.picker select {
	background-color: #1E2630;
	color: #a8b1c0;
	height: 2.2em;
	width: 20em;
	border: 2px solid #5A7299;
}
.diff .heading,
.diff .sub-heading {
	font-weight: bold;
	padding-left: .5em;
}
.diff .heading {
	font-size: 2em;
	line-height: 2em;
	color: #657180;
}
.diff .sub-heading {
	color: #657180;
	padding-bottom: 1em;
	padding-left: 1em;
	border-bottom: 1px dotted #657180;
}
.diff .line {
	font-family: 'Source Code Pro', 'Ubuntu Mono', 'Consolas', 'Courier New', 'Courier', monospace;;
	font-size: 1em;
	white-space: pre;
	white-space: pre-wrap;
	padding-bottom: .2em;
	border-left: 8px solid transparent;
	padding-left: .5em;
}
.diff td {
	vertical-align: top;
}
.diff .left {
	border-right: 1px dotted #657180;
	margin-right: .5em;
	width: 50%;
}
.diff .right {
	width: 50%;
}
.diff .empty {
/*	border-top: 1px solid #ccc;*/
	margin-top: .5em;
	margin-bottom: .5em;
}
.diff .blank {
	background: #1e2630;
}
.diff .deleted {
	background: #c05858;
	color: #151B20;
}
.diff .inserted {
	background: #b9d081;
	color: #050B10;
	font-weight: 500;
}
.diff .blank,
.diff .deleted,
.diff .inserted {
	border-top: .5em solid transparent;
	border-bottom: .5em solid transparent;
	line-height: 1.2em;
}
.diff .version {
/*	border-left: 12px solid #B3B5B7;
	padding-left: 4px;*/
	font-size: 1.4em;
	color: white;
}
.diff .heading-underline {
	display: none;
}
.diff .section {
	font-size: 1em;
	color: white;
}
.diff .inserted .section,
.diff .deleted .section,
.diff .inserted .version,
.diff .deleted .version {
	color: black !important;
}
a {
	color: #7898cd; /*#c6c8c9*/
	opacity: 0.7;
}
.diff .inserted a,
.diff .deleted a {
	color: #16253d !important;
}
