<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.myDataTable {
	border-bottom: 1px solid #eceded;
	border-left: 1px solid #eceded;
	border-right: 1px solid #eceded;
}

.borderless td, .borderless th, .borderless {
	border-style: none !important;
	border-top-style: none;
}


/* Désactive le sort icon */
.myDataTable thead th.sorting:after,
.myDataTable thead th.sorting_asc:after,
.myDataTable thead th.sorting_desc:after {
	content: "";
}






.myDataTable th {
	padding-right: 9px !important; /* Enlève le padding alloué (30px) pour le sort icon */
	vertical-align: middle;
}

/* TEST
.myDataTable &gt; tbody &gt; tr:hover {
	background-color: black !important;
}
*/

.dtHoverRow {
	background-color: #eeeeee !important;
}


.myDataTable &gt; tbody &gt; tr &gt; td {
	vertical-align: middle;
}


.myDataTable.compact &gt; thead &gt; tr &gt; th {
	min-width: 33px;
	padding-left: 1px;
	padding-right: 1px !important;
}

.myDataTable.compact &gt; tbody &gt; tr &gt; td {
	padding:4px 2px;
}


/* Current Sorting Column Style */
.myDataTable tr.odd td.sorting_1 {
	background-color: #efefef;
}

.myDataTable tr.even td.sorting_1 {
	background-color: #f6f6f6;
}

/* Ajout d'un margin entre les contrôles du bas et le DataTable */
.dataTables_info {
	margin-top: 10px;
}

div.dataTables_wrapper div.dataTables_paginate {
	margin-top: 10px !important;
}


/* Stat column */
.myDataTable &gt; thead &gt; tr &gt; th.stat {
	max-width: 160px;
	min-width: 45px;
	width:150px;
}

.myDataTable &gt; thead &gt; tr &gt; th.stat-lg {
	max-width: 160px;
	min-width: 68px;
	width: 150px;
}

.stat_lighter {
	color: #777;
}



.myDataTable.compact &gt; thead &gt; tr &gt; th.stat-lg {
	min-width: 58px;
	padding-left: 3px;
	padding-right: 3px !important;
}


.nowrap {
	white-space: nowrap;
}


/* Picture player */ /* !!! TODO : Devrait avoir un css pour la datatable player info */
.myDataTable img.picture-player {
	height: 70px;
	width: 46px;
}


/* Average */
.myDataTable &gt; tbody &gt; tr.avg &gt; td {
	background-color:#ebebeb !important;
	font-style:italic;
	color:#04415b;

}


/* Footer */
.myDataTable tfoot tr td {
	background-color: #e5e5e5;
	border-color: black;
	color: #292929;
}


/* Fix pour Firefox... une scrollbar vertical apparaît dans certain tableau sur le div des colonnes freezés (ex Roster) */
div.DTFC_RightWrapper {
	display: none !important;
}
div.DTFC_LeftBodyLiner {
	overflow-x: hidden;
	overflow-y: hidden !important;
}




/* Fix pour l'espace blanc dans l'en-tête entre la table fixed columns et la table de droite (fait ça lorsqu'on ajoute un border gauche droite à la table) */
.DTFC_LeftHeadWrapper table.DTFC_Cloned {
	border-color: #255d74 !important;
}
/*
.DTFC_LeftBodyWrapper,
.DTFC_LeftFootWrapper {
	border-right: 1px solid #e9e9e9 !important;
}
*/

/**** Section "Responsive" ****/
/* col-md */
@media all and (min-width:992px) and (max-width:1199px) {
	.myDataTable {
		font-size: 13px;
	}

		.myDataTable &gt; thead &gt; tr &gt; th.stat {
			min-width: 43px;
		}

		.myDataTable &gt; thead &gt; tr &gt; th.stat-lg {
			min-width: 55px;
		}


		.myDataTable.compact &gt; thead &gt; tr &gt; th.stat {
			min-width: 32px;
		}

		.myDataTable.compact &gt; thead &gt; tr &gt; th.stat-lg {
			min-width: 45px;
		}

		
}

/* col-sm */
@media all and (min-width:768px) and (max-width:991px) {
	.myDataTable {
		font-size: 11px;
	}

		.myDataTable &gt; thead &gt; tr &gt; th.stat {
			min-width: 40px;
		}

		.myDataTable &gt; thead &gt; tr &gt; th.stat-lg {
			min-width: 50px;
		}


		.myDataTable.compact &gt; thead &gt; tr &gt; th.stat {
			min-width: 30px;
		}

		.myDataTable.compact &gt; thead &gt; tr &gt; th.stat-lg {
			min-width: 40px;
		}

		.myDataTable &gt; tbody &gt; tr &gt; td {
			padding: 3px;
			vertical-align: middle;
		}
}

/* col-xs */
@media all and (max-width:767px) {
	.myDataTable {
		font-size: 9px;
	}

		.myDataTable &gt; thead &gt; tr &gt; th.stat {
			min-width: 30px;
		}

		.myDataTable &gt; thead &gt; tr &gt; th.stat-lg {
			min-width: 45px;
		}

		.myDataTable.compact &gt; thead &gt; tr &gt; th.stat {
			min-width: 23px;
		}

		.myDataTable.compact &gt; thead &gt; tr &gt; th.stat-lg {
			min-width: 34px;
		}

		.myDataTable &gt; thead &gt; tr &gt; th.stat {
			padding-left: 3px;
			padding-right: 3px !important;
			vertical-align: middle;
		}
		.myDataTable &gt; tbody &gt; tr &gt; td {
			padding: 1px;
			vertical-align: middle;
		}
}
</pre></body></html>