More design work and bugfixes
This commit is contained in:
parent
3a10acd9d6
commit
b6704ccee4
17 changed files with 244 additions and 143 deletions
|
@ -1,4 +1,5 @@
|
|||
<h4>Raumliste</h4><a id="userlist" style="font-size:8px;">(schließen)</a><br />
|
||||
<h4>Raumliste</h4><a id="userlist" style="font-size:8px;">(schließen)</a>
|
||||
<div id="users" class="mousescroll" style="padding:5px; height: 250px;">
|
||||
{if $users==""}
|
||||
<p>
|
||||
No users.
|
||||
|
@ -7,19 +8,20 @@ No users.
|
|||
<div style="padding:5px;">
|
||||
{foreach from=$users key=key item=user}
|
||||
{if $user.s == false}
|
||||
<strong><a id="{$key}" class="room">{$key}</a></strong> <img src="/themes/austria/images/unlocked.png" style="border:none;" /><br />
|
||||
<strong><a id="{$key}" class="room">{$key}</a></strong> <img src="/themes/funchat/images/unlocked.png" style="border:none;" /><br />
|
||||
{else}
|
||||
<strong><a>{$key}</a></strong> <img src="/themes/austria/images/locked.png" style="border:none;" /><br />
|
||||
<strong><a>{$key}</a></strong> <img src="/themes/funchat/images/locked.png" style="border:none;" /><br />
|
||||
{/if}
|
||||
{foreach from=$user.u item=i}
|
||||
<a id="{$i.n}" class="notice"><img src="/themes/austria/images/{$i.i}" style="border:none;" /></a>{$i.l}<a href="/np/{$i.n}" target="_blank" style="color:#{$i.c}; margin-left: 8px;">{$i.n}</a></span> <img src="/themes/archer/images/{$i.g}.png" style="border:none;" /><br />
|
||||
<a id="{$i.n}" class="notice"><img src="/themes/funchat/images/{$i.i}" style="border:none;" /></a>{$i.l}<a href="/np/{$i.n}" target="_blank" style="color:#{$i.c}; margin-left: 8px;">{$i.n}</a></span> <img src="/themes/funchat/images/{$i.g}.png" style="border:none;" /><br />
|
||||
{/foreach}
|
||||
{/foreach}
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
{if $js!=""}
|
||||
<script type="text/javascript">
|
||||
{$js}
|
||||
$(".notice").rightClickMenu(menu);
|
||||
</script>
|
||||
{/if}
|
||||
{/if}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{$header}
|
||||
<div class="wrapper col4">
|
||||
<div id="container">
|
||||
<div id="content">
|
||||
<div id="content" style="height: 80vh;">
|
||||
<div class="topbar"><a id="notchan">Ding</a> | <a href="//funch.at/forum/help-8.html" target="_blank" onclick="return popup('//funch.at/forum/help-8.html','width=800, height=800, resizeable,scrollbars=yes');">Hilfe</a> | <a href="//funch.at/forum/misc.php?action=smilies&popup=true" target="_blank" onclick="return popup('//funch.at/forum/misc.php?action=smilies&popup=true','width=600, height=600, resizeable,scrollbars=yes');">Smilies</a> | <a id="notsw">Benachrichtigung: An</a> | <a id="scrolling">Scrolling: An</a> | <a id="whwindow">{$whtext}</a> | <a id="submit">{$submit}</a> | <a id="logout">Logout</a></div>
|
||||
<div id="chatlog" style="z-index:1; position:relative;"></div>
|
||||
</div>
|
||||
|
@ -13,12 +13,11 @@
|
|||
{$rightnav}
|
||||
</div>
|
||||
<br class="clear">
|
||||
<textarea id="text" autocomplete="off" spellcheck="true" style="z-index:2; float: left; position: relative; background: none repeat scroll 0 0 #FFFFFF; border: 1px solid #000000; width: 100%; max-width: 870px; height:20px; color: #{$col};" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<br class="clear">
|
||||
<div class="wrapper col5">
|
||||
<textarea id="text" autocomplete="off" spellcheck="true" style="z-index:2; float: left; position: relative; background: none repeat scroll 0 0 #FFFFFF; border: 1px solid #000000; width: 100%; max-width: 870px; height:20px; color: #{$col};" ></textarea>
|
||||
</div>
|
||||
|
||||
<div id="whispers" style="display:none;">
|
||||
</div>
|
||||
<div id="repwindow" style="display:none;">
|
||||
|
|
|
@ -7,7 +7,7 @@ No users.
|
|||
</p>
|
||||
{else}
|
||||
{foreach from=$users item=user}
|
||||
<a id="{$user.nick}" class="notice"><img src="/themes/austria/images/{$user.notice}" title="Toggle notice for {$user.nick}" style="border:none;" /></a><a href="/np/{$user.nick}" target="_blank" style="color:#{$user.color}; margin-left: 8px;">{$user.nick}</a>{if $user.typing=="true"}<i class="fa fa-comment" style="color:#{$user.color}" aria-hidden="true"></i>{/if}</span> <img src="/themes/austria/images/{$user.gender}.png" style="border:none;" /><br />
|
||||
<a id="{$user.nick}" class="notice"><img src="/themes/funchat/images/{$user.notice}" title="Toggle notice for {$user.nick}" style="border:none;" /></a><a href="/np/{$user.nick}" target="_blank" style="color:#{$user.color}; margin-left: 8px;">{$user.nick}</a>{if $user.typing=="true"}<i class="fa fa-comment" style="color:#{$user.color}" aria-hidden="true"></i>{/if}</span> <img src="/themes/funchat/images/{$user.gender}.png" style="border:none;" /><br />
|
||||
{/foreach}
|
||||
{/if}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue