0
我有一個SharePoint列表,我已經通過在CEWP中添加這段代碼改變了行的顏色。SharePoint列表查看顏色變化複選框點擊
<style type="text/css">
.ms-alternating
{
background-color: White;
}
</style>
現在,當我點擊行左側的複選框時,項目顏色非常暗,字母不可見。
有沒有辦法改變它們的顏色?
我有一個SharePoint列表,我已經通過在CEWP中添加這段代碼改變了行的顏色。SharePoint列表查看顏色變化複選框點擊
<style type="text/css">
.ms-alternating
{
background-color: White;
}
</style>
現在,當我點擊行左側的複選框時,項目顏色非常暗,字母不可見。
有沒有辦法改變它們的顏色?
試試下面
<style type="text/css">
TR.s4-itm-selected > TD {
COLOR: pink !important;
background-color:green;
}
TR.s4-itm-selected:hover > TD {
COLOR: pink !important;
background-color:green;
}
tr.s4-itm-selected a, tr.s4-itm-selected:hover a{
COLOR: pink !important;
}</style>
請記住,你必須點擊複選框,可以查看文本顏色的變化 乾杯 Truez
你的意思是一樣的代碼,所以我的CSS一個新行將看起來像這個'背景顏色:白色;顏色:粉紅色'。如果是的話,我試了一下,但沒有奏效。 – Learner
是的,這是正確的 – Truezplaya
它沒有工作。有沒有其他的代碼。 – Learner