diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-08-16 01:05:29 -0700 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-08-16 01:05:29 -0700 |
commit | 1e8849b04eebf06a7c86675e4d96c38d8f9c95b2 (patch) | |
tree | a79e36b9b3d24f93ea0051a6f2fee576039a9455 /core/css | |
parent | c196985ea352637f540c6ead6519a3e13d7afe4a (diff) | |
parent | 0aa7dc9b893ffa5ac8a1f3a3959ad3de2ce6178c (diff) | |
download | nextcloud-server-1e8849b04eebf06a7c86675e4d96c38d8f9c95b2.tar.gz nextcloud-server-1e8849b04eebf06a7c86675e4d96c38d8f9c95b2.zip |
Merge pull request #4314 from owncloud/css-fixes
Design fixes
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 3d3b79c6a14..2f08b58c04f 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -19,9 +19,9 @@ 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 { @@ -381,6 +381,15 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } color: #dd3b3b !important; font-weight: bold; } +.error pre { + white-space: pre-wrap; + text-align: left; +} + +.error-wide { + width: 800px; +} + /* Fixes for log in page, TODO should be removed some time */ #body-login .update, #body-login .error { @@ -635,7 +644,7 @@ span.ui-icon {float: left; margin: 3px 7px 30px 0;} #category_addinput { width:10em; } /* ---- APP SETTINGS ---- */ -.popup { background-color:white; border-radius:10px 10px 10px 10px; box-shadow:0 0 20px #888; color:#333; padding:10px; position:fixed !important; z-index:200; } +.popup { background-color:white; border-radius:10px 10px 10px 10px; box-shadow:0 0 20px #888; color:#333; padding:10px; position:fixed !important; z-index:100; } .popup.topright { top:7em; right:1em; } .popup.bottomleft { bottom:1em; left:33em; } .popup .close { position:absolute; top:0.2em; right:0.2em; height:20px; width:20px; background:url('../img/actions/close.svg') no-repeat center; } |