An ugly shadow recently appeared on the text in the affection tooltip (in harem).
The shadow has probably be added with a new css rule used for some official text.
Anyways, it's making it difficult to read the text and it should not be there.
To remove it, simply go at line 1153 and find :
sheet.insertRule('#harem_right .AffectionTooltip {'
Then, add this line just below the one just found :
+ 'text-shadow: none;'
That's it. The tooltip text is not going to use the more global rule now that it has its own rule.
Fixed ugly text shadow on affection tooltip
An ugly shadow recently appeared on the text in the affection tooltip (in harem). The shadow has probably be added with a new css rule used for some official text. Anyways, it's making it difficult to read the text and it should not be there.
To remove it, simply go at line 1153 and find :
sheet.insertRule('#harem_right .AffectionTooltip {'
Then, add this line just below the one just found :+ 'text-shadow: none;'
That's it. The tooltip text is not going to use the more global rule now that it has its own rule.