diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-08-25 14:25:21 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-08-25 14:25:21 +0200 |
commit | ee69a29f2ff7ec37ca6973b99d0edd4a6451ef71 (patch) | |
tree | b34d849d130aae7b80560396a255f9bb46747d00 /apps/files/css | |
parent | 7b8bd8188e96f36ea2bc10d43446cfed89f4c9d1 (diff) | |
download | nextcloud-server-ee69a29f2ff7ec37ca6973b99d0edd4a6451ef71.tar.gz nextcloud-server-ee69a29f2ff7ec37ca6973b99d0edd4a6451ef71.zip |
Fix permanent display of favorite icon
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.scss | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 5f32916650d..55ce58111c1 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -617,6 +617,12 @@ a.action > img { opacity: .7; } +#fileList .action.action-favorite.permanent { + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; + filter: alpha(opacity=100); + opacity: 1; +} + #fileList .fileActionsMenu a.action:hover, #fileList .fileActionsMenu a.action:focus, /* show share action of shared items darker to distinguish from non-shared */ |