mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 11:44:10 +09:00
Add a list of vote user
This commit is contained in:
parent
2535dcec6b
commit
4c7ce6a380
5 changed files with 93 additions and 2 deletions
|
|
@ -1131,4 +1131,25 @@
|
|||
.board .secretForm .btn {border-radius: 0 2px 2px 0; }
|
||||
.board .secretForm p {margin-bottom:5px;}
|
||||
|
||||
.vote-list {
|
||||
display:block;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
margin: 0px !important;
|
||||
padding: 20px;
|
||||
color: rgb(34, 34, 34);
|
||||
font-size: 15px;
|
||||
font-family: "Open Sans","나눔바른고딕",NanumBarunGothic,"맑은 고딕","Malgun Gothic","돋움",Dotum,"애플 SD 산돌고딕 Neo","Apple SD Gothic Neo",AppleGothic,Helvetica,sans-serif;
|
||||
line-height: 1.6;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
background: rgb(255, 255, 255);
|
||||
}
|
||||
|
||||
.votelog {
|
||||
display:inline-block;
|
||||
padding:2px 15px;
|
||||
background:#00b0a2;
|
||||
border-radius: 23px;
|
||||
color:#fff;
|
||||
text-decoration: inherit;
|
||||
}
|
||||
14
modules/board/skins/xedition/vote_log.html
Normal file
14
modules/board/skins/xedition/vote_log.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<include target="_header.html" />
|
||||
|
||||
<div class="vote-list">
|
||||
<h2>추천인</h2>
|
||||
<block loop="$vote_member_info => $val">
|
||||
<a href="#popup_menu_area" class="votelog member_{$val->member_srl}" onclick="return false">{$val->nick_name}</a>
|
||||
</block>
|
||||
<h2>비추천인</h2>
|
||||
<block loop="$blame_member_infos => $val">
|
||||
<a href="#popup_menu_area" class="votelog member_{$val->member_srl}" onclick="return false">{$val->nick_name}</a>
|
||||
</block>
|
||||
</div>
|
||||
|
||||
<include target="_footer.html" />
|
||||
Loading…
Add table
Add a link
Reference in a new issue