Commit be5b37a2 authored by Nemo Ma's avatar Nemo Ma Committed by GitHub

Merge pull request #179 from winddramon/nachster

2 improvements
parents 71e34ddb 23ecfacc
...@@ -372,9 +372,10 @@ text-align: center; ...@@ -372,9 +372,10 @@ text-align: center;
#chatlist{ #chatlist{
MARGIN: 0px; MARGIN: 0px;
height:120px; height:120px;
width:100%; width:720px;
word-break:break-all; word-break:break-all;
overflow:auto; overflow-x:hidden;
overflow-y:auto;
position:relative; position:relative;
} }
#newslist{ #newslist{
......
...@@ -3,12 +3,13 @@ ...@@ -3,12 +3,13 @@
<tr> <tr>
<td>{lang usertitle}</td> <td>{lang usertitle}</td>
<td> <td>
<select name="nick"> <select id="nick" name="nick" onchange="var nicklabel=$('nick').options[$('nick').selectedIndex].label;if(''!=nicklabel) $('nickcmt').innerHTML=nicklabel; else $('nickcmt').innerHTML='<br><br><br>';">
<!--{loop $nicksrev['nicks'] $val}--> <!--{loop $nicksrev['nicks'] $val}-->
<option value="{$val}"<!--{if $udata['nick'] == $val}-->selected<!--{/if}-->>$titles_list[$val]</option> <!--{eval $title_desc_tmp = str_replace("\r","<br>",$title_desc[$val]['title']);}-->
<option value="{$val}"<!--{if $udata['nick'] == $val}-->selected<!--{/if}--> label="{$title_desc_tmp}">$titles_list[$val]</option>
<!--{/loop}--> <!--{/loop}-->
</select> </select>
选择一个有趣的头衔,部分头衔存在特殊的入场效果。 <span id="nickcmt">选择一个有趣的头衔,部分头衔存在特殊的入场效果。<br><br><br></span>
</td> </td>
</tr> </tr>
<!--{if !empty($t1_list) && !empty($t2_list)}--> <!--{if !empty($t1_list) && !empty($t2_list)}-->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment