From f2552736dcba817a6709df8064b510848b8d90f7 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Wed, 22 Jun 2016 18:10:06 +0200 Subject: [PATCH] Drop shadow added to images in details view --- app/assets/stylesheets/_settings.scss | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/_settings.scss b/app/assets/stylesheets/_settings.scss index 50736bf..df8abd4 100644 --- a/app/assets/stylesheets/_settings.scss +++ b/app/assets/stylesheets/_settings.scss @@ -768,7 +768,15 @@ html, body { img { - filter: drop-shadow( 0px 0px 5px #888888 ); + box-shadow: 0px 0px 5px #000000; + } +} + +.fancybox +{ + img + { + box-shadow: 0px 0px 5px #000000; } }