userContent.css (Waterfox 6.5)

@charset "utf-8";

/* ページのソースを表示する際のフォント */
body#viewsource {
    font-size : 10pt !important;
    font-family : "MS Gothic" !important;
    line-height : 1.4em !important;
}

/* テキストのライン装飾(リンクの下線含む)を切れ目なく表示 */
body {
    text-decoration-skip-ink : none !important;
}

/* 「新しいプライベートタブ」のロゴマーク以外を非表示 */
@-moz-document url("about:privatebrowsing") {
    .wordmark, .search-inner-wrapper, .info {
        display : none !important;
    }
}

/* google リンク色変更 */
@-moz-document domain("www.google.com") {
    a:link h3 {
        color : #3366ff !important;
    }
    a:visited h3 {
        color : #6600cc !important;
    }
}

/* twitter */
@-moz-document domain("x.com") {
    /* ローディング画像を非表示 */
    div[aria-label="Loading…"] {
        display : none !important;
    }
    /* 無意味な「さらに表示」を非表示(フォントを Meiryo 以外にする)*/
    * {
        font-family : "Arial", "BIZ UDPGothic" !important;
    }
    /* 入力エリアフォーカス時の余分な枠を非表示 */
    *:focus {
        outline : none !important;
    }
}