diff options
author | Ash Furrow <ash@ashfurrow.com> | 2017-04-21 12:17:55 -0400 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-21 18:17:55 +0200 |
commit | 78af88e1f4389b821815316f03a27be1b55e61da (patch) | |
tree | ce957a0226fbb0a927a386ac153fb3f84436aae4 /app/assets/stylesheets | |
parent | 74c474a652d32294394ef7b329d1bcddb64cc2e0 (diff) |
Hides superluous details on small screens (#2175)
* Hides superluous details on small screans. * Addressed feedback from #2175.
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r-- | app/assets/stylesheets/components.scss | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss index 2fdbde513..0d3ddccd7 100644 --- a/app/assets/stylesheets/components.scss +++ b/app/assets/stylesheets/components.scss @@ -1183,10 +1183,17 @@ a.status__content__spoiler-link { .column-link { background: lighten($color1, 8%); color: $color5; + display: block; &:hover { background: lighten($color1, 11%); } + + &.hidden-on-mobile { + @media screen and (max-width: 1024px) { + display: none; + } + } } .autosuggest-textarea, .spoiler-input { @@ -1382,6 +1389,12 @@ button.icon-button.active i.fa-retweet { color: $color4; text-shadow: 0 0 10px rgba($color4, 0.4); } + + &.hidden-on-mobile { + @media screen and (max-width: 1024px) { + display: none; + } + } } .loading-indicator { |