
.array-contener, .array-content, .array-content > div
{
	display: flex;
	flex-direction: column;
}

.array-contener
{
	flex-grow: 1;
	/*
		indispensable pour les petits écran, afin de ne pas avoir de
		'Infinity' lors du calcul du nombre de lignes maximal.
	*/
	min-height: 120px;
}

.array-content
{
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: space-between;
}

.array-content::-webkit-scrollbar, th::-webkit-scrollbar, td::-webkit-scrollbar
{
	display: none;
}

.array-content > div
{
	justify-content: space-between;
	flex-grow: 1;
	
	min-width: fit-content;
}

table
{
	border-collapse: collapse;
	width: 100%;
}

table tbody tr
{
	cursor: pointer;
	color: black;
}

tr.has-focus
{
	background-color: skyblue !important;
}

th
{
	height: var(--desktop-line-height);
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
}

th, td
{
	overflow: auto;
	white-space: nowrap;
}

td
{
	height: var(--desktop-line-height);
	border-style: solid;
	border-width: 0px 0px 0px 1px;
	border-color: white;
}

td:first-child
{
	border-width: 0px;
}

tbody tr:nth-child(even)
{
	background-color: burlywood;
}

tbody tr:nth-child(odd)
{
	background-color: floralwhite;
}

tfoot tr th img
{
	margin: 0% 3%;
	width: var(--desktop-line-height);
  vertical-align: middle;
	cursor: pointer;
}

.array-contener .backward img
{
	transform: rotateY(180deg);
}

th.modified-by, th.creation-date, th.modification-date
{
	width: 80px;
}

td.modified-by
{
	text-align: center;
}

/****************************************************/
/* Pour le moment le code CSS du filtre est là, en  */
/* Attendant de créer un module séparé 							*/
/****************************************************/

th
{
	padding: 1px;
}

th > div
{
	display: flex;
}

th > div > *
{
	flex-grow: 1;
}

th > span
{
	line-height: var(--desktop-line-height);
}

th > div > input
{
	width: 0px;
	flex-grow: 1;
	border: 0px;
}

th input, th select
{
	min-height: 29px !important;
	max-width: none !important;
	padding-top: 0px;
	padding-bottom: 0px;
}

@media print
{
	.array-contener th > div:first-child, .array-contener tfoot
	{
		display: none !important;
	}
	
	.array-contener tr
	{
		border-bottom: 1px solid black;
	}
}