elementary / Reddit-CSS

Creative Commons Attribution Share Alike 4.0 International
5 stars 3 forks source link

Fix inconsistent box styles #11

Closed quassy closed 9 years ago

quassy commented 9 years ago

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).

roryjs commented 9 years ago

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 ;-)