diff options
author | kondou <kondou@ts.unde.re> | 2013-08-18 13:49:34 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-08-18 13:49:34 +0200 |
commit | 9f4bd7cb47af70bfd152a7b3bfb61ecd632fa28d (patch) | |
tree | 85779220946e6b493233ee06401b11c1c6f2018b /settings/css | |
parent | c741a25eaa64cbee65112ec83f0a4b196885daa3 (diff) | |
download | nextcloud-server-9f4bd7cb47af70bfd152a7b3bfb61ecd632fa28d.tar.gz nextcloud-server-9f4bd7cb47af70bfd152a7b3bfb61ecd632fa28d.zip |
Don't use an alert for displaying app-mgmt-errors
Rather display a dominant div and mark the problematic app in the applist.
Fix #305
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.css | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index 20df5d86d65..38c28dd33b9 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -61,7 +61,7 @@ select.quota.active { background: #fff; } .ie8 table.hascontrols tbody tr{border-collapse:collapse;border: 1px solid #ddd !important;} /* APPS */ -.appinfo { margin: 1em; } +.appinfo { margin: 1em 40px; } h3 { font-size: 1.4em; font-weight: bold; } ul.applist a { height: 2.2em; @@ -72,6 +72,12 @@ ul.applist .app-external { } li { color:#888; } li.active { color:#000; } +#leftcontent .appwarning { + background: #fcc; +} +#leftcontent .appwarning:hover { + background: #fbb; +} small.externalapp { color:#FFF; background-color:#BBB; font-weight:bold; font-size: 0.6em; margin: 0; padding: 0.1em 0.2em; border-radius: 4px;} small.externalapp.list { float: right; } small.recommendedapp { color:#FFF; background-color:#888; font-weight:bold; font-size: 0.6em; margin: 0; padding: 0.1em 0.2em; border-radius: 4px;} @@ -86,6 +92,14 @@ span.version { margin-left:1em; margin-right:1em; color:#555; } .appslink { text-decoration: underline; } .score { color:#666; font-weight:bold; font-size:0.8em; } +.errormsg { + margin: 20px; + padding: 5px; + background: #fdd; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} /* LOG */ #log { white-space:normal; } |