k-ivan / visual-bookmarks-chrome

Simple visual bookmarks extension for Google Chrome and Microsoft Edge.
https://chrome.google.com/webstore/detail/visual-bookmarks/jdbgjlehkajddoapdgpdjmlpdalfnenf
125 stars 24 forks source link

New quick panel being obscured #148

Closed visbook closed 1 year ago

visbook commented 1 year ago

Hi k-ivan

When I select thumbnails with the new Shift key function, a grey box appears in the bottom left corner that shows the web address of the thumbnail I've selected with the mouse, and the box is obscuring the new action shortcut icons. Is there a way to stop the grey box appearing? annoying box

Can I also use this opportunity to congratulate and thank you (and the team) for turning what was a very good Chrome extension into a superb one- all the newly added features in v5.11 are great and exactly what I needed!

k-ivan commented 1 year ago

Can I also use this opportunity to congratulate and thank you (and the team) for turning what was a very good Chrome extension into a superb one- all the newly added features in v5.11 are great and exactly what I needed!

Thank you, glad you like it )

When I select thumbnails with the new Shift key function, a grey box appears in the bottom left corner that shows the web address of the thumbnail I've selected with the mouse, and the box is obscuring the new action shortcut icons. Is there a way to stop the grey box appearing?

You can try playing with styles

.bookmarks-panel {
  bottom: 30px !important;
}

or

.bookmarks-panel {
  direction: rtl;
}

Perhaps in the future I will be able to find a better position.

visbook commented 1 year ago

Perhaps in the future I will be able to find a better position.

Could it be moved to the bottom centre or would the grey box just move with it?

I meant to say could the new whole Quick Action Panel be moved to the bottom centre (not the grey box). Also, sorry but I don't know how to enter the code in Brave browser to try your suggestions myself.

k-ivan commented 1 year ago

This tooltip is a browser overlay, it has some kind of length limitation, but in theory and on a small screen, it will still reach the panel.

If only the panel is made very small, I need to think about it. I don't know yet.

k-ivan commented 1 year ago

The original idea was to fit it into a grid container, but this may not be optimal in all cases.

k-ivan commented 1 year ago

Could it be moved to the bottom centre or would the grey box just move with it?

Try this

.bookmarks-panel {
  max-width: 700px !important;
}
visbook commented 1 year ago

Could it be moved to the bottom centre or would the grey box just move with it?

I meant to write could the new whole Quick Action Panel be moved to the bottom centre (not the grey box). Also, sorry but I don't know how to enter the code in Brave browser to try your suggestions myself.

k-ivan commented 1 year ago

Yes, you can move it image

visbook commented 1 year ago

Yes that works....and thanks k-ivan for finding the solution so quickly.

k-ivan commented 1 year ago

I am glad to help.

visbook commented 11 months ago

Hi k-ivan, I have been using your custom CSS to make the Quick Action Panel centred at the bottom and wondered if there is some additional code that would move the dustbin icon from the left of the folder list box over to the right side. I'm asking this because when selecting several thumbnails to perform an "open all" or "refresh thumbnail" action, a few times I have accidentally deleted them instead and lost them all, and so thought it best if the dustbin was in a different area so there'd be less chance of this happening again.

move icon

k-ivan commented 11 months ago

Hello @visbook

Try this code

button.bookmarks-panel__action:nth-child(2) {
    order: 1;
}
visbook commented 11 months ago

Brilliant, thanks k-ivan