The selected line does invisible text of inline-buttons
The selected line does invisible text of inline-buttons
Vyacheslav
Posts: 70Questions: 27Answers: 0
in Select
See https://datatbl.herokuapp.com/users
When I select any line, inline text buttons disappear ... This is because the selected line changes the font color to white, which coincides with the background color of a button. Should I fix it yourself or rely on DataTable?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
This is coming from Bootstrap rather than DataTables, so it is probably something you'd need to add a little code for. You could use, for example
tr.selected button { color: black; }
.Another option might be to use Bootstrap's
btn
classes.Allan