diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-03-24 13:02:56 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-03-24 13:02:56 +0100 |
commit | c8af615c01c4fb9d0de2abd100bf0600d5403c88 (patch) | |
tree | 929882415ccb04fe92190d07494569c1f2cb9fc8 /core/css | |
parent | e07a2fd8a254e60758e847356c45f41334d79aaf (diff) | |
parent | 17fbffceeb7722260bda9022d6046976b722388b (diff) | |
download | nextcloud-server-c8af615c01c4fb9d0de2abd100bf0600d5403c88.tar.gz nextcloud-server-c8af615c01c4fb9d0de2abd100bf0600d5403c88.zip |
Merge pull request #15142 from owncloud/issue/15138-feedback-for-empty-apps-list
Issue/15138 feedback for empty apps list
Diffstat (limited to 'core/css')
-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 08562e8772b..12b6bbe9efb 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -326,7 +326,8 @@ input[type="submit"].enabled { overflow-x: auto; } -#emptycontent { +#emptycontent, +.emptycontent { font-size: 16px; color: #888; position: absolute; @@ -334,12 +335,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; |