More design work and bugfixes

This commit is contained in:
genuineparts 2025-06-17 21:55:44 +02:00
parent 3a10acd9d6
commit b6704ccee4
17 changed files with 244 additions and 143 deletions

View file

@ -1,4 +1,5 @@
<h4>Raumliste</h4><a id="userlist" style="font-size:8px;">(schlie&szlig;en)</a><br />
<h4>Raumliste</h4><a id="userlist" style="font-size:8px;">(schlie&szlig;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>&nbsp;<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>&nbsp;<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}