2008/08/18(Mon)adiary v2.003
2008/08/18 22:34
基本的にはファイルを上書きするだけのようでした*1ので簡単です。
アーカイブ内のファイルを更新して満足してて、diary.user.skel内の変更を再適用するのを忘れてたりしましたが、それを行った後もなんかスクリプトエラーが出たり警告が出たりしてたので、軽く調べてみました。
CSSのアンダーバーハックのように意図した物を変に書き換えてたら申し訳ないですが…。
theme/satsuki/base.css line:132
- text-decoreation: none;
+ text-decoration: none;
theme/hatena/_additional.css line:83
- text-decoreation: none;
+ text-decoration: none;
theme/satsuki/bigblue/bigblue.css line:48
- line-height: 130%
+ line-height: 130%;
theme/satsuki/bigblue/bigblue.css line:604
- margin: 0.2em, 0;
+ margin: 0.2em 0;
theme/satsuki/bigblue/bigblue.css line:825
- background-position: center middle;
+ background-position: center center;
theme/satsuki/bigblue/bigblue.css line:881
- background-position: middle center;
+ background-position: center center;
※cf. http://www.w3schools.com/css/pr_background-position.asp
theme/resizeform.js line:147
- target.gripH.style.height = (target.base[3]-gripsize)+'px';
+ if(target.base[3]-gripsize >= 0){
+ target.gripH.style.height = (target.base[3]-gripsize)+'px';
+ }
※「日記を書く」ページでのスクリプトエラー対策。heightが負になるところがあるようなので、その暫定対応です。
このスクリプト自体は深く追ってないので、こうしていいものなのかよく分かってはいませんが…。