diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-02-11 15:57:45 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-04-28 14:34:28 +0200 |
commit | efdf0c4df0012fe03fb3de136ff596af1bb38677 (patch) | |
tree | c0e960f81236f5d00a63ee0527a457517af8d34a /core | |
parent | f685c3ccebd5f910a78038e75b0d8f8299a89b93 (diff) | |
download | nextcloud-server-efdf0c4df0012fe03fb3de136ff596af1bb38677.tar.gz nextcloud-server-efdf0c4df0012fe03fb3de136ff596af1bb38677.zip |
Added infinite scrolling (in-memory list)
Diffstat (limited to 'core')
-rw-r--r-- | core/css/apps.css | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/core/css/apps.css b/core/css/apps.css index a8dfc5b7ed1..a0bb262854d 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -243,7 +243,6 @@ button.loading { padding-right: 30px; } - /* general styles for the content area */ .section { display: block; @@ -264,3 +263,14 @@ button.loading { vertical-align: -2px; margin-right: 4px; } +.appear { + opacity: 1; + transition: opacity 500ms ease 0s; + -moz-transition: opacity 500ms ease 0s; + -ms-transition: opacity 500ms ease 0s; + -o-transition: opacity 500ms ease 0s; + -webkit-transition: opacity 500ms ease 0s; +} +.appear.transparent { + opacity: 0; +} |