Skip to content

Instantly share code, notes, and snippets.

@yantonov
Created June 20, 2014 00:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save yantonov/efab3b877c5812593c38 to your computer and use it in GitHub Desktop.
Save yantonov/efab3b877c5812593c38 to your computer and use it in GitHub Desktop.
Highlight current tab for ubuntu terminal (~/.config/gtk-3.0/gtk.css)
TerminalWindow .notebook {
padding: 0;
border-width: 0;
}
TerminalWindow,
TerminalWindow.background {
background-image: none;
background-color: #6e6e6e;
color: #000000;
}
TerminalWindow .notebook tab {
padding: 0;
border-image: none;
border-width: 0;
background-color: #6e6e6e;
}
TerminalWindow .notebook tab:active {
padding: 0;
border-image: none;
border-width: 0;
background-color: #d1d1d1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment