Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

When viewing compact Reddit in landscape mode, long titles overflow incorrectly. #501

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion r2/r2/public/static/css/compact.css
Expand Up @@ -148,7 +148,7 @@ body[orient="landscape"] > #topbar > h1 { margin-left: -125px; width: 250px; }
.link .arrow.downmod, .comment .arrow.downmod, .message .arrow.downmod { background-image: url("../compact/downvote-active.png"); /*SPRITE*/ } .link .arrow.downmod, .comment .arrow.downmod, .message .arrow.downmod { background-image: url("../compact/downvote-active.png"); /*SPRITE*/ }


/*Links*/ /*Links*/
.link { min-height: 70px; border-bottom: 1px solid #999; border-top: 1px solid #ddd; padding: 5px 5px; padding-bottom: 0px; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; background: rgba(255, 255, 255, 0.6); position: relative; } .link { min-height: 70px; border-bottom: 1px solid #999; border-top: 1px solid #ddd; padding: 5px 5px; padding-bottom: 0px; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; background: rgba(255, 255, 255, 0.6); position: relative; overflow: hidden;}


.link:first-child { border-top: none; } .link:first-child { border-top: none; }


Expand Down
1 change: 1 addition & 0 deletions r2/r2/public/static/css/compact.scss
Expand Up @@ -516,6 +516,7 @@ body[orient="landscape"] > #topbar > h1 {
@include box-sizing(border-box); @include box-sizing(border-box);
background: rgba(255,255,255,.6); background: rgba(255,255,255,.6);
position: relative; position: relative;
overflow: hidden;
} }
.link:first-child { .link:first-child {
border-top: none; border-top: none;
Expand Down