Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wojtekadams/e2d4aa9d52aa2552b4cb19091a746a61 to your computer and use it in GitHub Desktop.

Select an option

Save wojtekadams/e2d4aa9d52aa2552b4cb19091a746a61 to your computer and use it in GitHub Desktop.
CSS for KDE Konsole minimal, lighter, dark tabs
QTabBar,
QTabBar::tab
{
/* font-size: 11px;*/
/* height: 16px; */
padding: 2px;
border: 0px;
border-bottom: 3px solid palette(dark);
background-color: palette(dark);
color: palette(text);
}
QTabBar::tab:hover
{
text-decoration: underline;
}
QTabBar::tab:selected
{
font-weight: bold;
background-color: palette(window);
border: 0px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 palette(window), stop: 0.85 palette(window), stop: 1 palette(highlight));
}
@wojtekadams
Copy link
Author

Settings -> Configure Konsole... -> TabBar

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment