Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 * 플러그인 메뉴와 스킨 메뉴의 검색 / 보기 설정 부분을 통일함.
  • Loading branch information
inureyes committed May 28, 2008
1 parent dd6e4ea commit d0b4bc4
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
4 changes: 3 additions & 1 deletion interface/owner/communication/comment/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -225,13 +225,15 @@ function toggleThisTr(obj) {
<option value="0"><?php echo _t('전체');?></option>
<?php
foreach (getCategories($blogid) as $category) {
if($category['id'] != 0) {
?>
<option value="<?php echo $category['id'];?>"<?php echo ($category['id'] == $categoryId ? ' selected="selected"' : '');?>><?php echo htmlspecialchars($category['name']);?></option>
<?php
foreach ($category['children'] as $child) {
foreach ($category['children'] as $child) {
?>
<option value="<?php echo $child['id'];?>"<?php echo ($child['id'] == $categoryId ? ' selected="selected"' : '');?>>&nbsp;― <?php echo htmlspecialchars($child['name']);?></option>
<?php
}
}
}
?>
Expand Down
9 changes: 5 additions & 4 deletions style/admin/whitedream/plugin.css
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@
margin : 0 !important;
}

#sorting-line, #viewmode-line
#sorting-line,
#viewmode-line
{
position : static;
}
Expand All @@ -100,7 +101,7 @@
padding : 0 !important;
position : absolute !important;
text-align: right;
top : 7em;
top : 10em;
width : 400px;
}

Expand All @@ -111,7 +112,7 @@
padding : 0 !important;
position : absolute !important;
text-align: right;
top : 9.5em;
top : 5px;
width : 400px;
}

Expand Down Expand Up @@ -460,7 +461,7 @@
position : absolute;
right : 225px;
text-align : right;
top : 11em;
top : 20px;
width : 25em;
z-index : 1;
}
Expand Down
12 changes: 11 additions & 1 deletion style/admin/whitedream/plugin.ie.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,19 @@
margin-top: 3px;
}

#plugin-search-form
{
top : 18px;
}

#plugin-search-form .input-text
{
width : 150px !important;
}

#viewmode-line-align
{
top : 10em;
top : 10px;
}

#plugin-search-form .input-button
Expand Down

0 comments on commit d0b4bc4

Please sign in to comment.