Revisions
-
mm201 revised this gist
Nov 1, 2012 . 1 changed file with 7 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,11 @@ @media only screen and (min--moz-device-pixel-ratio: 1.5), /* Gecko */ only screen and (-o-min-device-pixel-ratio: 3/2), /* Opera */ only screen and (-webkit-min-device-pixel-ratio: 1.5), /* Webkit */ only screen and (min-device-pixel-ratio: 1.5), /* Webkit */ only screen and (min-resolution: 144dpi) /* W3 */ { .button-icon { background-image: url("path/to/image/[email protected]"); background-size: 16px 16px; } } -
alainmeier created this gist
Jul 16, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ @media only screen and (-webkit-min-device-pixel-ratio: 1.5) { .button-icon { background-image: url("path/to/image/[email protected]"); background-size: 16px 16px; } }