Skip to content

Instantly share code, notes, and snippets.

@akku1139
Last active September 16, 2025 11:25
Show Gist options
  • Select an option

  • Save akku1139/b4adece101be62711939e236772ced34 to your computer and use it in GitHub Desktop.

Select an option

Save akku1139/b4adece101be62711939e236772ced34 to your computer and use it in GitHub Desktop.
/* タブクローズボタン無効化 */
.tab-close-button {
display: none;
}
/* タブバーを細く */
#TabsToolbar-customization-target {
height: 30px;
}
.tab-background {
min-height: unset !important;
margin-block: unset !important;
margin-top: 2px;
border-radius: 8px 8px 0 0 !important;
}
.tab-content {
height: 30px;
}
.tab-icon-stack {
margin-top: 1px;
}
#tabbrowser-tabs {
min-height: 0 !important;
}
/* Privateをアイコンだけ */
label[data-l10n-id="private-browsing-indicator-label"] {
display: none;
}
/* 全画面のウィンドウ閉じるボタンを削除 */
.titlebar-button.titlebar-close {
display: none;
}
/* 音が流れてるときにタブのサイズが変わるのを阻止 */
.tabbrowser-tab {
@media not -moz-pref("sidebar.visibility", "expand-on-hover") {
&:is([muted], [soundplaying], [activemedia-blocked]) {
#tabbrowser-tabs[orient="horizontal"] &[fadein]:not([pinned]) {
min-width: var(--tab-min-width-pref, var(--tab-min-width)) !important;;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment