diff --git a/asset/css/list/item-table.less b/asset/css/list/item-table.less index 68b7d2f1..bd875031 100644 --- a/asset/css/list/item-table.less +++ b/asset/css/list/item-table.less @@ -48,7 +48,7 @@ ul.item-table { margin-bottom: -.5em; } - .content { + .column-content { flex: 1 1 auto; width: 0; diff --git a/src/Common/BaseTableRowItem.php b/src/Common/BaseTableRowItem.php index bc61c8eb..c24578fc 100644 --- a/src/Common/BaseTableRowItem.php +++ b/src/Common/BaseTableRowItem.php @@ -65,7 +65,7 @@ protected function createColumn($content = null): BaseHtmlElement Attributes::create(['class' => 'col']), new HtmlElement( 'div', - Attributes::create(['class' => 'content']), + Attributes::create(['class' => 'column-content']), ...Html::wantHtmlList($content) ) );