@import "mixins/components.tables"; .c-table { @include table; } .c-table__caption { @include table__caption; } .c-table__row, .c-table__head, .c-table__body { @include table__row; } .c-table--striped :not(.c-table__row--heading).c-table__row:nth-of-type(odd) { @include table__row--striped; } .c-table__cell { @include table__cell; } .c-table__row--heading .c-table__cell { @include table__heading; } .c-table--striped .c-table__row--heading .c-table__cell { @include table__heading--striped; } .c-table--clickable :not(.c-table__row--heading).c-table__row:hover .c-table__cell, .c-table__row--clickable:hover .c-table__cell { @include table-clickable; } .c-table__row--inactive { @include table-inactive; } .c-table--clickable .c-table__row--inactive:hover .c-table__cell, .c-table__row--clickable.c-table__row--inactive:hover .c-table__cell { @include table-clickable--inactive; } .c-table--condensed { @include table--condensed; .c-table__cell { @include table__cell--condensed; } }