Question

In my custom theme the background of my theme is a dark grey. When I go onto a datasheet view of a list the dark grey is used as the background colour. Is it possible to target only the datasheet view object and make the background white?

Was it helpful?

Solution

You need to do the following:

body
{
    background: #1F2021;
}

becomes

body
{
    background: #fff;
}

form#aspnetForm
{
    background-color: #1F2021;
}
Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top