티스토리 스킨 Tistory Studio - White의 사소한 버그

이번에 공개된 Tistory의 스킨 2종류(Tistory Studio - Dark, White)가 상당히 맘에들었고, 그 중 Tistory Studio-White를 적용한 뒤 약간 수정하여 사용중입니다.

그러던 중 댓글에서 "comment" 버튼이 정상적으로 표시되지 않는다는 것을 발견했는데, 확인결과 style.css 파일의 버그를 확인했습니다.

원래의 줄은 아래와 같습니다.
.commentWrite .submit             { background:url(./images/btn_reple.gif) no-repeat; width:71px; height:23px; overflow:hidden; display:block; text-indent:-1000em; border:0; cursor:pointer; margin:10px auto; }

이 줄을 아래와 같이 수정해주면 됩니다.
.commentWrite .submit             { background:url(./images/btn_reply.gif) no-repeat; width:81px; height:19px; overflow:hidden; display:block; text-indent:-1000em; border:0; cursor:pointer; margin:10px auto; }

즉, comment 버튼의 파일명과 크기가 모두 잘못 적혀있었습니다.
혹시 White 스킨을 사용하시는 분들은 수정하시기 바랍니다.
수정하기 전 모습과 수정한 후 모습의 차이는 아래와 같습니다.