apache / couchdb-fauxton

Fauxton is the new Web UI for CouchDB
https://github.com/apache/couchdb-fauxton
Apache License 2.0
378 stars 225 forks source link

Fix: permanent notification banner #1333

Closed Antonio-Maranhao closed 2 years ago

Antonio-Maranhao commented 2 years ago

Overview

When the permanent notification banner is displayed, the browser shows a vertical scroll bar for the whole page. This happens because the banner is located outside the App <div>, which is is set to 100% height. Therefore, the total height becomes 100% + banner height, hence the scrollbar showing.

This PR adjusts the height of the App <div> when the permanent notification is visible.

BEFORE image

AFTER image

Testing recommendations

Call Fauxton.showPermanentNotification("a msg here"); and verify the vertical scrollbar doesn't appear.

GitHub issue number

n/a

Related Pull Requests

n/a

Checklist