Skip to content

Commit

Permalink
[TASK] set default class '.table' for table content element (#315)
Browse files Browse the repository at this point in the history
Class .table is styled in Bootstrap
  • Loading branch information
Anna Färber authored and dmh committed Oct 16, 2017
1 parent fa77049 commit c9f7653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/Private/Templates/FluidStyledContent/Table.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<f:layout name="Default" />
<f:section name="Main">
<f:if condition="{table}">
<table class="ce-table{f:if(condition: tableClass, then: ' {tableClass}')}">
<table class="ce-table{f:if(condition: tableClass, then: ' {tableClass}', else: ' table')}">
<f:if condition="{data.table_caption}">
<caption>{data.table_caption}</caption>
</f:if>
Expand Down

0 comments on commit c9f7653

Please sign in to comment.