Skip to content

Instantly share code, notes, and snippets.

@luoyetx
Created June 7, 2015 10:29
Show Gist options
  • Select an option

  • Save luoyetx/0e4367e30db95fb0ec32 to your computer and use it in GitHub Desktop.

Select an option

Save luoyetx/0e4367e30db95fb0ec32 to your computer and use it in GitHub Desktop.
remove bottom boder on title bars on gnome 3.16
/* ~/.config/gtk-3.0/gtk.css */
/* Get rid of unsightly line in ssd title bar and reduce button padding */
.ssd .titlebar {
border: none;
background-image: linear-gradient(to bottom,
shade(@theme_bg_color, 1.042),
shade(@theme_bg_color, 0.999));
box-shadow: none;
border-top: 1px solid shade(@theme_bg_color, 1.072);
}
.ssd .titlebar:backdrop {
background-image: linear-gradient(to bottom, @theme_bg_color);
}
.ssd .titlebar .button.titlebutton {
padding: 3px;
}
.menubar {
background-image: linear-gradient(to bottom,
shade(@theme_bg_color, 0.999),
shade(@theme_bg_color, 0.985));
border-bottom: 1px solid shade(@theme_bg_color, 0.679);
}
.menubar:backdrop {
background-image: linear-gradient(to bottom, @theme_bg_color);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment