Fix for box-sizing

Fixed by separating user-select and box-sizing.
pull/1049/head
bharathkkb 10 years ago
parent f841b1926c
commit cccf41fb5f
  1. 6
      client/stylesheets/base.less

@ -14,11 +14,15 @@
clear: both;
}
}
*,
*:before,
*:after{
.box-sizing(border-box);
}
*:not(input),
*:not(input):before,
*:not(input):after {
.box-sizing(border-box);
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;

Loading…
Cancel
Save