diff --git a/src/userChrome/popups.css b/src/userChrome/popups.css index 4c41e69..62e8ea0 100644 --- a/src/userChrome/popups.css +++ b/src/userChrome/popups.css @@ -13,32 +13,11 @@ bottom: 100px; } - /* Popup notifications (install add-on etc.): set max-width, remove icon and - * make font smaller so it fits the box */ - .popup-notification-body-container { - max-width: 170px; - } - .popup-notification-icon { - display: none; - } - .popup-notification-body { - font-size: 4pt; - } - - /* "Site information" (displayed when clicking the lock icon) - * Making everything so small doesn't look terribly nice, but least it fits the - * popup and everything is clickable. */ - #identity-popup-multiView .panel-viewcontainer { - font-size: 4pt; - } - #identity-popup-clear-sitedata-footer, - #identity-popup-more-info-footer { - font-size: 7pt; - } - - /* "Protections" (displayed when clicking the shield icon) - * Same reasoning for small font, as for identity-popup above. */ - #protections-popup-mainView { - font-size: 4pt; + /* Now that the navbar is at the bottom, we need to set an offset to have + * the notifications (like the one for installing addons) displayed + * on-screen. */ + #notification-popup { + margin-left: -200px !important; + margin-top: -500px !important; } }