don't let topic-progress be selected

This commit is contained in:
Jeff Atwood 2014-06-27 15:28:16 -07:00
parent 386a45aab7
commit 224ae7fc92
2 changed files with 15 additions and 0 deletions

View File

@ -154,6 +154,13 @@ a:hover.reply-new {
width: 130px; width: 130px;
height: 34px; height: 34px;
/* as a big ol' click target, don't let text inside be selected */
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
&:hover { &:hover {
cursor: pointer; cursor: pointer;
} }

View File

@ -106,6 +106,14 @@
color: $primary; color: $primary;
width: 130px; width: 130px;
height: 34px; height: 34px;
/* as a big ol' click target, don't let text inside be selected */
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
.nums { .nums {
position: relative; position: relative;
top: 9px; top: 9px;