사용자: 게시판스킨 댓글쓰기 캡챠 제외
This commit is contained in:
11
css/def.css
11
css/def.css
@ -27,8 +27,10 @@ td {padding:10px 0;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;
|
||||
/* 필드셋 */
|
||||
fieldset {margin-bottom:20px;padding:13px;border:1px solid #dedace;background:#fefefe}
|
||||
legend {margin-left:0;padding:7px 10px;border:1px solid #dedace;background:#333;color:#fff}
|
||||
fieldset .fieldset_input {padding:3px;border:1px solid #ddd;background:#f9f9f5;vertical-align:middle}
|
||||
fieldset .fieldset_input:focus {padding:4px;border:0;background:#555;color:#fff}
|
||||
fieldset .fieldset_input,
|
||||
fieldset textarea {padding:3px;border:1px solid #ddd;background:#fff;vertical-align:middle}
|
||||
fieldset .fieldset_input:focus,
|
||||
fieldset textarea:focus {padding:4px;border:0;background:#555;color:#fff}
|
||||
fieldset select {padding:2px;border:1px solid #ddd;background:#f9f9f5;vertical-align:middle}
|
||||
fieldset p {margin:0}
|
||||
fieldset .span_highlight {color:#ff3061}
|
||||
@ -332,7 +334,12 @@ h6 {margin:0 0 20px}
|
||||
.bo_vc_act:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
.bo_vc_act li {float:left;margin-left:5px}
|
||||
.bo_vc_act a {color:#000;text-decoration:none}
|
||||
#bo_vc_w {position:relative;zoom:1}
|
||||
#bo_vc_w:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#bo_vc_w fieldset {margin:0;padding:0;border:0;background:transparent}
|
||||
#bo_vc_w textarea {margin:10px 0;width:98%;height:50px}
|
||||
#bo_vc_w .fieldset_submit {float:right;margin:0 2% 0 0}
|
||||
#bo_vc_w #char_cnt {position:absolute;top:0;right:0}
|
||||
|
||||
/* 우편번호 검색 */
|
||||
#post_num dl {margin:0 auto 10px;padding:0;width:90%}
|
||||
|
||||
@ -76,10 +76,11 @@ var char_max = parseInt(<?=$comment_max?>); // 최대
|
||||
<label for="wr_name">이름</label> <input type="text" id="wr_name" name="wr_name" class="fieldset_input" maxLength="20" size="10" required>
|
||||
<label for="wr_password">패스워드</label> <input type="password" id="wr_password" name="wr_password" class="fieldset_input" maxLength="20" size="10" required>
|
||||
<img id="kcaptcha_image" alt="" />
|
||||
<input type="text" name="wr_key" title="왼쪽의 글자를 입력하세요." size="10" required>
|
||||
<input type="text" name="wr_key" class="fieldset_input" title="왼쪽의 글자를 입력하세요." size="10" required>
|
||||
<? } ?>
|
||||
<input type="checkbox" id="wr_secret" name="wr_secret" value="secret">비밀글
|
||||
<? if ($comment_min || $comment_max) { ?><span id="char_count"></span>글자<?}?>
|
||||
<input type="checkbox" id="wr_secret" name="wr_secret" value="secret">
|
||||
<label for="wr_secret">비밀글</label>
|
||||
<? if ($comment_min || $comment_max) { ?><strong id="char_cnt"><span id="char_count"></span>글자</strong><?}?>
|
||||
<textarea id="wr_content" name="wr_content" required
|
||||
<? if ($comment_min || $comment_max) { ?>onkeyup="check_byte('wr_content', 'char_count');"<?}?>></textarea>
|
||||
<? if ($comment_min || $comment_max) { ?><script> check_byte('wr_content', 'char_count'); </script><?}?>
|
||||
|
||||
Reference in New Issue
Block a user