From 8941ef5e5314926c15ccb743bfe2798241b020e0 Mon Sep 17 00:00:00 2001 From: macneilj Date: Thu, 16 Jun 2016 14:10:19 -0400 Subject: [PATCH] max-width-patch Preview image breaks when img tags are set as max-width:100%. May be worth having this set to max-width none to catch this problem. --- magnifier.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/magnifier.css b/magnifier.css index 04c29b2..d13b707 100644 --- a/magnifier.css +++ b/magnifier.css @@ -35,7 +35,8 @@ .magnifier-large { position: absolute; - z-index: 100 + z-index: 100; + max-width: none; } .magnifier-preview { @@ -60,4 +61,4 @@ .hidden { display: none -} \ No newline at end of file +}