google-dark
google-dark copied to clipboard
Fix inverted images
The parent div for these images is being inverted. Inverting the images themselves again will un-invert them.
Just added these CSS rules:
.gb_nc span{
filter: invert(1);
}
.gb_nc .gbip{
filter: invert(1);
}
.gb_nc img{
filter: invert(1);
}
.gb_nc .gb_Kb{
background: inherit;
}
.... and it's fixed:
Hold on -- just realized this inverts some colors in Google Docs. 😅
Let me see if I can fix it really quick....
Ok, it's good now. I moved the CSS selectors to be right next to the .gb_nc
selector, so it will only un-invert the images if they are inverted now. 👍