diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-06-27 15:39:54 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-06-27 15:39:54 +0200 |
commit | b86b7fd143bc7ec0a23164502016c1091e3434ca (patch) | |
tree | c76bcc8a005f8d4765f3e34d97dfe1c39de187b0 /apps/files/css | |
parent | 3b2fd5e4e6aad769f656c473f1a1fe53f5936c47 (diff) | |
download | nextcloud-server-b86b7fd143bc7ec0a23164502016c1091e3434ca.tar.gz nextcloud-server-b86b7fd143bc7ec0a23164502016c1091e3434ca.zip |
show share action of shared items darker to distinguish from non-shared, fix #8898
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/mobile.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index 04a9a3079e8..fe876899b4a 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -40,6 +40,12 @@ table td.filename .nametext { opacity: .2 !important; display: inline !important; } +/* show share action of shared items darker to distinguish from non-shared */ +#fileList a.action.permanent { + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)" !important; + filter: alpha(opacity=70) !important; + opacity: .7 !important; +} /* do not show Rename or Versions on mobile */ #fileList .action.action-rename, #fileList .action.action-versions { |