diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-05-14 13:29:03 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-06-14 10:13:24 +0200 |
commit | cf5a72c10398bb18817cff8ca4dfba4429a97123 (patch) | |
tree | d9ede2e59296746411c2781c1fe074d38af3235d /apps/files_sharing/css | |
parent | d7de35376d7e068abdfb49e8336feab25e313662 (diff) | |
download | nextcloud-server-cf5a72c10398bb18817cff8ca4dfba4429a97123.tar.gz nextcloud-server-cf5a72c10398bb18817cff8ca4dfba4429a97123.zip |
Add interface for adding a public share to a different ownCloud instance
Diffstat (limited to 'apps/files_sharing/css')
-rw-r--r-- | apps/files_sharing/css/public.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index 1bafb780744..52b8481140d 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -87,3 +87,17 @@ thead { width: 300px; max-width: 90%; } + +.header-right { + 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; +} + +.header-right:hover, .header-right.active { + opacity: 1; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; + filter: alpha(opacity=100); +} |