mobile-config-firefox/src/userChrome/findbar.css
Oliver Smith 94f48b2c87
userChrome: fix convergence usage case
Only apply rules from userChrome.css if the screen width is 700px or
less.
2020-11-25 19:21:56 +01:00

27 lines
486 B
CSS

/* Copyright 2020 Oliver Smith
SPDX-License-Identifier: GPL-3.0-or-later */
@media (max-width: 700px) {
/* Findbar */
[anonid="findbar-textbox-wrapper"] {
min-width: 160px;
width: 160px;
}
[anonid="findbar-textbox"] {
max-width: 100px;
min-width: 100px;
width: 100px;
}
.findbar-button {
font-size: 6pt;
}
/* Save space */
.findbar-match-diacritics,
.findbar-entire-word,
.found-matches,
.findbar-find-status,
.find-status-icon
{
display: none;
}
}