Last active
July 23, 2020 17:24
-
-
Save dekisugi/3742f9b016daea13543fb6b494dbbeeb to your computer and use it in GitHub Desktop.
read.crx 2 User CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 書き込みウインドウのtextareaをAA用フォントに */ | |
.view_write.theme_default > form > textarea.message { | |
font-family: 'MS Pゴシック', 'MS PGothic', RobotoJAA, Monapo, Textar, 'IPA モナー Pゴシック', IPAMonaPGothic, Mona, '梅Pゴシック', 'Ume P Gothic', sans-serif; | |
font-size: 16px; | |
line-height: 18px; | |
/* 参考: http://tail.s170.xrea.com/html/text/aa_promo/aa_setting/ */ | |
} | |
/* 横スクロールをレス毎ではなくスレ毎に | |
設定の「一般」タブにある「アスキーアートの縮小表示の最小値」を100%にすること。以外ではなく。 */ | |
.content { | |
overflow-x: auto; | |
} | |
.config_use_aa_font > .aa > .message { | |
white-space: nowrap; | |
} | |
.popup > article { | |
contain: none; | |
} | |
/* Firefox 78 ESR & read.crx 2 v2.7.3 にて、未読表示が邪魔して、横スクロールバーが掴めなくなったの対策 */ | |
.thread_footer { | |
bottom: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment