From c4ddc5b983f5a10629a09ea3892333305178032a Mon Sep 17 00:00:00 2001 From: Jeff Atwood <jatwood@codinghorror.com> Date: Tue, 20 Jan 2015 17:28:06 -0800 Subject: [PATCH] quick mobile css fix for post selection buttons --- app/assets/stylesheets/mobile/topic-post.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/app/assets/stylesheets/mobile/topic-post.scss b/app/assets/stylesheets/mobile/topic-post.scss index 457aac87f..d46476ce8 100644 --- a/app/assets/stylesheets/mobile/topic-post.scss +++ b/app/assets/stylesheets/mobile/topic-post.scss @@ -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; +}