Tilix: White border on dark theme

Created on 23 Feb 2017  路  6Comments  路  Source: gnunn1/tilix

I just upgrade to 1.4.9-2.0.0, and now I got a white border below the menu:
captura de pantalla de 2017-02-23 11-59-02

I'm using ubuntu 16.04.02, with Numix theme.

Thanks!!!

Can't Reproduce bug

Most helpful comment

I think the issue is because of this CSS in terminix:

.terminal-titlebar {
    border-bottom: 1px solid @borders;
}

Either Numix does not declare a borders color or it is declaring a white one. You can fix it my overriding the style in ~/.config/gtk-3.0/gtk.css as follows:

.terminal-titlebar {
        border-color: black;
}

Change black to whatever color works best for you.

All 6 comments

This issue was reported on Numix theme repository too. Not sure if it's an upstream issue or it requires a patch on terminix side

I'm not seeing the issue here with Numix, I'll wait to see what the Numix folks have to say.

screenshot from 2017-02-23 10-42-08

I also tried it with CSD disabled and toolbar hidden which is what I think the OP has configured, I'm still not able to reproduce it.

I am not able to reproduce either. I will try on Gtk-3.22.

@gnunn1 see https://github.com/numixproject/numix-gtk-theme/issues/655#issue-208975154 I have this problem with Ubuntu 16.04. Terminix+Numix is fine on Ubuntu 16.10.

I think the issue is because of this CSS in terminix:

.terminal-titlebar {
    border-bottom: 1px solid @borders;
}

Either Numix does not declare a borders color or it is declaring a white one. You can fix it my overriding the style in ~/.config/gtk-3.0/gtk.css as follows:

.terminal-titlebar {
        border-color: black;
}

Change black to whatever color works best for you.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

honze-net picture honze-net  路  3Comments

sirex picture sirex  路  3Comments

gnunn1 picture gnunn1  路  3Comments

tomtobac picture tomtobac  路  3Comments

zsrinivas picture zsrinivas  路  4Comments