Home > front end >  'Strange' black color effect after changing datatables pagination color
'Strange' black color effect after changing datatables pagination color

Time:11-03

I found enter image description here

enter image description here

CodePudding user response:

You can override the background color and border that's added using the following css code:

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: none !important;
    border: none !important;
}
  • Related