@SychO
How can I have list of post and post with a lighter background?
I don't like the intense background color on post and on the list.
My community https://community.peopleinside.it/
I tried to edit CSS but if I edit the background color when dark mode is active a bad visual will also show.
Seems only with those default color Dark mode works, if I try to made the background of list posts and posts more lighter (more white) I have issue with Dark Mode.
Any help please?
This CSS
.DiscussionListItem {
background: hsla(214.1, 100%, 90%, 0.26) !important;
}
Seems resolve but the !important attribution create issue on Dark Theme because the color is never changed in dark theme due to the important propriety.
How can I resolve?
As is terrible how much contrast of color are present on post list and on post I will "fix" temporary with
.DiscussionListItem {
background: none !important;
}
.Post {
background: none !important;
}
Waiting to see if I get some better help here.
Nothing I cannot hide the background or I miss the effect of the mouse over the list....
Update:
Actually I insert some CSS code in the header and this seems to work.