mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2025-04-05 11:28:29 +00:00
33 lines
1,021 B
CSS
33 lines
1,021 B
CSS
/* Copyright 2021 Oliver Smith
|
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
|
|
|
@media (max-width: 700px) {
|
|
/* 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;
|
|
}
|
|
}
|