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;
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 {
cursor: pointer;
}

View File

@ -106,6 +106,14 @@
color: $primary;
width: 130px;
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 {
position: relative;
top: 9px;