I'm using the Angular CDK table (without Angular Material2) and want to use bootstrap table design to style it.
It is possible to add classes to the CDK table, but the bootsstrap rules directly address the html table elements tr
, td
, ... and Angular CDK uses custom tags cdk-table
, cdk-row
, cdk-cell
...
As quick and dirty solution, I wrote my own rules for the cdk elements with a lot of copy paste from the bootstrap sources. But is there a nice and perhaps more future proof solution to automatically inherit the bootstrap rules for CDK tables?