The text-div of self-posts .link .usertext-body .md and the boxes for moderator and recently viewed links .sidecontentbox .content are currently unstyled and look a bit ouf of place. The .linkinfo box has a different border-radius (3px) than all almost all other boxes (2.5px).
I suggest the following css changes:
.link .usertext-body .md,
.sidecontentbox .content {
border-radius: 2.5px; /* like most other boxes */
background-color: rgba(0, 0, 0, 0.22); /* same as textbox */
}
.linkinfo {
border-radius: 2.5px;
}
For .sidecontentbox .content, no border at all looks good as well (and cleaner).
Thanks taking the time to open this issue. It would be extremely helpful if you went ahead and branched Reddit-CSS, made those changes and then made a merge request. You can do it all from the web interface ;-)
The text-div of self-posts
.link .usertext-body .md
and the boxes for moderator and recently viewed links.sidecontentbox .content
are currently unstyled and look a bit ouf of place. The.linkinfo
box has a different border-radius (3px) than all almost all other boxes (2.5px).I suggest the following css changes:
For
.sidecontentbox .content
, no border at all looks good as well (and cleaner).