Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-02-11 18:57:45 +0400
committerVincent Petry <pvince81@owncloud.com>2014-04-28 16:34:28 +0400
commitefdf0c4df0012fe03fb3de136ff596af1bb38677 (patch)
treec0e960f81236f5d00a63ee0527a457517af8d34a /core/css/apps.css
parentf685c3ccebd5f910a78038e75b0d8f8299a89b93 (diff)
Added infinite scrolling (in-memory list)
Diffstat (limited to 'core/css/apps.css')
-rw-r--r--core/css/apps.css12
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;
+}