Skip to content

Commit

Permalink
#897: 관리자 UI 개선
Browse files Browse the repository at this point in the history
 * 스킨 > 위젯에서 변형된 레이아웃을 바로 잡음.
 * 소통 > 휴지통의 레이아웃을 바로 잡음.
  • Loading branch information
graphittie committed May 9, 2008
1 parent 7a62a5f commit e09391b
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 7 deletions.
4 changes: 2 additions & 2 deletions interface/owner/skin/coverpage/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ function pretty_dress($view)
else
$errmsg = '사용중인 표지 플러그인이 없습니다.';
?>
<ul id="coverpage-tabs-box" class="tabs-box right">
<ul id="coverpage-tabs-box" class="tabs-box">
<li class="selected"><a id="default-mode-button" class="button" href="<?php echo $blogURL;?>/owner/skin/coverpage" title="<?php echo _t('실제 출력되는 내용을 직접 볼 수 있는 기본 모드입니다.');?>"><?php echo _t('기본모드');?></a></li>
</ul>

Expand All @@ -289,7 +289,7 @@ function pretty_dress($view)
}
}
?>
<ul id="coverpage-tabs-box" class="tabs-box right">
<ul id="coverpage-tabs-box" class="tabs-box">
<li<?php echo $defaultModeSelected ? ' class="selected"' : NULL;?>><a id="default-mode-button" class="button" href="<?php echo $blogURL;?>/owner/skin/coverpage" title="<?php echo _t('실제 출력되는 내용을 직접 볼 수 있는 기본 모드입니다.');?>"><?php echo _t('기본모드');?></a></li>
<li<?php echo $safeModeSelected ? ' class="selected"' : NULL;?>><a id="safe-mode-button" class="button" href="<?php echo $blogURL;?>/owner/skin/coverpage?safe" title="<?php echo _t('태그를 사용하지 않아 레이아웃이 깨질 위험이 없는 모드입니다.');?>"><?php echo _t('안전모드');?></a></li>
<li<?php echo $tagModeSelected ? ' class="selected"' : NULL;?>><a id="tag-mode-button" class="button" href="<?php echo $blogURL;?>/owner/skin/coverpage?tag" title="<?php echo _t('실제 블로그 표지에 사용되는 태그를 직접사용하는 모드입니다.');?>"><?php echo _t('태그모드');?></a></li>
Expand Down
4 changes: 2 additions & 2 deletions interface/owner/skin/sidebar/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ function pretty_dress($view)
<?php
if ($sidebarCount == 0) {
?>
<ul id="sidebar-tabs-box" class="tabs-box right">
<ul id="sidebar-tabs-box" class="tabs-box">
<li class="selected"><a id="default-mode-button" class="button" href="<?php echo parseURL($blogURL.'/owner/skin/sidebar');?>" title="<?php echo _t('실제 출력되는 내용을 직접 볼 수 있는 기본 모드입니다.');?>"><?php echo _t('기본모드');?></a></li>
</ul>

Expand All @@ -255,7 +255,7 @@ function pretty_dress($view)
}
}
?>
<ul id="sidebar-tabs-box" class="tabs-box right">
<ul id="sidebar-tabs-box" class="tabs-box">
<li<?php echo $defaultModeSelected ? ' class="selected"' : NULL;?>><a id="default-mode-button" class="button" href="<?php echo parseURL($blogURL.'/owner/skin/sidebar');?>" title="<?php echo _t('실제 출력되는 내용을 직접 볼 수 있는 기본 모드입니다.');?>"><?php echo _t('기본모드');?></a></li>
<li<?php echo $safeModeSelected ? ' class="selected"' : NULL;?>><a id="safe-mode-button" class="button" href="<?php echo parseURL($blogURL.'/owner/skin/sidebar?safe');?>" title="<?php echo _t('태그를 사용하지 않아 레이아웃이 깨질 위험이 없는 모드입니다.');?>"><?php echo _t('안전모드');?></a></li>
<li<?php echo $tagModeSelected ? ' class="selected"' : NULL;?>><a id="tag-mode-button" class="button" href="<?php echo parseURL($blogURL.'/owner/skin/sidebar?tag');?>" title="<?php echo _t('실제 블로그 사이드바에 사용되는 태그를 직접사용하는 모드입니다.');?>"><?php echo _t('태그모드');?></a></li>
Expand Down
4 changes: 2 additions & 2 deletions style/admin/whitedream/communication.css
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ table.data-inbox tbody tr td.ip

#part-post-trash #search-form
{
top : 115px;
top : 70px;
}

#part-post-trash .main-explain-box p
Expand All @@ -224,7 +224,7 @@ table.data-inbox tbody tr td.ip
border : none;
position : absolute;
left : 0;
top : 113px;
top : 140px;
}

#part-post-trash fieldset dl
Expand Down
19 changes: 18 additions & 1 deletion style/admin/whitedream/skin.css
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,13 @@
padding : 30px 0 0 310px;
}

#treePreview
{
height: 300px;
overflow: visible;
width: 300px;
}

#tree-preview-box
{
background-color : #EEEEEE;
Expand Down Expand Up @@ -465,6 +472,11 @@
margin-bottom : 15px;
}

#part-coverpage-order #link-tabs-box
{
margin-top : 20px;
}

#part-coverpage-order #direct-link-line
{
margin-bottom : 0px;
Expand Down Expand Up @@ -690,7 +702,7 @@

#independent-cover-line
{
margin: -40px 10px 0 0;
margin: -27px 10px 0 300px;
}

#independent-cover-line dt
Expand Down Expand Up @@ -765,6 +777,11 @@
margin-bottom : 15px;
}

#part-sidebar-order #link-tabs-box
{
margin-top : 20px;
}

#part-sidebar-order #direct-link-line
{
margin: 0px 10px;
Expand Down

0 comments on commit e09391b

Please sign in to comment.