diff options
author | Christopher <kondou@ts.unde.re> | 2013-08-25 11:56:56 -0700 |
---|---|---|
committer | Christopher <kondou@ts.unde.re> | 2013-08-25 11:56:56 -0700 |
commit | b8965c6107a908db705fde55e0606998ccbf02e4 (patch) | |
tree | 71383a8fd1a0d314e4ba5442fc2dd54a9566d1fa /core | |
parent | 596ac40b7f7143622ce2fabf48b96b4320e8c582 (diff) | |
parent | 0ce35af02acb2fa9fe0ef401dc75345b5114e3d6 (diff) | |
download | nextcloud-server-b8965c6107a908db705fde55e0606998ccbf02e4.tar.gz nextcloud-server-b8965c6107a908db705fde55e0606998ccbf02e4.zip |
Merge pull request #4331 from owncloud/improve_app-management
Improve app-management
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 52a265d2031..1e7098d16a2 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -389,7 +389,7 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } /* Warnings and errors are the same */ -.warning, .update, .error { +#body-login .warning, #body-login .update, #body-login .error { display: block; padding: 10px; color: #dd3b3b; @@ -401,6 +401,16 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } border-radius: 5px; cursor: default; } + +#body-user .warning, #body-settings .warning { + margin-top: 8px; + padding: 5px; + background: #fdd; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + .warning legend, .warning a, .error a { |