[Github-comments] Re: [geany/geany] Add a 1px black border around the tab-switcher (Issue #3797)
>[...] did it work using "menu" as the selector in the CSS? That works for me: ``` menu {border: 1px solid black} ``` Then indeed not only the tab-switcher has a border but also the menu-list of each item of the menu bar. It is good to have it like this to make also there a clear separation between content and the rest around. Thank you so much for your help. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3797#issuecomment-2025124560 You are receiving this because you are subscribed to this thread. Message ID:
[Github-comments] Re: [geany/geany] Add a 1px black border around the tab-switcher (Issue #3797)
Closed #3797 as completed. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3797#event-12281140018 You are receiving this because you are subscribed to this thread. Message ID:
[Github-comments] Re: [geany/geany] Add a 1px black border around the tab-switcher (Issue #3797)
@ralf3u did it work using "menu" as the selector in the CSS? -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3797#issuecomment-2024823504 You are receiving this because you are subscribed to this thread. Message ID:
[Github-comments] Re: [geany/geany] Add a 1px black border around the tab-switcher (Issue #3797)
> @eht16 The popup is a dynamically created menu, can you invoke the inspector > while it remains visible? No :(. This is what I meant with "I failed to pick the mentioned menu" above. But maybe it is possible and it is just me not getting it. Maybe a search engine can help on this or some GTK expert. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3797#issuecomment-2024690516 You are receiving this because you are subscribed to this thread. Message ID:
[Github-comments] Re: [geany/geany] Add a 1px black border around the tab-switcher (Issue #3797)
I see now. Yes, different popup. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3797#issuecomment-2017027850 You are receiving this because you are subscribed to this thread. Message ID:
[Github-comments] Re: [geany/geany] Add a 1px black border around the tab-switcher (Issue #3797)
@xiota h, we seem to be talking about different things. Here (Geany 1.38 and 2.0) shift+f10 does not create a dialog, it creates a popup menu, which isn't named. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3797#issuecomment-2016996898 You are receiving this because you are subscribed to this thread. Message ID:
[Github-comments] Re: [geany/geany] Add a 1px black border around the tab-switcher (Issue #3797)
Unknown reason, the tab switcher dialog on my computer is named GeanyDialog, and the CSS I pasted does work. Maybe the switcher dialog should be assigned a name (GeanyDialogSwitcher?) so that it can be styled more easily after the next release. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3797#issuecomment-2016970972 You are receiving this because you are subscribed to this thread. Message ID:
[Github-comments] Re: [geany/geany] Add a 1px black border around the tab-switcher (Issue #3797)
@xiota does that change the tab switcher popup, AFAICT (from the code) it has no name? @ralf3u thats why I suggested using "menu" as the selector. AFAICT GeanyDialog is only used for dialogs, except for GeanyDialogSearch and GeanyDialogProject which for some reason have their own names. But as I keep saying, what things look like is set by the _user_ theme, we should not be overriding everybodys theme with our own CSS just because one theme does not do something somebody wants. Note that the theme @ralf3u uses works on normal screens, the problem is with the characteristics of epaper displays. It would be nice if the manual did not just list "some interesting" widget names and listed all of them, contributions welcome. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3797#issuecomment-2016962481 You are receiving this because you are subscribed to this thread. Message ID:
[Github-comments] Re: [geany/geany] Add a 1px black border around the tab-switcher (Issue #3797)
I added the code from the last comment in geany.css. First in geany.css that is located in .config/geany/, and then in geany.css that is located in /usr/share/geany/. After a restart of Geany the tab-switcher has still no border. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3797#issuecomment-2016961929 You are receiving this because you are subscribed to this thread. Message ID:
[Github-comments] Re: [geany/geany] Add a 1px black border around the tab-switcher (Issue #3797)
I found the name "GeanyDialog". Maybe following should be added to default `geany.css` because the existing dialog (at least on my computer) is a borderless rectangle that blends in with the background. ``` #GeanyDialog { border-width: 2px; border-style: solid; border-color: black; } ``` -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3797#issuecomment-2016955115 You are receiving this because you are subscribed to this thread. Message ID:
[Github-comments] Re: [geany/geany] Add a 1px black border around the tab-switcher (Issue #3797)
@ralf3u > > You could try applying it to all menus [...] > How? menu?? Most GTK classes have the CSS nodes specified in the docs, like [menu](https://docs.gtk.org/gtk3/class.Menu.html#css-nodes) @eht16 The popup is a dynamically created menu, can you invoke the inspector while it remains visible? -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3797#issuecomment-2016951071 You are receiving this because you are subscribed to this thread. Message ID:
[Github-comments] Re: [geany/geany] Add a 1px black border around the tab-switcher (Issue #3797)
Maybe the GTK Inspector can help, https://wiki.gnome.org/Projects/GTK/Inspector. Basically, enable it by executing `gsettings set org.gtk.Settings.Debug enable-inspector-keybinding true` and then start it from within Geany with the keyboard shortcut `Control-Shift-D`. The inspector allows to pick various GUI objects and show the CSS path. However, I failed to pick the mentioned menu. Surely there is some trick to get it. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3797#issuecomment-2016882890 You are receiving this because you are subscribed to this thread. Message ID:
[Github-comments] Re: [geany/geany] Add a 1px black border around the tab-switcher (Issue #3797)
>You could try applying it to all menus [...] How? -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3797#issuecomment-2016824876 You are receiving this because you are subscribed to this thread. Message ID:
[Github-comments] Re: [geany/geany] Add a 1px black border around the tab-switcher (Issue #3797)
Only the listed selectors exist, the popup isn't named. You could try applying it to all menus and see if it ruins the normal menus, or maybe even makes them clearer as well. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3797#issuecomment-2016668967 You are receiving this because you are subscribed to this thread. Message ID:
[Github-comments] Re: [geany/geany] Add a 1px black border around the tab-switcher (Issue #3797)
>I don't remember if 1.38 has Tools->Configuration Files->geany.css to handle >all the copying and stuff Yes, it has. > You can make tweaks using geany.ccs I know that I have to add the value `border: 1px solid black;`, but I don't know the selector name. On this webpage https://www.geany.org/manual/dev/geany.txt, there is this text: >Geany offers a number of CSS IDs which can be used to taylor its appearance. >Among the more interesting include: I tried in geany.css different selector names, like ``` #geany-tab-switch #geany-tabswitcher #geany-tab-switcher #geany-switcher #geany-switch ``` but it does not work. Where do I find some more CSS IDs? Thank you for an answer in advance. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3797#issuecomment-2016535006 You are receiving this because you are subscribed to this thread. Message ID:
[Github-comments] Re: [geany/geany] Add a 1px black border around the tab-switcher (Issue #3797)
Things like this are not controlled by Geany, they are controlled by the GTK theme. You can make tweaks using geany.ccs, (I don't remember if 1.38 has `Tools->Configuration Files->geany.css` to handle all the copying and stuff) but having no experience with ePaper displays and their interaction with themes and don't know of other contributors who use them you may have to experiment with it yourself. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3797#issuecomment-2016521906 You are receiving this because you are subscribed to this thread. Message ID: