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>2013-08-28 15:59:23 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-08-29 11:40:57 +0400
commit90ae95c73a66458a921c7efe24dbd0f32d980b48 (patch)
treed4caf282cef1e4b1b7cdbcc4e9d2ba3ca5709f68 /core
parent09563634108da9fb865b6da91231f1273d6698b6 (diff)
fix shadow style of username input box
Conflicts: core/css/styles.css
Diffstat (limited to 'core')
-rw-r--r--core/css/styles.css10
1 files changed, 10 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css
index 716dd4b5991..a02a9df11d2 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -189,6 +189,16 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b
input[name="password-clone"] { padding-left:1.8em; width:11.7em !important; }
input[name="adminpass-clone"] { padding-left:1.8em; width:11.7em !important; }
+/* General new input field look */
+#body-login input[type="text"],
+#body-login input[type="password"],
+#body-login input[type="email"] {
+ border: 1px solid #323233;
+ -moz-box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.25) inset;
+ -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.25) inset;
+ box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.25) inset;
+}
+
/* Nicely grouping input field sets */
.grouptop input {
margin-bottom:0;