restores the normal Firefox layout in Bookmarks > Manage Bookmarks.
Zen's field wrappers were treated as single grid cells, misaligning the
labels and inputs. it also hides the unused Space selector controls in
the Library. `editBookmark.js `disables the selector in this context but
its related elements remained visible.
https://github.com/user-attachments/assets/f241f8f5-ff91-450a-9f53-9bfd74e117f4
(the before styling in the original issue is also on macOS which I
reproduced on my own)
closes#14770
When dragging a tab from the blank window to the main window, the blank
window doesn't close because '#isLastTabWindow' considers
'zen-empty-tab' as a normal tab.
fixes: #14165
Two things I want to ask:
- This does fix the issue but I wanted to ask if we should maybe change
the background tab toast message to notify user that it was routed to
another space.
- Another thing is that the background tab toast does not appear when
the sidebar is in view which I know is intentional but maybe it should
be shown even then when tabs are being routed.
---------
Signed-off-by: mr. m <91018726+mr-cheffy@users.noreply.github.com>
Co-authored-by: mr. m <91018726+mr-cheffy@users.noreply.github.com>
Fixes#13857.
This updates the toolbar share button to use Zen's shared icon set
instead of the upstream Firefox asset. The downloads button already
points at the Zen icon set, so this keeps the two toolbar icons visually
consistent.
Validation:
- Checked that `share-tab-button` is the Firefox toolbar share button
id.
- Confirmed the repo lint script requires the generated `engine`
checkout, which is not present in this clone.
Co-authored-by: arieleli01212 <207917221+arieleli01212@users.noreply.github.com>
This PR syncs the upstream Firefox to version 151.0.2.
* ⚠️ Some patches did not apply cleanly. Please review them carefully.
@mr-cheffy please review and merge this PR.
---------
Signed-off-by: mr. m <91018726+mr-cheffy@users.noreply.github.com>
The problem was that `input.value` was getting the raw shortcut and not
really converting it to the normalized displayable string.
There was no method to just get the `displayString` for a shortcut
without creating a new one, so I put that logic into
`gZenZenKeyboardShortcutsManager`. The static function in `KeyShortcut`
class is just to reduce code duplication.
fixes: #13767