Created
November 13, 2017 09:51
-
-
Save fredrikhl/4cb90d222ad5a90d921549fc7389c121 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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