mobile-config-firefox/src/userChrome/appMenu.css

49 lines
1.2 KiB
CSS
Raw Normal View History

2021-05-20 20:06:56 +00:00
/* Copyright 2021 Oliver Smith
2021-11-18 17:59:46 +00:00
* SPDX-License-Identifier: GPL-3.0-or-later */
2020-08-06 14:39:33 +00:00
@media (max-width: 700px) {
2021-11-18 17:59:46 +00:00
.subviewbutton,
.toolbaritem-combined-buttons {
font-size: 8pt;
}
2021-11-18 17:59:46 +00:00
#appMenu-protection-report-button,
#appMenuRestoreLastSession,
#appMenu-customize-button,
#appMenu-open-file-button,
#appMenu-more-button,
#appMenu-developer-button,
#appMenu-whatsnew-button,
#appMenu-help-button,
#appMenu-quit-button {
display: none;
}
2021-11-18 17:59:46 +00:00
toolbarseparator {
display: none;
}
2021-11-18 17:59:46 +00:00
/* Zoom/edit: move controls to the left (so they are visible), hide
* label (it's obvious what they do) and spacer */
#appMenu-zoom-controls spacer,
#appMenu-zoom-controls label,
#appMenu-edit-controls spacer,
#appMenu-edit-controls label {
display: none;
}
2021-11-18 17:59:46 +00:00
/* Zoom/edit: center the controls somewhat */
#appMenu-zoom-controls {
padding-left: 20px;
}
#appMenu-edit-controls {
padding-left: 15px;
}
2021-11-18 17:59:46 +00:00
/* Zoom: hide fullscreen button (not possible to exit fullscreen
* without keyboard) */
#appMenu-fullscreen-button {
display: none;
}
}