Last active
May 6, 2019 22:39
-
-
Save Tiamarth/42593168bd59d9401451ffa2fd4be3d7 to your computer and use it in GitHub Desktop.
Alternate Vivaldi horizontal scrolling tabs
This file contains 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
#tab-container:is(.top, .bottom) { | |
overflow-y: hidden; | |
overflow-x: scroll; | |
margin-left: 40px; | |
max-width: 83% !important; | |
} | |
#tab-container:is(.top, .bottom)::-webkit-scrollbar { | |
display: none; | |
} | |
#tab-container:is(.top, .bottom).top .tab-strip { | |
display: flex !important; | |
} | |
#tab-container:is(.top, .bottom).top .tab-position { | |
position: relative !important; | |
left: auto !important; | |
top: auto !important; | |
min-width: 70px; | |
} | |
.tab-position .tab-header .title { | |
min-width: 70px; | |
} | |
#tab-container:is(.top, .bottom) .newtab { | |
position: absolute !important; | |
left: auto !important; | |
z-index: 9 !important; | |
} | |
#tab-container:is(.top, .bottom) .sync-and-trash-container { | |
position: absolute; | |
right: 100px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment