Merge pull request #2534 from awesomerobot/master

fixing appearance of horizontal scrollbar on topic list at about 996px wide
This commit is contained in:
Jeff Atwood 2014-07-11 21:38:46 -07:00
commit 7b1eb06735
2 changed files with 5 additions and 4 deletions

View File

@ -124,8 +124,10 @@ table.badges-listing {
}
.show-badge .user-badge-with-posts .badge-user {
width: 400px;
width: 45%;
padding: 0 0 0 4%;
margin-bottom: 20px;
.badge-info {
width: 100px;
display: block;
@ -136,7 +138,6 @@ table.badges-listing {
width: 250px;
display: block;
float: left;
margin-top: 67px;
margin-left: 18px;
text-align: left;
}

View File

@ -13,7 +13,7 @@
}
@mixin medium-width {
@media screen and (min-width: 967px) and (max-width: 1139px) {
@media screen and (min-width: 1000px) and (max-width: 1139px) {
@content;
}
}