/* Hide Complete Button in Task List */
div.LIST-taches button.complete-task-button {
  display: none;
}

/* Hide Complete Button in Task Fire */
div.LIST-taches_fire button.complete-task-button {
  display: none;
}

/* Hide Complete Button in Task Fidgi */
div.LIST-taches_fidgi button.complete-task-button {
  display: none;
}

/* Make cards in creation rows red */
[id^='section-block_mes_requisitions_block'] table tr.table-in-creation td {
  background-color: #e74c3c;
  color: white;
}

/* Make cards in creation rows red */
[id^='section-block_liste_des_requisitions_block'] table tr.table-in-creation td {
  background-color: #e74c3c;
  color: white;
}

/* Limiter la hauteur de la cellule du tableau Description Notes */
.data-td[data-field-identifier="note"] {
    span {
        display: inline-block;
        max-height: 100px;
        overflow: auto;
    }
}