quick mobile css fix for post selection buttons

This commit is contained in:
Jeff Atwood 2015-01-20 17:28:06 -08:00
parent aa423212a0
commit c4ddc5b983
1 changed files with 13 additions and 0 deletions

View File

@ -476,3 +476,16 @@ span.highlighted {
.read-state {
display: none;
}
// hide the full set of selection buttons on mobile
.select-posts button { display: none; }
// unhide the simple "select just this post" button
button.select-post {
display: inline-block;
position: absolute;
z-index: 401; // 400 is the reply-to tab
left: 200px;
background-color: scale-color($tertiary, $lightness: 50%);
color: $secondary;
}