Skip to content

Instantly share code, notes, and snippets.

@xia-sava
Last active December 5, 2019 00:27
Show Gist options
  • Save xia-sava/24eece6d0c0a59c77670d4c8a1997d4c to your computer and use it in GitHub Desktop.
Save xia-sava/24eece6d0c0a59c77670d4c8a1997d4c to your computer and use it in GitHub Desktop.
Firefox Quantum ニセ多段タブ
/* DO NOT DELETE THIS LINE */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* This enables the use of JS external files */
hbox#fullscr-toggler {
-moz-binding: url("userChrome.xml#js")}
/* URLバーとタブの位置 */
#nav-bar { /* main toolbar */
-moz-box-ordinal-group: 0 !important;
}
#TabsToolbar { /* tab bar */
-moz-box-ordinal-group: 2 !important;
}
/* 新規タブボタン */
#TabsToolbar #new-tab-button {
display: block !important;
}
/* タブのサイズ固定 */
tabs tab[fadein]:not([pinned]) {
width: 106px !important;
min-width: 106px !important;
max-width: 106px !important;
height: 26px !important;
min-height: 26px !important;
max-height: 26px !important;
}
/* タブ復元時にまだ読み込まれていないタブ */
tabs tab[pending] {
opacity: .6;
}
@xia-sava
Copy link
Author

xia-sava commented Sep 4, 2019

Fx69 対応

@xia-sava
Copy link
Author

xia-sava commented Dec 5, 2019

Fx71 対応

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment