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

Zoom needs to go lower for HiDPI screens #67

Open thermoplastics opened 9 years ago

thermoplastics commented 9 years ago

Using Neater Bookmarks on Win 8.1 on a 3200x1800 screen and the text is way too big. In the options the accessibility setting "zoom" only allows the plugin to go down to 90%. That is still too big and needs to be able to go lower, preferably as low as someone wants to set.

tools-diorama commented 8 years ago

Here is a hack using the 'Custom Styles' option

Insert the following code:

body[data-zoom='90']>*:not(menu), body[data-zoom='90'] menu[type=context] command{ zoom: .7; }

The above code will change the 90% zoom to 70% (zoom:.7) which is ok for Full HD.Increase or decrease the zoom factor to find out what is best for you.

thermoplastics commented 8 years ago

Works great, thanks!