DataTable无法更改搜索框高度

DataTable can't change search box height

我在增大 dataTable 分页搜索框时遇到问题。

我试过了

   .dataTables_filter input {
       height: 30px !important;
} 

什么也没做。我也试过了

   .dataTables_filter input {
          min-height: 30px !important;
}

但这会增加实际搜索框上方和下方的 space。我需要实际的搜索框,在其中输入单词,要大得多。

我知道还有其他建议可以制作一个全新的输入框,但我也遇到过其他不相关的问题,所以如果可能的话,我希望能够实现这一点。

另一方面,宽度完美。

  .dataTables_filter input {
       min-width: 300px !important; }

谢谢!

尝试一些填充:

 .dataTables_filter input {
   height: 30px !important;
   padding:10px;
   border-radius:8px;

}