/*
 * grid.css
 */

/*
Functional
*/
.ui-grid .ui-grid-body {
	overflow: auto;
}
.ui-grid .ui-grid-head-table,
.ui-grid .ui-grid-body-table,
.ui-grid .ui-grid-foot-table {
	border-collapse: collapse;
	table-layout: fixed;
	width: 100%;
}
.ui-grid .ui-grid-head-table th, .ui-grid .ui-grid-head-table td,
.ui-grid .ui-grid-body-table th, .ui-grid .ui-grid-body-table td,
.ui-grid .ui-grid-foot-table th, .ui-grid .ui-grid-foot-table td {
	overflow: hidden;
	white-space: nowrap;
}

/*
Presentational
*/

.ui-grid .ui-grid-head caption {
	padding: 0.4em;
	border-top-width: 0;
}

.ui-grid .ui-grid-head {
	border-bottom-width: 0;
}
.ui-grid .ui-grid-head,
.ui-grid .ui-grid-foot {
	border-left-width: 0;
	/* -SLL : Laisser la couleur du background du parent s'afficher  
	background: none;*/
	/* _SLL*/
}
.ui-grid .ui-grid-foot {
	border-top-width: 0;
}

.ui-grid .ui-grid-head-table,
.ui-grid .ui-grid-foot-table {
	border: none;
}

.ui-grid .ui-grid-head tr,
.ui-grid .ui-grid-foot tr {
	border-left-width: 0;
	border-right-width: 0;
}

.ui-grid .ui-grid-head th, .ui-grid .ui-grid-head td,
.ui-grid .ui-grid-foot th, .ui-grid .ui-grid-foot td {
	border-right-width: 0;
	border-bottom-width: 0;
}

.ui-grid .ui-grid-body {
	border-top-width: 0;
	border-bottom-width: 0;
	border-left-width: 0;
	/* +SLL :  Suppression de la bordure � droite */
	border-right-width: 0;
	/* _SLL */
}

.ui-grid .ui-grid-body tr {
	/* +SLL :  Suppression de la hauteur de la ligne par défaut 
	height: 2em;*/
	/* _SLL */
	border-top-width: 0;
	border-left-width: 0;
	border-right-width: 0;

}

.ui-grid .ui-grid-body td {
	border-top-width: 0;
	border-right-width: 0;
	/* +SLL :  Suppression de cette propriété sinon impossible de voir le fond de la rupture
	background: none;
	/* _SLL */
}

.ui-grid th, .ui-grid td {
	padding: 0.2em 0.4em;
}

.ui-grid .ui-grid-foot {
	border-top-width: 0;
}

.ui-grid .ui-grid-body {
	background-image: none;
}

.ui-grid tr.ui-state-default,
.ui-grid td.ui-state-default {
	/* -SLL : Autoriser l'affichage d'un fond pour le footer 
	background-image: none;*/
	/* _SLL */
}

.ui-grid-resizable .ui-resizable-se {
	width: 17px;
	height: 17px;
	bottom: -4px;
	right: -2px;
}

.ui-grid-resizable .ui-resizable-s {
	width: auto;
	bottom: -7px;
	right: 16px;
}

.ui-grid-resizable .ui-resizable-e {
	height: auto;
	bottom: 10px;
}

/* specific for sort extension */
.ui-grid thead th {
	cursor: default;
}
.ui-grid thead th .ui-icon-asc, .ui-grid thead th .ui-icon-desc {
	visibility: hidden;
	display: inline-block;
	height: 12px;
}
.ui-grid thead th .ui-icon-desc {
	margin-left: -17px;
}
.ui-grid thead th.sorted .ui-icon-asc {
	visibility: visible;
}
.ui-grid thead th.sorted-desc .ui-icon-desc {
	visibility: visible;
}
.ui-grid tfoot td {
	text-align: center;
}
