我有Handsontable
如下:
http://jsfiddle.net/nt001ymn/22/
我的桌子也有下降。当我查看下拉列表时,默认使用浅灰色突出显示。请查看下图:
如何将突出显示的颜色更改为其他颜色。假设我想将突出显示的颜色更改为黄色。
答案 0 :(得分:3)
只需添加此CSS:
.handsontable.listbox tr:hover td {
background: #FF0;
}
我也可以解释我是如何到达那里的,所以你学习'如何捕鱼':
Video on how to do it。在我使用这些步骤完成之后,我还向您展示了如何手动更改某些东西的状态以模拟它“悬停”,以便很容易理解那里的CSS。
答案 1 :(得分:2)
更新了css,请检查
.handsontable.listbox tr td.current, .handsontable.listbox tr:hover td {
background: #ff0;
}
答案 2 :(得分:0)
覆盖此课程:
echo
答案 3 :(得分:0)
默认的灰色背景来自导入的handsontable CSS文件。 要覆盖它,请在您自己的CSS文件中添加以下CSS样式:
.handsontable.listbox tr td.current, .handsontable.listbox tr:hover td {
background: yellow !important;
}
希望这对你有所帮助! ;)
答案 4 :(得分:0)
<style>
.handsontable.listbox tr td.current {
background-color : green;
}
</style>
答案 5 :(得分:0)
添加你的CSS
.handsontable.listbox tr td.current, .handsontable.listbox tr:hover td{
background-color: yellow
}