Godiesc / firefox-one

Firefox Theme for Opera One skin Lovers
Mozilla Public License 2.0
301 stars 8 forks source link

Menu popout for bookmark folders cover the rest of the bookmarks bar. #25

Closed mantacid closed 7 months ago

mantacid commented 7 months ago

Just as the title says, the popout menus for bookmark folders block the other bookmarks below them. I've tried to move the menus with a CSS transform, but that still didn't let me preview folder contents by hovering. I've tried position: relative, I've tried margin-left: 20px;, all to no avail.

Godiesc commented 7 months ago

hi, try to upload a screenshot of your problem, is the easiest way to see the issue. If I understand you, you want to move the bookmarks menu popup a little to the right, put this code to one_tricks.css

#PlacesToolbarItems > .bookmark-item >  menupopup, #OtherBookmarks #OtherBookmarksPopup {
        margin-inline-start: calc(var(--padding-left-tab) - 0px) !important;
        margin-top: -56px  !important;
    }
mantacid commented 7 months ago

image

There are two other folders under this pop out that I want to be able to see.

Godiesc commented 7 months ago

I gave you the code to fix that. 👍

mantacid commented 7 months ago

You did? When? the code earlier in this issue addressed the "other bookmarks" pop-out, right? When I attempted to solve the problem myself, I used the browser debugger and found the selector to be toolbarbutton.bookmark-item[type="menu"] > menupopup.toolbar-menumenupopup

EDIT: I have no idea how that just worked. Thanks!

Godiesc commented 7 months ago

there are 2 selectors in the code I gave you, one for normal bookmark folders and the other for the "other bookmarks" folder.

mantacid commented 7 months ago

That makes sense. I didn't see the comma there.

Godiesc commented 7 months ago

I added this change in the last release of the theme. 👍