Firefox multi-line 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
/* See imports from: https://github.com/MrOtherGuy/firefox-csshacks */ | |
@import url(chrome/multi-row_tabs.css); | |
:root{ | |
--multirow-n-rows: 2; | |
--multirow-tab-min-width: 170px; | |
} | |
/** | |
* Style the Tab's closing icon | |
*/ | |
.tabbrowser-tab:not([pinned]) .close-icon { | |
fill: #c00 !important; | |
border: solid 1px #ccc !important; | |
display:-moz-box !important; | |
} | |
/** | |
* Style the active tab | |
*/ | |
.tab-background[selected="true"] { | |
background-color: #b6dbe3!important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment