/* This file only to be used in storage/shaderlist.php as it overrides style.css */
/* Table background & positioning */
table {
	border: 1px solid #669;
	margin: 20px auto 10px auto;
	/* display: block; Causes weird part-border on top of table */
	border-collapse: collapse;
	width: auto;
	/* Text of cells and headers */
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10pt;
	/* Center text inside cells; also center the shader icon */
	text-align: center;
	/* Turn off cell text wrapping, show ... for overflow */
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
	/* Cell content does not determine column width */
	table-layout: fixed;
}

/* Background for table header cells */
thead {
	background-color: #336;
}

/* Background for table content cells */
tbody {
	border: 0px;
	background-color: #112;
	cursor: default;
}

/* Table header cells */
th {
	border-top: 1px solid #669;
	padding: 2px 4px;
	font-weight: 900;
	white-space: nowrap;
}

/* Text-align these columns to left:
	Shader Name, Author, Description, Notes to left
	Doesn't support IE lower than 8 but who cares about IE
	Note: this is 1-based column number, so column id + 1
*/
td:nth-child(2), td:nth-child(3), td:nth-child(4), td:nth-child(13)
	{ text-align: left; }
	
/* Hide overflow by default, show on hover */
td {
	max-width: 80px;
	padding-top: 4px;
}

/* Column width and cells text, set in th tags only */

/* Shader icon */
.col0 { min-width: 40px; }
/* Shader name */
.col1 { min-width: 150px; text-align: left; }
/* Author */
.col2 { min-width: 150px; max-width: 150px; text-align: left; }
/* Description */
.col3 { width: auto; text-align: left; min-width: 40vw; }
/* Renderers, PS level, Includes, Release Date, Last Updated, License */ 
.col4, .col5, .col6, .col9, .col10, .col11, .col13 { min-width: 175px; max-width: 175px; }
/* Notes */
.col14 { width: auto; text-align: left; min-width: 30vw; }
/* Download link, Mirror link */
.col7, .col8 { min-width: 110px; max-width: 110px; }

/* Unavailable download links; col7, col8 */
td:nth-child(8), td:nth-child(9) {
	font-size: 16px;
	color: #6A9;
}
/* Shader icon: background is white, icon image is centered */
td:first-child {
	background: #FFF;
	border-right: 1px solid #696;
}
/* Extension icons: valid and invalid */
td:first-child:first-child .extIconValid {
	width: 24px;
	height: 24px;
	margin: 0 auto;
}
img.extIconInvalid {
	max-width: 32px;
	max-height: 32px;
	width: auto;
	height: 100%;
}

.ex {
	font-size: 12px;
	color: #39A;
	text-decoration: none;
}

.ex:hover {
	color: #3AC;
	text-decoration: underline;
}
/* Download links */
.dl {
	font-size: 16px;
	color: #39A;
	text-decoration: none;
}

.dl:hover {
	color: #3AC;
	text-decoration: underline;
}

/* Table content cells */
td {
	border-top: 1px solid #669;
	padding: 2px 4px;
	height: 12px;
}
/* Advanced container for Darkwire header */
#container_noborder {
	line-height: 1.0;
	margin: 10px auto;
}

div#filter {
	border: 2px solid #F00;
	position: fixed;
	bottom: 0px;
	left: 10px;
	background-color: #002022;
	text-align: center;
	min-width: 22vw;
	padding-bottom: 3px;
}
div.filterFields {
	/* Hide by default, override later */
	display: none;
	margin: auto 5px;
	text-align: left;
}
/* Add a bit more margin to filter when showing */
div.filterPadRight {
	margin-right: 0.5vw;
}
input.filterTopButton {
	float: left;
	position: static;
	height: 19px;
}
input#showAllRows {
	/* Hide by default, override later */
	display: none;
	margin-left: 5px;
}
input#showAllColumns {
	/* Hide by default, override later */
	display: none;
	margin: 26px auto auto -68px;
	font-weight: 600;
}
div#filterTitle {
	margin: 13px 11% 7px auto;
	font-size: 20px;
	font-weight: 800;
}
p#extlistFooter
{
	font-size: small;
	margin-bottom: 50px;
}
p#extlistFooter > span
{
	color: red;
}