quick mobile css fix for post selection buttons
This commit is contained in:
parent
aa423212a0
commit
c4ddc5b983
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue