Bootstrap + Datatables CSS adjustment for pager
Bootstrap + Datatables CSS adjustment for pager
Regarding the blogpost http://datatables.net/blog/Twitter_Bootstrap_2
I am not a CSS guy...
Is it possible to adjust the CSS so that the pagination controls are a bit more compact (to mimic bootstrap 'table-condensed' class) ?
When using the above class, the pagination controls seem oversized compared to the rows in the table.
Thanks,
...Matt
I am not a CSS guy...
Is it possible to adjust the CSS so that the pagination controls are a bit more compact (to mimic bootstrap 'table-condensed' class) ?
When using the above class, the pagination controls seem oversized compared to the rows in the table.
Thanks,
...Matt
This discussion has been closed.
Replies
[code]
.pagination a {
line-height: 22px;
}
[/code]
will help you.
Allan