diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-12-07 14:31:06 +0100 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2015-12-24 11:01:31 +0100 |
commit | 1622589ac57add522ebe44ad1f811550eef766df (patch) | |
tree | f7330627069b7f59daa82eed8361dfb1b8491e78 /core/css | |
parent | fd96331e590198407bf813fba2505b63f3212e1f (diff) | |
download | nextcloud-server-1622589ac57add522ebe44ad1f811550eef766df.tar.gz nextcloud-server-1622589ac57add522ebe44ad1f811550eef766df.zip |
prevent selecting on log in page to solve ugliness on accidental selection
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 62161d69273..ce2cfa37c64 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -254,6 +254,10 @@ body { width: 22em; margin: 0 auto; padding-top: 20px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } #body-login p.info a { font-weight: 600; @@ -291,6 +295,10 @@ body { #body-login form fieldset { margin-bottom: 20px; text-align: left; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } #body-login form #sqliteInformation { margin-top: -20px; @@ -348,6 +356,10 @@ body { .groupmiddle, .groupbottom { position: relative; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } #body-login .grouptop input, .grouptop input { @@ -385,6 +397,10 @@ label.infield { padding: 14px; padding-left: 28px; vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } html.ie8 #body-login form input[type="checkbox"]+label { margin-left: -28px; |