Made tiles use nearest-neighbor filtering in Firefox and IE as suggested by lechd.

This commit is contained in:
FrozenCow 2011-02-05 02:54:06 +01:00
parent 02add0314d
commit a6357967b7

View file

@ -181,3 +181,8 @@ a, a:visited, label {
height: 15px; height: 15px;
margin-left: 5px; margin-left: 5px;
} }
.tile img {
image-rendering: -moz-crisp-edges;
-ms-interpolation-mode: nearest-neighbor;
}