Ruby on Rails DataTables - 这个CSS搞砸了我的分页按钮。我怎么摆脱它?

时间:2014-11-07 02:45:34

标签: css ruby-on-rails

自从DataTables今天运行“捆绑”后更新,我的分页按钮再次被搞砸了。例如,当我将鼠标悬停在按钮上时,每个按钮周围都有一个黑色的大边框,而且非常不吸引人。我把它缩小到了这个范围:

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid #111111;
  background-color: #585858;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111111));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #585858 0%, #111111 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #585858 0%, #111111 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #585858 0%, #111111 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, #585858 0%, #111111 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #585858 0%, #111111 100%);
  /* W3C */
}

除了从原始CSS中删除它之外(因为当我确定有另一次更新时它会回来),我该怎样才能将其覆盖到NONE这个生效的地方?只是简单地删除它暂时适合我,但我需要一个更永久的解决方案。

非常感谢任何帮助。

谢谢!

0 个答案:

没有答案