I need to create a list that has a row with a black background and white text with no hover effect. Just all black - always. Right now I'm getting light grey background when hovering over a row. Can this be changed? I have the following:
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/row-formatting.schema.json",
"additionalRowClass": {
"operator": ":",
"operands": [
{
"operator": "==",
"operands": [
{
"operator": "%",
"operands": [
"@rowIndex",
2
]
},
0
]
},
"ms-bgColor-neutralPrimaryAlt sp-css-color-WhiteText",
{
"operator": ":",
"operands": [
{
"operator": "==",
"operands": [
{
"operator": "%",
"operands": [
"@rowIndex",
2
]
},
1
]
},
"ms-bgColor-neutralPrimaryAlt sp-css-color-WhiteText",
""
]
}
]
}
}