From a886261f75b6610f10f584a105f30d53a46d8eb4 Mon Sep 17 00:00:00 2001 From: Jeff Atwood Date: Fri, 27 Jun 2014 16:54:30 -0700 Subject: [PATCH] turns out we had a mixin for unselectable --- app/assets/stylesheets/desktop/topic.scss | 5 +---- app/assets/stylesheets/mobile/topic.scss | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/app/assets/stylesheets/desktop/topic.scss b/app/assets/stylesheets/desktop/topic.scss index 1d7367662f3..c27ec67aef8 100644 --- a/app/assets/stylesheets/desktop/topic.scss +++ b/app/assets/stylesheets/desktop/topic.scss @@ -155,10 +155,7 @@ a:hover.reply-new { height: 34px; /* as a big ol' click target, don't let text inside be selected */ - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; + @include unselectable; &:hover { cursor: pointer; diff --git a/app/assets/stylesheets/mobile/topic.scss b/app/assets/stylesheets/mobile/topic.scss index 61dfe6fe835..4c6cb2c8bcc 100644 --- a/app/assets/stylesheets/mobile/topic.scss +++ b/app/assets/stylesheets/mobile/topic.scss @@ -108,10 +108,7 @@ height: 34px; /* as a big ol' click target, don't let text inside be selected */ - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; + @include unselectable; .nums { position: relative;