diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-08-28 13:59:23 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-08-28 13:59:23 +0200 |
commit | 0c8ac241dfe6e1d07a03d14b5ad349bb0f78b0cd (patch) | |
tree | a99fc3ba7184d2242bca9fb1816aba03df3c0a16 | |
parent | c6eda25d5010fbae1c4ae0f9e29df80d0d62b9e9 (diff) | |
download | nextcloud-server-0c8ac241dfe6e1d07a03d14b5ad349bb0f78b0cd.tar.gz nextcloud-server-0c8ac241dfe6e1d07a03d14b5ad349bb0f78b0cd.zip |
fix shadow style of username input box
-rw-r--r-- | core/css/styles.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index dee0778afbb..ce0d5abfc78 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -255,9 +255,9 @@ input[name="adminpass-clone"] { padding-left:1.8em; width:11.7em !important; } #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 3px rgba(0,0,0,.25) inset; - -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 1px 3px rgba(0,0,0,.25) inset; - box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 1px 3px rgba(0,0,0,.25) inset; + -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 */ |