mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
모바일 페이지 추가
This commit is contained in:
parent
0db2dcc68e
commit
7af044933f
4 changed files with 26 additions and 4 deletions
|
|
@ -36,6 +36,14 @@
|
|||
.lt{margin:0;padding:0;list-style:none;background:#f8f8f8;font-size:14px}
|
||||
.lt li{border-bottom:1px solid #ccc8be;overflow:hidden}
|
||||
.lt a{box-sizing: border-box;width:100%;display:inline-block;float:left;text-decoration:none;color:#000;padding:10px}
|
||||
.lt span{
|
||||
display:inline-block;
|
||||
padding:5px;
|
||||
}
|
||||
.lt span.before-color:after{
|
||||
content:"→";
|
||||
margin-left:10px;
|
||||
}
|
||||
.lt .memberInfo{float:right;}
|
||||
.lt .notice{display:inline-block;background:#a06acd;font-weight:bold;color:#fff;font-size:12px;padding:1px;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px}
|
||||
.lt .title{display:block;margin:0 0 5px 0}
|
||||
|
|
|
|||
18
modules/member/m.skins/default/member_nick.html
Normal file
18
modules/member/m.skins/default/member_nick.html
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<include target="./common_header.html" />
|
||||
<div class="xm">
|
||||
<h2 class="hx h2">{$member_title = $lang->cmd_modify_nickname_log}</h2>
|
||||
<ul class="lt">
|
||||
<li loop="$nickname_list => $val">
|
||||
{zdate($val->regdate, "Y-m-d")}
|
||||
<span class="before-color">{$val->before_nick_name}</span>
|
||||
<span class="after-color">{$val->after_nick_name}</span>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="pn">
|
||||
<a cond="$page != 1" href="{getUrl('page',$page-1,'module_srl','')}" class="prev">{$lang->cmd_prev}</a>
|
||||
<strong>{$page} / {$page_navigation->last_page}</strong>
|
||||
<a cond="$page != $page_navigation->last_page" href="{getUrl('page',$page+1,'module_srl','')}" class="next">{$lang->cmd_next}</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<include target="./common_footer.html" />
|
||||
|
|
@ -2284,7 +2284,6 @@ class memberController extends member
|
|||
$log_args->after_nick_name = $args->nick_name;
|
||||
$log_args->user_id = $args->user_id;
|
||||
$log_output = executeQuery('member.insertMemberModifyNickName', $log_args);
|
||||
debugPrint($config);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -10,9 +10,6 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<tr loop="$nickname_list => $val">
|
||||
{@
|
||||
debugPrint($val);
|
||||
}
|
||||
<td>
|
||||
{zdate($val->regdate,"Y-m-d H:i:s")}
|
||||
</td>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue