lyncd

Remove ugly black line from under Gnome 3 window title bar

If you found this page, you probably don’t like the black border line that Gnome 3.16 added underneath the window title bar. I just came across it when I upgraded to Fedora 23. The old title bar used to blend seamlessly into the window background, but not anymore.

Anyway thanks to this thread and this post, there’s any easy fix. Just add this to ~/.config/gtk-3.0/gtk.css

/* No line below the title bar */
.ssd .titlebar {
  border-width: 0;
  box-shadow: none;
}

Filed under: Code.  Tagged: , .

1 comment »

  • Here’s the Fedora 25 version, with a little smoother blending:

    .ssd .titlebar {
    	border-width: 0;
    	box-shadow: none;
    	background-image: linear-gradient(to bottom,
    		shade(@theme_bg_color, 1.05),
    		shade(@theme_bg_color, 1.00));
    }
    TerminalWindow .titlebar {
    	border-width: 0;
    	box-shadow: none;
    	background-image: linear-gradient(to bottom,
    		shade(@theme_bg_color, 1.05),
    		shade(@theme_bg_color, 1.00));
    }