Make parts of kalender non-selectable

This commit is contained in:
2017-11-11 22:10:43 +01:00
parent f890b07d54
commit 5981eea827
2 changed files with 26 additions and 11 deletions

View File

@@ -199,3 +199,18 @@ a.btn:active {
.collapsable:target {
display: block;
}
.noselect {
/* iOS Safari */
-webkit-touch-callout: none;
/* Safari */
-webkit-user-select: none;
/* Konqueror HTML */
-khtml-user-select: none;
/* Firefox */
-moz-user-select: none;
/* Internet Explorer/Edge */
-ms-user-select: none;
/* Non-prefixed version, currently supported by Chrome and Opera */
user-select: none;
}