Skip to content

Instantly share code, notes, and snippets.

@fredrikhl
Created November 13, 2017 09:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fredrikhl/4cb90d222ad5a90d921549fc7389c121 to your computer and use it in GitHub Desktop.
Save fredrikhl/4cb90d222ad5a90d921549fc7389c121 to your computer and use it in GitHub Desktop.
/* hide new tab button */
#newtab {
display: none;
}
/* hide scrollbar */
.tab {
max-width: 100vw;
}
#tablist {
margin-right: -19px; /* Value from KDE's Breeze theme; adjust as needed */
transition: margin-right 0s 1s;
}
#tablist:hover {
margin-right: 0px;
transition: margin-right 0s 4s;
}
#tablist-wrapper {
overflow-x: hidden;
}
/* reduce tabs line height */
#tablist-wrapper.shrinked .tab:not(.pinned) {
height: 20px !important;
}
/* use ellipsis on long tab titles */
.tab-title {
text-overflow: ellipsis;
padding-right: 1em;
}
/* TODO: discarded tabs */
.tab.discarded {
font-style: italic;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment