Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2015-12-07 16:31:06 +0300
committerRoeland Jago Douma <rullzer@owncloud.com>2015-12-24 13:01:31 +0300
commit1622589ac57add522ebe44ad1f811550eef766df (patch)
treef7330627069b7f59daa82eed8361dfb1b8491e78 /core
parentfd96331e590198407bf813fba2505b63f3212e1f (diff)
prevent selecting on log in page to solve ugliness on accidental selection
Diffstat (limited to 'core')
-rw-r--r--core/css/styles.css16
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;