Hacker News has native mobile view
news.ycombinator.com
Hacker News has native mobile view
1–10 of 48 posts
Re: Hacker News has native mobile view
#2I just noticed it when checking on my iphone. That's all I know. Couldn't wait to share the news.
Re: Hacker News has native mobile view
#3I suspect the number of stories that get flagged is about to decline dramatically.
Re: Hacker News has native mobile view
#4Why the margins on an iphone 5?
Re: Hacker News has native mobile view
#5Seems pretty terrible. It has big huge white bars on the sides squishing the content to be nearly unreadable. I can't even manage to hit the arrows instead of the links as well.
Re: Hacker News has native mobile view
#6Does the job well for the home page ! But comments are still as hard to read through.
Re: Hacker News has native mobile view
#7Is there a way of choosing the regular view for a mobile device? Windows Phone rendered the old home page very well, but now each story takes up a lot more space and it's no longer possible to take in a large number of stories without a lot of scrolling.
Re: Hacker News has native mobile view
#8Works great for me so far.
Re: Hacker News has native mobile view
#9This is pretty cool, but how did you find this?
Re: Hacker News has native mobile view
#10The size of the comment box needs to be reduced. Right now, it's stretching out the comments pages.
Native: https://www.dropbox.com/s/tni84vod5giq9ky/Screenshot_2013-08...
Eliminated the 85% max width and reduced the comments box to 40 cols, and set padding: 0 on :
https://www.dropbox.com/s/047b5zkheguk8lz/2013-08-21%2016.27...
Just remove the hardcoded 85% width and 60 cols and toss this into the CSS:
form textarea { width: 500px; }
body > center > table { width: 85%; }
@media(max-device-width: 1024px) {
form textarea { width: 80%; }
body { padding: 0; }
body > center > table { width: 100%; }
}