diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-28 10:18:30 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-28 10:18:30 +0100 |
commit | 245dac7e81e0192a4de7e51652c94b19f036a2ed (patch) | |
tree | f638cf9f5b4060316d1165d6548de6f6260df1b0 | |
parent | 89584716f835401c1d09d9b4cf6a140c01bc69f7 (diff) | |
parent | 1622589ac57add522ebe44ad1f811550eef766df (diff) | |
download | nextcloud-server-245dac7e81e0192a4de7e51652c94b19f036a2ed.tar.gz nextcloud-server-245dac7e81e0192a4de7e51652c94b19f036a2ed.zip |
Merge pull request #20992 from owncloud/log-in-noselect
prevent selecting on log in page to solve ugliness on accidental selection
-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; |