2016-10-03 53 views
0

我想使用hover屬性將行懸停添加到Webix數據表中,但默認情況下它不會影響所選行。如何使行懸停覆蓋數據表中的選擇?

我試圖修改選擇類的:hover,但目前的符號只能用於懸停細胞(而我需要一個懸停行):

<style> 
    .bluehover{ 
     background:lightblue; 
    } 
    .webix_row_select:hover{ 
     background:lightblue !important; 
    } 
</style> 

Snippet here

將不勝感激任何幫助。

回答

1

只要改變

.webix_row_select:hover{ 
    background:lightblue !important; 
} 

.webix_row_select *:hover{ 
    background:lightblue; 
} 

Updated snippet

+0

恐怕它不工作:( – letItReign