2018-12-16 02:43:06 +00:00
|
|
|
/* Makes tabs to appear on multiple lines */
|
2019-01-24 11:35:40 +00:00
|
|
|
/* Tab reordering will not work and can't be made to work */
|
|
|
|
/* On Firefox 66 you can use multi-row_tabs_window_control_patch.css to hide window controls if you wish */
|
2018-12-16 02:43:06 +00:00
|
|
|
|
2019-01-24 11:35:40 +00:00
|
|
|
/* It's recommended to move tabs new-tab-button outside tabs toolbar */
|
|
|
|
|
2019-01-28 19:04:23 +00:00
|
|
|
/* Change the --multirow-n-rows to change maximum number of rows before the rows will start to scroll */
|
|
|
|
/* Scrollbar can't be clicked but the rows can be scrolled with mouse */
|
|
|
|
|
|
|
|
:root{ --multirow-n-rows: 3 }
|
|
|
|
|
2019-01-24 11:35:40 +00:00
|
|
|
#tabbrowser-tabs{
|
2018-12-16 02:43:06 +00:00
|
|
|
min-height: unset !important;
|
2019-01-24 11:35:40 +00:00
|
|
|
padding-inline-start: 0px !important
|
2018-12-16 02:43:06 +00:00
|
|
|
}
|
2019-01-24 11:35:40 +00:00
|
|
|
|
|
|
|
/* Test for Firefox > 66 */
|
|
|
|
@supports (inset-block:auto){
|
|
|
|
#tabbrowser-tabs > .tabbrowser-arrowscrollbox > .arrowscrollbox-scrollbox{
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2019-01-28 19:04:23 +00:00
|
|
|
overflow-y: auto;
|
|
|
|
max-height: calc(var(--tab-min-height) * var(--multirow-n-rows));
|
|
|
|
scrollbar-color: var(--toolbar-bgcolor) var(--lwt-accent-color);
|
|
|
|
scrollbar-width: thin;
|
2019-01-24 11:35:40 +00:00
|
|
|
}
|
|
|
|
#tabbrowser-tabs > .tabbrowser-arrowscrollbox {
|
|
|
|
overflow: -moz-hidden-unscrollable;
|
|
|
|
display: block;
|
|
|
|
}
|
2018-12-16 02:43:06 +00:00
|
|
|
}
|
2019-01-24 11:35:40 +00:00
|
|
|
|
|
|
|
/* Test for Firefox < 66 */
|
|
|
|
@supports not (inset-block:auto){
|
|
|
|
#tabbrowser-tabs > .tabbrowser-arrowscrollbox{
|
|
|
|
min-height: unset !important;
|
|
|
|
}
|
|
|
|
#tabbrowser-tabs .scrollbox-innerbox{
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
#tabbrowser-tabs .arrowscrollbox-scrollbox {
|
|
|
|
overflow: -moz-hidden-unscrollable;
|
|
|
|
display: block;
|
|
|
|
}
|
2018-12-16 02:43:06 +00:00
|
|
|
}
|
2019-01-24 11:35:40 +00:00
|
|
|
|
2019-01-28 19:04:23 +00:00
|
|
|
.tabbrowser-tab{ height: var(--tab-min-height); }
|
|
|
|
#tabbrowser-tabs .tabbrowser-tab[pinned]{
|
2019-01-24 11:35:40 +00:00
|
|
|
position: static !important;
|
|
|
|
margin-inline-start: 0px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabbrowser-tab[fadein]:not([pinned]){
|
2018-12-16 02:43:06 +00:00
|
|
|
min-width: 100px !important;
|
|
|
|
flex-grow: 1;
|
|
|
|
/*
|
|
|
|
Uncomment to enable full-width tabs, also makes tab dragging a tiny bit more sensible
|
|
|
|
Don't set to none or you'll see errors in console when closing tabs
|
|
|
|
*/
|
|
|
|
/*max-width: 100vw !important;*/
|
|
|
|
}
|
2019-01-24 11:35:40 +00:00
|
|
|
|
|
|
|
.tabbrowser-tab > stack{ width: 100%; height: 100% }
|
|
|
|
|
|
|
|
#tabbrowser-tabs .scrollbutton-up,
|
|
|
|
#tabbrowser-tabs .scrollbutton-down,
|
|
|
|
#alltabs-button,
|
|
|
|
:root:not([customizing]) #TabsToolbar #new-tab-button,
|
2019-01-28 19:04:23 +00:00
|
|
|
#tabbrowser-tabs spacer,
|
2019-01-30 13:34:26 +00:00
|
|
|
.tabbrowser-tab::after{ display: none !important }
|