From 9df4f6081422f263cb33db6b5830cda6524fd4b5 Mon Sep 17 00:00:00 2001 From: Nick Hynes Date: Tue, 3 Jan 2017 08:49:46 -0500 Subject: [PATCH] Use correct CSS property to disable img interp --- static/style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/static/style.css b/static/style.css index 7991e65..6fb2c4c 100644 --- a/static/style.css +++ b/static/style.css @@ -131,7 +131,11 @@ button:hover, a:hover { } .content-image { - image-rendering: pixelated; + image-rendering: -moz-crisp-edges; /* Firefox */ + image-rendering: -o-crisp-edges; /* Opera */ + image-rendering: -webkit-optimize-contrast; /* Webkit */ + image-rendering: crisp-edges; + -ms-interpolation-mode: nearest-neighbor; /* IE */ } .window-plot {