Skip to content

Instantly share code, notes, and snippets.

@hliang
Last active August 29, 2015 13:58
Show Gist options
  • Save hliang/10403858 to your computer and use it in GitHub Desktop.
Save hliang/10403858 to your computer and use it in GitHub Desktop.
makes tab bar distinguishable

In Ubuntu 12.10, tabbed interfaces such as in gnome-terminal under unity it is difficult to visually distinguish the selected tab from the unselected ones.

Modify ~/.config/gtk-3.0/gtk.css to solve this problem.

TerminalWindow .notebook tab {
    background-color: #D1D0CE;
}
TerminalWindow .notebook tab:active {
    background-color: #FFF5EE;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment