userChrome/findbar: rework for FF 94 (MR 19)
Use multiple lines now, instead of making fonts tiny and hiding buttons.
This commit is contained in:
parent
eb890d187c
commit
af0073b014
1 changed files with 14 additions and 19 deletions
|
@ -2,26 +2,21 @@
|
||||||
* SPDX-License-Identifier: GPL-3.0-or-later */
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
||||||
|
|
||||||
@media (max-width: 700px) {
|
@media (max-width: 700px) {
|
||||||
/* Findbar */
|
.findbar-container {
|
||||||
[anonid="findbar-textbox-wrapper"] {
|
display: flex;
|
||||||
min-width: 160px;
|
flex-direction: row;
|
||||||
width: 160px;
|
flex-wrap: wrap;
|
||||||
|
height: 150px !important;
|
||||||
}
|
}
|
||||||
[anonid="findbar-textbox"] {
|
|
||||||
max-width: 100px;
|
.findbar-textbox {
|
||||||
min-width: 100px;
|
/* Overwrite fixed size, so the X on the right shows up */
|
||||||
width: 100px;
|
width: 100% !important;
|
||||||
}
|
}
|
||||||
.findbar-button {
|
|
||||||
font-size: 6pt;
|
.findbar-container checkbox {
|
||||||
}
|
/* Add space around the buttons, looks nicer and makes it easier to hit
|
||||||
/* Save space */
|
* them with the finger. */
|
||||||
.findbar-match-diacritics,
|
padding: 10px 0px;
|
||||||
.findbar-entire-word,
|
|
||||||
.found-matches,
|
|
||||||
.findbar-find-status,
|
|
||||||
.find-status-icon
|
|
||||||
{
|
|
||||||
display: none;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue