Reputation: 139
how can i resize this highlighted buttons all of them?
i want to make it smaller in size.
Upvotes: 3
Views: 4787
Reputation: 73
i just done it by inspecting the button element from firefox browser.. and just overwrite that particular property with "!important" keyword in style tag. i attached the sample image.
<style>
.dataTables_wrapper .dataTables_paginate .paginate_button
{
min-width: 0.2em; !important
}
</style>
Upvotes: 1