관리자: 게시판관리 목록 재정리 #149 처리
This commit is contained in:
@ -106,8 +106,12 @@ var list_delete_php = 'board_list_delete.php';
|
||||
<th scope="col"><?=subject_sort_link('bo_table')?>TABLE</a></th>
|
||||
<th scope="col"><?=subject_sort_link('bo_skin', '', 'desc')?>스킨</a></th>
|
||||
<th scope="col"><?=subject_sort_link('bo_subject')?>제목</a></th>
|
||||
<th scope="col">포인트</th>
|
||||
<th scope="col">검색</th>
|
||||
<th scope="col">읽기P<span class="sound_only">포인트</span></th>
|
||||
<th scope="col">쓰기P<span class="sound_only">포인트</span></th>
|
||||
<th scope="col">댓글P<span class="sound_only">포인트</span></th>
|
||||
<th scope="col">다운P<span class="sound_only">포인트</span></th>
|
||||
<th scope="col">검색<br>사용</th>
|
||||
<th scope="col">검색<br>순서</th>
|
||||
<th scope="col">관리</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@ -136,22 +140,13 @@ for ($i=0; $row=sql_fetch_array($result); $i++) {
|
||||
<td>
|
||||
<?=get_skin_select("board", "bo_skin_$i", "bo_skin[$i]", $row['bo_skin']);?>
|
||||
</td>
|
||||
<td><input type="text" id="bo_subject[<?=$i?>]" name="bo_subject[<?=$i?>]" class="required" value="<?=get_text($row['bo_subject'])?>" title="게시판제목" size="20" required="required"></td>
|
||||
<td>
|
||||
<label for="bo_read_point_<?=$i?>">읽기</label>
|
||||
<input type="text" id="bo_read_point_<?=$i?>" name="bo_read_point[<?=$i?>]" value="<?=$row['bo_read_point']?>" size="2">
|
||||
<label for="bo_write_point_<?=$i?>">쓰기</label>
|
||||
<input type="text" id="bo_write_point_<?=$i?>" name="bo_write_point[<?=$i?>]" value="<?=$row['bo_write_point']?>" size="2">
|
||||
<label for="bo_comment_point_<?=$i?>">댓글</label>
|
||||
<input type="text" id="bo_comment_point_<?=$i?>" name="bo_comment_point[<?=$i?>]" value="<?=$row['bo_comment_point']?>" size="2">
|
||||
<label for="bo_download_point_<?=$i?>">다운</label>
|
||||
<input type="text" id="bo_download_point_<?=$i?>" name="bo_download_point[<?=$i?>]" value="<?=$row['bo_download_point']?>" size="2">
|
||||
</td>
|
||||
<td>
|
||||
<label for="bo_use_search_<?=$i?>">사용</label>
|
||||
<input type="checkbox" id="bo_use_search_<?=$i?>" name="bo_use_search[<?=$i?>]" <?=$row['bo_use_search']?"checked":""?> value="1">
|
||||
<label for="bo_order_search_<?=$i?>">순서</label>
|
||||
<input type="text" id="bo_order_search_<?=$i?>" name="bo_order_search[<?=$i?>]" value="<?=$row['bo_order_search']?>" size="1">
|
||||
<td><input type="text" id="bo_subject[<?=$i?>]" name="bo_subject[<?=$i?>]" class="required" value="<?=get_text($row['bo_subject'])?>" title="게시판제목" size="10" required="required"></td>
|
||||
<td><input type="text" name="bo_read_point[<?=$i?>]" value="<?=$row['bo_read_point']?>" size="1" title="읽기"></td>
|
||||
<td><input type="text" name="bo_write_point[<?=$i?>]" value="<?=$row['bo_write_point']?>" size="1" title="쓰기"></td>
|
||||
<td><input type="text" name="bo_comment_point[<?=$i?>]" value="<?=$row['bo_comment_point']?>" size="1" title="댓글"></td>
|
||||
<td><input type="text" name="bo_download_point[<?=$i?>]" value="<?=$row['bo_download_point']?>" size="1" title="다운"></td>
|
||||
<td><input type="checkbox" id="bo_use_search_<?=$i?>" name="bo_use_search[<?=$i?>]" <?=$row['bo_use_search']?"checked":""?> value="1" title="검색사용"></td>
|
||||
<td><input type="text" id="bo_order_search_<?=$i?>" name="bo_order_search[<?=$i?>]" value="<?=$row['bo_order_search']?>" size="1" title="검색순서"></td>
|
||||
</td>
|
||||
<td><?=$one_update?> <?=$one_copy?></td>
|
||||
</tr>
|
||||
|
||||
23
css/adm.css
23
css/adm.css
@ -11,10 +11,21 @@ form, img {border:0}
|
||||
input,img {vertical-align:middle}
|
||||
p {margin:10px 0;line-height:1.5em}
|
||||
|
||||
/* 내용 건너뛰기 */
|
||||
/* 웹접근성 스킬 --- 기본 block 속성에는 적용 안됨*/
|
||||
.sound_only {display:inline-block;margin:0;padding:0;width:0;height:0;border:0;overflow:hidden}
|
||||
/* 본문 바로가기 */
|
||||
#to_content a {display:block;position:absolute;top:0;left:0;margin:5px;height:0;text-decoration:none;overflow:hidden}
|
||||
#to_content a:focus, #to_content a:active {height:auto;padding:5px 10px;border:1px solid #000;background:#eee;color:#333;font-size:0.75em;overflow:auto}
|
||||
|
||||
/* 테이블 */
|
||||
table {margin-bottom:10px;width:100%;border:1px solid #d5dcdf;background:#fff}
|
||||
caption {padding:10px 0 15px;color:#2f4d59;text-align:left;font-size:1em;font-weight:bold}
|
||||
caption p {margin:7px 0 0;padding:0;color:#6b8088;font:0.75em normal}
|
||||
th, td {border-bottom:1px solid #e9ecee;font-size:0.75em}
|
||||
th {padding:10px;background:#f1f6f7}
|
||||
th label {display:block}
|
||||
th a {color:#000}
|
||||
td {padding:10px}
|
||||
/* 내용 없는 테이블 */
|
||||
.empty_table {padding:200px 0;text-align:center}
|
||||
|
||||
@ -88,16 +99,6 @@ fieldset button:focus, .fieldset_submit:focus {padding:0 15px;height:23px;border
|
||||
.frm_list a {display:block;border:1px solid #586267;background:#667379;padding:0 7px;height:30px;color:#fff;font-size:0.875em;text-decoration:none;line-height:2.3em}
|
||||
.frm_list a:focus, .frm_list a:hover {background:#434f54}
|
||||
|
||||
/* 테이블 */
|
||||
table {margin-bottom:10px;width:100%;border:1px solid #d5dcdf;background:#fff}
|
||||
caption {padding:10px 0 15px;color:#2f4d59;text-align:left;font-size:1em;font-weight:bold}
|
||||
caption p {margin:7px 0 0;padding:0;color:#6b8088;font:0.75em normal}
|
||||
th, td {border-bottom:1px solid #e9ecee;font-size:0.75em}
|
||||
th {padding:10px;background:#f1f6f7}
|
||||
th label {display:block}
|
||||
th a {color:#000}
|
||||
td {padding:10px}
|
||||
|
||||
/* 폼 테이블 */
|
||||
.frm_tbl th {width:130px;text-align:left;font-weight:normal}
|
||||
.frm_tbl textarea {height:150px}
|
||||
|
||||
Reference in New Issue
Block a user