font awesome - increase clickable area around tiny icon -
i using font awesome icon ellipsis-v (which tiny; see here) in clickable row, it's frustrating click, because of time end clicking on row. tried putting link on td, it's not working (because whole row clickable?).
are there css tricks increase clickable area around fa-icon? (below code tried)
<tr class='clickable-row' data-href='details.html'> <td></td> <td class="client-status"><span class="label label-warning"></span></td> <td> <a class="dodropdown"> <div class="ibox-tools"> <a class="dropdown-toggle dodropdown" data-toggle="dropdown"> <i class="fa fa-ellipsis-v"></i> </a> <ul class="dropdown-menu"> <li> <a href="details.html">view</a> </li> <li> <a href="details_edit.html">edit</a> </li> </ul> </div> </a> </td> </tr>
try adding property line-height or font-size on <i> tag:
example:
i { line-height: 20px; font-size: 20px; }
Comments
Post a Comment