diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-08-25 14:45:39 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-08-25 14:45:39 +0200 |
commit | cc898cf346cb956d6ee73149cf5ebcbea55ef8d6 (patch) | |
tree | 3722f099a4071d8bdc8fac8b6dd7c1a7bf7039c7 /apps | |
parent | 494c1d741798874c865b76fcf6918c978f944257 (diff) | |
download | nextcloud-server-cc898cf346cb956d6ee73149cf5ebcbea55ef8d6.tar.gz nextcloud-server-cc898cf346cb956d6ee73149cf5ebcbea55ef8d6.zip |
fix being able to distinguish shared items on mobile
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/mobile.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index dd8244a2913..635c24c4168 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -32,6 +32,12 @@ table td.filename .nametext { width: 100%; } +/* show share action of shared items darker to distinguish from non-shared */ +#fileList a.action.permanent.shared-style { + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)" !important; + filter: alpha(opacity=70) !important; + opacity: .7 !important; +} /* always show actions on mobile, not only on hover */ #fileList a.action, #fileList a.action.action-menu.permanent { @@ -40,12 +46,6 @@ 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; -} #fileList a.action.action-menu img { padding-left: 2px; } |