From c95fb2f77b30f2505aecbbb4c72f1de8bb264edd Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Sun, 16 Dec 2018 04:43:06 +0200 Subject: [PATCH] New file --- chrome/multi-row_tabs.css | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 chrome/multi-row_tabs.css diff --git a/chrome/multi-row_tabs.css b/chrome/multi-row_tabs.css new file mode 100644 index 0000000..20c89b6 --- /dev/null +++ b/chrome/multi-row_tabs.css @@ -0,0 +1,27 @@ +/* Makes tabs to appear on multiple lines */ +/* Tab reordering will not work */ + +#tabbrowser-tabs, +#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; +} +.tabbrowser-tab{ max-height: 32px } + +.tabbrowser-tab[fadein]{ + 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;*/ +} +.tabbrowser-tab > stack{ width: 100%; height: 100% } \ No newline at end of file