fastaddons / GroupSpeedDial

This repository is for tracking bugs and documentation only
Other
57 stars 5 forks source link

Any way to hide the + And Context Menu request #276

Open piotrnikov opened 1 year ago

piotrnikov commented 1 year ago

Hello!

Thanks for your awesome extension!! Is there any way to hide this +?

Screenshot 2023-08-26 at 12 31 37 copy

Can't seem to find the option... And also could it be possible invoke this menu Screenshot 2023-08-29 at 10 05 17

anywhere on the dial page? Not just on the Group tab? Thanks again :)

Juraj-Masiar commented 1 year ago

Hello, If the option to hide the "+" doesn't work for some reason (although I can't see why it wouldn't work - what browser and addon version do you use?), there is a workaround that will 100% work:

  1. open Options page / General tab
  2. in the Custom CSS styles field enter this:
    #groups > a:last-of-type {
    display: none;
    }

Regarding your second question - some options like "Edit group" is available even when you click a dial or when you open main menu. But why would you like to see all those options?

piotrnikov commented 1 year ago

Hello again and thanks for helping! . The option to hide + concerns the plus sign next to the group name (up top), not the plus sign after the last dial of the group (see screenshot). Is there a way to hide this one? . My second question concerns where that particular context menu (screenshot) is available. Right now it's only at the top where the group names are. So if I want to use Open all dials I have to go up there (as opposed to anywhere in the group window). I hope it's clearer...

Juraj-Masiar commented 1 year ago

Oh, I see, the huge plus dial that's used to add new dials to the group cannot be hidden, how would you then add new dials to the group? But if you know what you are doing, you can hide it using this custom CSS style:

.dynamic > .dials > a:last-of-type {
  display: none;
}

Regarding the context menu, I could add new optional "Open all dials" option to the context menu when you right click empty space on the page.

tinukedaya commented 12 months ago

I too would love some easier way to remove the "add new dial" dial. If I'd like to add new dial I'm fine with toggling the "hide" option temporarily, or better yet, it would be nice to have as additional right-click menu option in the group here image

Juraj-Masiar commented 11 months ago

@tinukedaya good idea! I'll look into it. I could also add "Hide plus button" to the context menu when you right click the plus button to make is super simple.

borisBelloc commented 7 months ago

Hello, i'm also looking for an option to hide the "+" in group view. is there is an hidden option or do we still need to edit the css ?

Juraj-Masiar commented 7 months ago

Hello, I have this in my top 10 on my todo list, so it should come in a near future. But until then, using the CSS hack is completely fine :) I was also thinking about making it less visible (by making it translucent a bit), for example try to use this CSS:

.dynamic .dial.is_plus { opacity: 0.6 }

Or maybe 0.5 or less.