I have a PHP application that uses Twitter Bootstrap and allows the user to select the preferred Bootswatch theme. In the application, there is a PHP class to build a datagrid (table thead tbody tfoot), however within the <td>
element was inserted into the <small>
, then removed the <small>
and decide to use CSS.
td { font-size:0.85em; vertical-align: middle !important; }
However, several Bootswatch themes using a less variable @font-size-small, and I would like my datagrid reuse this variable, in other words, when the user to choose a Bootswatch theme, the datagrid font size would be adjusted based on the theme and not explicitly defined by font-size:0.85em;
Thanks!