[userChrome.css / Waterfox Classic / 2021年4月]

@charset "utf-8";

/* UIのフォント */
* {
    font-size: 9pt !important;
}

/* ページ内検索バーを上部に移動 */
findbar {
    -moz-box-ordinal-group: 0 !important;
}

/* 「ブックマーク」「履歴」ボタンのプルダウンリストの行間を調整(狭) */
.bookmark-item {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
}

/* 履歴とブックマークの管理画面の行間を調整(狭) */
/* サイドバーの行間を調整(狭)                   */
treechildren::-moz-tree-row {
    height: 0 !important;
    border-width: 1px !important;
}

/* サイドバーの検索ボックスを非表示 */
#sidebar-search-container {
    visibility: collapse !important;
}

/* サイドバーのタイトルを非表示 */
#sidebar-box sidebarheader {
    display: none !important;
}

/* コンテキストメニューのうち、以下を非表示にする(余分な区切り線も) */
/* 「Open in new non-e10s window」 */
#context_openNonRemoteWindow {
    display: none !important;
}
/* 「画像のURLをメールで送信」 */
#contentAreaContextMenu #context-sendimage {
    display: none !important;
}
/* 「リンクを端末に送る」 */
#context-sendlinktodevice,
#context-sep-sendlinktodevice {
    display: none !important;
}
/* 「ページを端末に送る」 */
#context-sendpagetodevice,
#context-sep-sendpagetodevice {
    display: none !important;
}
/* 「タブを端末に送る」 */
#context_sendTabToDevice_separator,
#context_sendTabToDevice {
    display: none !important;
}