.paginate_button.previous:hover

.paginate_button.previous:hover

asimabbascruxasimabbascrux Posts: 2Questions: 2Answers: 0

My Code
.dataTables_wrapper .dataTables_paginate .paginate_button.previous.active:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.next.active:hover {
background-color: #2196f3 !important; /* Background color on hover /
color: white !important; /
Text color on hover */
}

i am trying for the past 2 days to change the background-color of active next and previous buttons but it is not working. can any one help Please .

Answers

  • allanallan Posts: 63,489Questions: 1Answers: 10,470 Site admin

    Looks like you might be using DataTables v1? It is no longer supported.

    That said:

    .dataTables_wrapper .dataTables_paginate .paginate_button.previous:hover,
    .dataTables_wrapper .dataTables_paginate .paginate_button.next:hover {
      background: #2196f3 !important;
      color: white !important;
    }
    

    https://live.datatables.net/pahoniki/1/edit

    Allan

Sign In or Register to comment.