diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-30 14:47:05 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-30 14:47:05 +0200 |
commit | 31afbb3434b98aaa839d20d035a449b842b9d97a (patch) | |
tree | 2da7cb618495c0865c427d4fda09dae15c3ba706 /core/css | |
parent | f9d1d79929e8414789245c79369ceadf1af67ab4 (diff) | |
download | nextcloud-server-31afbb3434b98aaa839d20d035a449b842b9d97a.tar.gz nextcloud-server-31afbb3434b98aaa839d20d035a449b842b9d97a.zip |
remove ugly inset shadow from header
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 9c6d39030e9..e7dcdf67d64 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -19,7 +19,10 @@ body { background:#fefefe; font:normal .8em/1.6em "Helvetica Neue",Helvetica,Ari #body-user #header, #body-settings #header { position:fixed; top:0; left:0; right:0; z-index:100; height:45px; line-height:2.5em; background:#1d2d44 url('../img/noise.png') repeat; - -moz-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; -webkit-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; } + -moz-box-shadow:0 0 10px rgba(0, 0, 0, .5); + -webkit-box-shadow:0 0 10px rgba(0, 0, 0, .5); + box-shadow:0 0 10px rgba(0, 0, 0, .5); +} #body-login { text-align: center; |