-
Notifications
You must be signed in to change notification settings - Fork 259
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
Unwanted transparent pane separators #293
Comments
What version is this? I think I fixed this in a PR a month or so ago |
Sorry for my shitty and uninformative issue 🤦♂️ . I'll build the latest release and notify if the problem is still present. |
On Arch Linux I also have the same transparent separator between vertical panes, as in the above picture. |
I also have this issue. I upgraded 1.92 to 2.0.1 where the problem occurred (from repository) then downloaded and installed 2.10. Problem still there. I noted terminal separator size was "-1" which according to the documentation makes it default to the system theme. The separators where also quite big as in the picture from pedroflor above. I set a size of 1 (which overwrites the system setting) and the size of the separate is no 1 pixel (what I want) but they are still transparent. I have spent few hours researching gtk.css /usr/share/themes/Mint-Y/gtk-3.0 nd /usr/share/terminator/gtk.css (which did not exist) and nothing I found helps. I have thinking it is a theme issue with Linux Mint. I am running Linux Mint 20 Cinnamon, Cinnamon version 4.6.7 with the Mint-> theme. No idea really what I need to change to get rid of these awful transparent separators... I want to set them white. |
Whatever theme you're using is not setting the CSS property for the pane separator. you can set this yourself if you add or edit
Or whatever colour you prefer. Ideally, your GTK theme should be setting this. |
Thanks @mattrose for the comment. As I showed before, that CSS solution (set the Let me know if I haven't explained myself well or if I'm missing something here. |
ah, there should be a CSS property that determines that. I'll see if I can dig that up for you. |
I though the same, but didn't know where to look for CSS properties of gtk (is there something as the browser inspector but for gtk applications?) Thanks again for the help! |
Indeed there is. https://wiki.gnome.org/Projects/GTK/Inspector. Basically, to start it, make sure you have the gtk development packages installed, and run |
Wow! That's amazing! I was able to run GtkInspector (you're right that it's kind of confusing at first) and find the CSS code needed to remove the border of the tabs. The problem was with the border of So, if you want to remove the borders, you need to add the following to your notebook, notebook header {
border: 0px;
} Alternatively, you can change the color of the border through CSS. notebook, notebook header {
border-color: white;
} Thanks again @mattrose for the guidelines! Now I think this issue is closed and solved. |
Glad to have helped. That GTK inspector is a gem once you get used to it. |
When opening more than one tab, the tab separators look transparent using Matcha Dark-Sea theme on Manjaro XFCE.
I don't know if this is caused by a bug on terminator or a problem with the theme itself (I don't have the problem using another theme, like Adwaita). If the problem is theme-related, is there a way to set the color of the separators on
gtk.css
?For the record, I had to set the color of the terminal separators (when tiling), otherwise they also look transparent using the same theme:
The text was updated successfully, but these errors were encountered: