Skip to content
Snippets Groups Projects
Unverified Commit 31371140 authored by Peter Mack's avatar Peter Mack Committed by Oliver Smith
Browse files

Fixing urlbar popout on current Firefox

Remaining issues:
- narrow suggestion window in FF 136
- vertical order and spacing could be better

Part-of: !75
parent db0128e2
Branches master
Tags 4.5.0
1 merge request!75Fixing urlbar popout on current Firefox
Pipeline #217852 passed
/* Copyright 2022 Oliver Smith
/* Copyright 2025 Oliver Smith, Peter Mack
* SPDX-License-Identifier: MPL-2.0 */
/* Reduce minimum window width */
......@@ -65,6 +65,27 @@
display: none;
}
/* Fixing invisible URL bar on FF 133+ */
#urlbar[breakout][breakout-extend] {
width: --urlbar-width !important;
bottom: 0 !important;
z-index: 5 !important;
}
@media not (-moz-bool-pref: "mcf.addressbarontop") {
#urlbar[breakout][breakout-extend] {
top: 0 !important;
align-content: flex-end !important;
}
}
@media (-moz-bool-pref: "mcf.addressbarontop") {
#urlbar[breakout][breakout-extend] {
top: calc(1.1 * --urlbar-container-height) !important;
align-content: flex-start !important;
}
}
/* Label of "identity icons", e.g. firefox specific pages look weird
* when ellipsed, e.g. "F..x" instead of "Firefox". So just hide this
* label. The icon itself is still visible. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment