diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-20 16:45:36 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-20 16:45:36 +0100 |
commit | bfe6dfe5daeb42723032c7ca2e526ff51326df4e (patch) | |
tree | 9e9e81e099c104fec670b7f155ba2faad633de02 /core/css/styles.css | |
parent | 5cc4a47f4c714f2654b5845cf5acc4d56d63fc00 (diff) | |
parent | 58b1dc5e76bb18ebae7e980566153b04cd1c76b2 (diff) | |
download | nextcloud-server-bfe6dfe5daeb42723032c7ca2e526ff51326df4e.tar.gz nextcloud-server-bfe6dfe5daeb42723032c7ca2e526ff51326df4e.zip |
Merge pull request #7056 from owncloud/users-scrollperformance
Improve users list scrolling performance
Diffstat (limited to 'core/css/styles.css')
-rw-r--r-- | core/css/styles.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 01c2f89b9ce..0be0eaf3441 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -946,3 +946,15 @@ div.crumb:active { opacity:.7; } +.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; +} + |