![Firefox logo](https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/products/2020-04-14-08-36-13-8dda6f.png)
Sidebar width reduction via userChrome
Hello.
It seems I get a problem or two almost always with a new update lately. I have been using an userChrome.css to reduce the width of sidebar but the latest version 107.0 now ignores it and have a wide width even at the narrowest. Mine currently is set as, "#sidebar {min-width:30px !important; max-width:none !important;}" This no longer works. Your support much appreciated.
Regards,
Τροποποιήθηκε στις
Επιλεγμένη λύση
In 107 they have moved the min-width and max-width settings to #sidebar-box, what sounds more logical to me as that is currently the outer containing element.
Current code:
#sidebar-box { min-width: 14em; max-width: 36em; width: 18em; }
Ανάγνωση απάντησης σε πλαίσιο 👍 2
Όλες οι απαντήσεις (2)
Επιλεγμένη λύση
In 107 they have moved the min-width and max-width settings to #sidebar-box, what sounds more logical to me as that is currently the outer containing element.
Current code:
#sidebar-box { min-width: 14em; max-width: 36em; width: 18em; }
Τροποποιήθηκε στις
cor-el, thank you very much! Much appreciated. :)