From: Sorin Davidoi Date: Sat, 10 Jun 2017 18:47:07 +0000 (+0200) Subject: fix: Apply :hover, :focus and :active only when multiple columns X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=d8c47813771795893fe739e066708b84974130b8;p=mastodon.git fix: Apply :hover, :focus and :active only when multiple columns --- diff --git a/app/javascript/styles/components.scss b/app/javascript/styles/components.scss index ecfc186eb..c2062c398 100644 --- a/app/javascript/styles/components.scss +++ b/app/javascript/styles/components.scss @@ -1473,8 +1473,10 @@ &:hover, &:focus, &:active { - background: lighten($ui-base-color, 14%); - transition: all 100ms linear; + @media screen and (min-width: 1025px) { + background: lighten($ui-base-color, 14%); + transition: all 100ms linear; + } } span {