Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

address bar input mode overflows sidebar #84

Open
luutuankiet opened this issue Nov 27, 2024 · 5 comments
Open

address bar input mode overflows sidebar #84

luutuankiet opened this issue Nov 27, 2024 · 5 comments

Comments

@luutuankiet
Copy link

luutuankiet commented Nov 27, 2024

Describe the bug
Just today my address bar when expanded overflows the sideberry bar as screenshot shown.

To Reproduce
I'm not sure if this has to do with sideberry or conflicts in my config, or a firefox update.
Can you point me to where I might troubleshoot this issue?

Expected behavior
The expanded address bar should not overflow sideberry's sidebar

Screenshots

image

Desktop (please complete the following information):

  • OS: MacOS 14.6.1
  • Browser : Firefox
  • Version : 133.0

Additional context
I've done a fresh install of this addon from the top, issue still persists

  1. renamed current chrome folder
  2. git clone the repo
  3. copy the repo chrome in place of the old one.
@luutuankiet
Copy link
Author

this went away if I commented the urlbar.css import from userChrome.css :

/* Edge-Frfox main files */
@import url("icons/icons.css");
@import url("toolbar/tabbar.css");
@import url("toolbar/navbar.css");
@import url("toolbar/personalbar.css");
@import url("toolbar/findbar.css");
/*@import url("toolbar/urlbar.css");*/ /* <<<< commenting this out fixed it */
@import url("global/colors.css");
@import url("global/popup.css");
@import url("global/browser.css");
@import url("global/tree.css");

/* Edge-Frfox tweaks */
@import url("global/tweaks.css");
@import url("tweaks/hide-tabs-bar.css") (-moz-bool-pref: "uc.tweak.hide-tabs-bar");

/* Import custom stylesheet instead of modifying Edge-Frfox theme files. */
@import url("custom.css");

@hastors
Copy link

hastors commented Nov 28, 2024

@luutuankiet

/* Edge-Frfox main files /
@import url("icons/icons.css");
@import url("toolbar/tabbar.css");
@import url("toolbar/navbar.css");
@import url("toolbar/personalbar.css");
@import url("toolbar/findbar.css");
/
@import url("toolbar/urlbar.css");/ / <<<< commenting this out fixed it */
@import url("global/colors.css");
@import url("global/popup.css");
@import url("global/browser.css");
@import url("global/tree.css");

/* Edge-Frfox tweaks */
@import url("global/tweaks.css");
@import url("tweaks/hide-tabs-bar.css") (-moz-bool-pref: "uc.tweak.hide-tabs-bar");

/* Import custom stylesheet instead of modifying Edge-Frfox theme files. */
@import url("custom.css");
`

With these settings, when the sidebar is collapsed, this configuration prevents it from expanding when the cursor hovers over itcursor.

@luutuankiet
Copy link
Author

@hastors thanks for checking in - but could you review your code snippet response again as it's identical to the original code I posted?

@luutuankiet
Copy link
Author

tweaked this line in file chrome/toolbar/urlbar.css seems to help. I dont' have much experience with css, would be great if anyone can point me to how this worked

#urlbar[breakout][breakout-extend] {
  /* left: 0 !important; */
  width: 80% !important;
}

@luklokkes
Copy link

tweaked this line in file chrome/toolbar/urlbar.css seems to help. I dont' have much experience with css, would be great if anyone can point me to how this worked

#urlbar[breakout][breakout-extend] {
  /* left: 0 !important; */
  width: 80% !important;
}

Worked for me, thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants