diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-03-24 10:27:00 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-03-24 11:29:28 +0100 |
commit | c3c251713151273562debee405763bb8f99947c8 (patch) | |
tree | 68b05ed5ffde4d9fd7c066a875c30c56bb57520b /core | |
parent | 9cb07f126d027ddc0610fe0fcfd43016bc960ddb (diff) | |
download | nextcloud-server-c3c251713151273562debee405763bb8f99947c8.tar.gz nextcloud-server-c3c251713151273562debee405763bb8f99947c8.zip |
Display a message when no apps can be found for this oc version
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 74df29140a9..ceb49724b48 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -324,7 +324,8 @@ input[type="submit"].enabled { overflow-x: auto; } -#emptycontent { +#emptycontent, +.emptycontent { font-size: 16px; color: #888; position: absolute; @@ -332,12 +333,15 @@ input[type="submit"].enabled { top: 30%; width: 100%; } -#emptycontent h2 { +#emptycontent h2, +.emptycontent h2 { font-size: 22px; margin-bottom: 10px; } #emptycontent [class^="icon-"], -#emptycontent [class*=" icon-"] { +.emptycontent [class^="icon-"], +#emptycontent [class*=" icon-"], +.emptycontent [class*=" icon-"] { background-size: 64px; height: 64px; width: 64px; |