Nucleus管理画面とポップアップでの編集画面
テキストエリアのリサイズ、フォント・フォントサイズを日本語環境に合わせる
bookmarklet.css
body {
font-size: small;
background: #fff;
color: #000;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "MS Pゴシック", Verdana, Arial, SunSans-Regular, Sans-Serif;
}
font-size: small;
background: #fff;
color: #000;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "MS Pゴシック", Verdana, Arial, SunSans-Regular, Sans-Serif;
}
textarea {
padding:5px;
behavior:url(http://yourpass/resizable.htc);
}
padding:5px;
behavior:url(http://yourpass/resizable.htc);
}
helium.css
textarea {
padding:5px;
behavior:url(http://luvsic.net/yourpass/resizable.htc);
}
padding:5px;
behavior:url(http://luvsic.net/yourpass/resizable.htc);
}
※フォントファミリーに関しては、「MS Pゴシック」は半角全角をひとつでもいじると、MSPゴシックは採用されない。[参考]CSSのfont-family:ヒラギノとMS Pゴシックとメイリオの悩ましい関係 : webデザイナーのナナメガキ
※日本語がCSSに含まれるため、文字化けなどの可能性がある?その際は@charsetを試すこと。
No comments yet