mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
Several minor improvements to communication module default skin
This commit is contained in:
parent
1cfb83da4d
commit
771cdcc122
3 changed files with 9 additions and 11 deletions
|
|
@ -3,7 +3,7 @@ $lang->communication = '커뮤니케이션';
|
|||
$lang->about_communication = '회원 간의 쪽지나 친구 관리 등 커뮤니케이션 기능을 수행합니다. 이 기능을 사용하려면 [설치된 애드온] > [커뮤니케이션] 애드온을 활성화 하세요.';
|
||||
$lang->allow_message = '쪽지 수신 허용';
|
||||
$lang->allow_message_type['Y'] = '전체 수신';
|
||||
$lang->allow_message_type['N'] = '거부';
|
||||
$lang->allow_message_type['N'] = '수신 거부';
|
||||
$lang->allow_message_type['F'] = '친구만 허용';
|
||||
$lang->message_box['R'] = '받은 쪽지함';
|
||||
$lang->message_box['S'] = '보낸 쪽지함';
|
||||
|
|
@ -14,12 +14,12 @@ $lang->receiver = '받는이';
|
|||
$lang->friend_group = '친구 그룹';
|
||||
$lang->default_friend_group = '그룹 미지정';
|
||||
$lang->cmd_send_message = '쪽지 보내기';
|
||||
$lang->cmd_reply_message = '쪽지 답장';
|
||||
$lang->cmd_reply_message = '답장 보내기';
|
||||
$lang->cmd_view_friend = '친구 보기';
|
||||
$lang->cmd_add_friend = '친구 등록';
|
||||
$lang->cmd_message_box = '쪽지함';
|
||||
$lang->cmd_view_message_box = '쪽지함 보기';
|
||||
$lang->cmd_store = '보관';
|
||||
$lang->cmd_store = '보관함 이동';
|
||||
$lang->cmd_add_friend_group = '친구 그룹 추가';
|
||||
$lang->cmd_rename_friend_group = '친구 그룹 이름 변경';
|
||||
$lang->cmd_delete_friend_group = '친구 그룹 삭제';
|
||||
|
|
|
|||
|
|
@ -195,7 +195,7 @@
|
|||
.xc .nav-tabs>.active>a:hover,
|
||||
.xc .nav-tabs>.active>a:focus{color:#555555;cursor:default;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent}
|
||||
/* Table */
|
||||
.xc .table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;width:100%;margin-bottom:20px}
|
||||
.xc .table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;width:100%;margin-bottom:0}
|
||||
.xc .table th,
|
||||
.xc .table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd}
|
||||
.xc .table th{font-weight:bold}
|
||||
|
|
|
|||
|
|
@ -2,13 +2,10 @@
|
|||
<load target="filter/delete_checked_message.xml" />
|
||||
<load target="filter/update_allow_message.xml" />
|
||||
<div class="btnArea">
|
||||
<form action="./" method="GET" style="margin:0;display:inline-block;*display:inline;zoom:1" onsubmit="location.href=current_url.setQuery('message_srl','').setQuery('message_type',this.message_box.options[this.message_box.selectedIndex].value); return false;">
|
||||
<select name="message_box" style="margin:0">
|
||||
<option loop="$lang->message_box => $key,$val" selected="selected"|cond="$key==$message_type" value="{$key}" >{$val}</option>
|
||||
</select>
|
||||
<input type="submit" value="{$lang->cmd_select}" class="btn" />
|
||||
</form>
|
||||
<form action="./" method="POST" style="margin:0;display:inline-block;*display:inline;zoom:1">
|
||||
<div style="margin:0;display:block;float:left" class="btn-group">
|
||||
<button loop="$lang->message_box => $key,$val" class="btn" onclick="location.href=current_url.setQuery('message_srl', '').setQuery('message_type', '{$key}'); return false;" style="font-weight:bold"|cond="$message_type == $key">{$val}</button>
|
||||
</div>
|
||||
<form action="./" method="POST" style="margin:0;display:block;float:right">
|
||||
<input type="hidden" name="module" value="communication" />
|
||||
<input type="hidden" name="act" value="procCommunicationUpdateAllowMessage" />
|
||||
<input type="hidden" name="message_type" value="{$message_type}" />
|
||||
|
|
@ -17,6 +14,7 @@
|
|||
</select>
|
||||
<input type="submit" value="{$lang->cmd_save}" class="btn">
|
||||
</form>
|
||||
<div style="clear:both"></div>
|
||||
</div>
|
||||
<table class="table table-striped table-hover" cond="$message">
|
||||
<tr>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue