使用Datatables自定义分页

时间:2016-02-25 07:47:54

标签: jquery css pagination datatables

我使用了Datatables,我想根据我想要匹配页面主题的颜色自定义分页。

enter image description here

这是默认视图。

我尝试了不同的方法,比如在数据表中使用相同的类并使用!important。它有效,但没有显示我打算做什么。

活跃时以及:hover状态下我想要的内容:

  • background-color:black;
  • 颜色:白色;

非常感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

将css放在你的风格下面

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
    background: rgba(0,0,0,1) !important;
    color:#fff !important;
}