0
0
mirror of https://github.com/Doodle3D/doodle3d-client.git synced 2024-06-02 12:44:32 +02:00

Adding css user-select none etc

This commit is contained in:
peteruithoven 2014-01-16 12:05:23 +01:00
parent fc8c83ae19
commit 89ee355b2e

View File

@ -2,6 +2,18 @@
.btn { .btn {
background-repeat: no-repeat; background-repeat: no-repeat;
cursor: pointer; cursor: pointer;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
user-select: none;
-khtml-user-drag: none;
-webkit-user-drag: none;
-webkit-touch-callout: none; /* disable callout, image save panel */
-webkit-tap-highlight-color: transparent; /* "turn off" link highlight */
} }
.btn.disabled { .btn.disabled {