evanshultz / neater-bookmarks

A neater bookmarks tree popup extension for Chrome
https://chrome.google.com/webstore/detail/ofgjggbjanlhbgaemjbkiegeebmccifi
MIT License
215 stars 61 forks source link

Support @media queries and remove height limit #66

Closed mgutt closed 9 years ago

mgutt commented 9 years ago

I tried to change the CSS depending on the resolution:

@media (min-width:1200px) { body {
    width: 480px;
    height: 800px;
    max-height: 800px; /* prevent double scrollbars in popup */
}}

But they are not supported and it seems that it is not possible to raise the height over 600px?!

evanshultz commented 9 years ago

The popup maximum height is fixed by Google. This is covered in many places online, including the GitHub page for Neater Bookmarks at https://github.com/evanshultz/neater-bookmarks.

mgutt commented 9 years ago

What a pity. Thanks for your answer.