/* Listes : affichage partiel plutôt que scrollbar horizontale.
 * table-layout: fixed force la table à tenir dans son conteneur ;
 * le texte trop long est tronqué avec une ellipse. Sous 769px le
 * mode cartes Buefy (has-mobile-cards) prend le relais, on ne
 * touche qu'au mode table. */
@media screen and (min-width: 769px) {
    .b-table .table {
        table-layout: fixed;
    }

    .b-table .table td:not(.is-actions-cell):not(.is-checkbox-cell),
    .b-table .table th:not(.is-checkbox-cell) {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
