toolbar text should not be selectable

pull/1/head
ansuz 2016-08-03 17:00:09 +02:00
parent 90e323394d
commit 7cc6902892
2 changed files with 25 additions and 0 deletions

View File

@ -1,8 +1,19 @@
@import "./variables.less";
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.cryptpad-toolbar {
box-sizing: border-box;
.unselectable;
color: #666;
font-weight: bold;
height: 26px;

View File

@ -1,5 +1,19 @@
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.cryptpad-toolbar {
box-sizing: border-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
color: #666;
font-weight: bold;
height: 26px;