jeromegn / DocumentUp

Pretty documentation generator for Github projects with proper Readme.
http://documentup.com
883 stars 90 forks source link

Documentation renders incorrectly in Webkit browsers on Retina MBP #54

Closed elizabrock closed 12 years ago

elizabrock commented 12 years ago

The CSS directive that enables a responsive layout for mobile devices causes the navigation to be full-width in Chrome and Safari on Retina MBPs.

The selector in question:

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (max-width : 480px) {

This is on line 242 of https://github.com/jeromegn/DocumentUp/blob/master/app/stylesheets/themes/v1.styl and line 528 of https://github.com/jeromegn/DocumentUp/blob/master/app/stylesheets/themes/anne_veal.styl

jeromegn commented 12 years ago

Oh, yes I noticed that too. I fixed it locally, let me fix that quickly.

jeromegn commented 12 years ago

Fixed

elizabrock commented 12 years ago

Awesome, thanks!