web-dev-qa-db-ja.com

Firefox Quantumの複数行タブバー

Firefox Quantum はタブミックスプラスとタブキット を壊します。 Firefox Quantumで複数行のタブバーを取得する方法はありますか?

可能であれば、私はサポートされている、安定した解決策を探しています、それは次の新しいバージョンで壊れる可能性が低いです。

15
gerrit

これは、アイコンを表示し、タブ行に醜いスクロールバーを隠す更新されたuserChrome.cssです(UPDATE:Firefoxの新しいバージョンでは、userChromeの動作が変更されました。ここに: https://github.com/MrOtherGuy/firefox-csshacks/blob/master/chrome/multi-row_tabs.css ):

/* Makes tabs to appear on multiple lines */
/* Tab reordering will not work and can't be made to work */
/* You can use multi-row_tabs_window_control_patch.css to move window controls to nav-bar*/

/* It's recommended to move tabs new-tab-button outside tabs toolbar */

/* 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 */
/* This maximum visible rows won't work before Fx66 */
/* So this setting does nothing on Fx65 and all tab rows will be shown */
:root{ --multirow-n-rows: 6 }

#tabbrowser-tabs{
  min-height: unset !important;
  padding-inline-start: 0px !important
}

/* Test for Firefox > 66 */
@supports (inset-block:auto){
  #tabbrowser-tabs > .tabbrowser-arrowscrollbox > .arrowscrollbox-scrollbox{
    display: flex;
    flex-wrap: wrap;
    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;
  }
  #tabbrowser-tabs > .tabbrowser-arrowscrollbox {
    overflow: -moz-hidden-unscrollable;
    display: block;
  }
}

/* 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;
  }
}

.tabbrowser-tab{ height: var(--tab-min-height); }
#tabbrowser-tabs .tabbrowser-tab[pinned]{
  position: static !important;
  margin-inline-start: 0px !important;
}

.tabbrowser-tab[fadein]:not([pinned]){
  min-width: 200px !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% }

#tabbrowser-tabs .scrollbutton-up,
#tabbrowser-tabs .scrollbutton-down,
#alltabs-button,
:root:not([customizing]) #TabsToolbar #new-tab-button,
#tabbrowser-tabs spacer,
.tabbrowser-tab::after{ display: none !important }
5
Coruscate5

私もこれに代わるものを探してみましたが、本当の選択肢は見つかりませんでしたが、アドオンの組み合わせを使うことにしました。

私は今 タブミックスプラス (WebExtensions)と ツリースタイルタブ アドオンは、 セッション同期 と一緒に、タブ管理をより耐えられる体験にすることができます。

ツリースタイルタブは、モニタの幅と現在の解像度のために複数行機能の代わりになり、サイドバーに複数のタブを表示します。セッション同期はウィンドウセッション内のタブのグループ化による管理を改善し、タブミックスとwebextensionsは関連するページが同じウィンドウに留まることを可能にします。それは明らかに複数行設定ではありませんが、それは何もないよりはましです。

4
Leo