diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-05-23 17:57:29 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-05-23 17:57:29 +0200 |
commit | 574e4f057918b318bfa39ce10c89e65987a15899 (patch) | |
tree | 0eb50878433434f03bee035e931129a2ae4472ce /core | |
parent | 5bf13783e2c1d39bae9303c9fb2d7b3ea9c7c483 (diff) | |
download | nextcloud-server-574e4f057918b318bfa39ce10c89e65987a15899.tar.gz nextcloud-server-574e4f057918b318bfa39ce10c89e65987a15899.zip |
use user-select: none; on header, navigation and user menu
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 975f0160b15..1ca90439de2 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -204,6 +204,16 @@ input img, button img, .button img { } +/* prevent ugly selection effect on accidental selection */ +#header, +#navigation, +#expanddiv { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; +} + + /* SCROLLING */ ::-webkit-scrollbar { width: 8px; @@ -709,8 +719,6 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } overflow-y: auto; overflow-x: hidden; -moz-box-sizing:border-box; box-sizing:border-box; - /* prevent ugly selection effect on accidental selection */ - -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } #apps { height: 100%; @@ -801,8 +809,6 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } border-bottom-left-radius:7px; border-bottom:1px #333 solid; border-left:1px #333 solid; box-shadow:0 0 7px rgb(29,45,68); -moz-box-sizing: border-box; box-sizing: border-box; - /* prevent ugly selection effect on accidental selection */ - -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } #expanddiv a { display: block; |