userContent.css (Waterfox G6)

@charset "utf-8";

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

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

/* cssによるテキスト選択禁止設定を無効化 */
* {
    user-select : auto !important;
}

/* cssによる画像選択禁止設定を無効化 */
img {
    pointer-events : auto !important;
}

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

/* twitter ローディング画像を非表示 */
@-moz-document domain("twitter.com") {
    div[aria-label="Loading…"] {
        display : none !important;
    }
}

/* 5ch */
@-moz-document domain("5ch.net") {
    #hideme, #hidemetoo {
        display : none !important;
    }
    * {
        font-size : 10pt !important;
    }
    body {
        background-color : #f9f9f9 !important;
    }
    #thread {
        margin-left : 20px !important;
    }
    .post-header {
        color : #1e1eaa !important;
        padding-bottom : 0.5em !important;
    }
    .date {
        padding-left : 0em !important;
    }
    .post {
        padding : 1em 1em 1.5em 0.5em !important;
        border-bottom: 1px solid #e7e7e7 !important;
    }
}