Add margin for list-groups
This commit is contained in:
parent
0dc12e73a1
commit
4069ab659a
|
@ -9,7 +9,7 @@
|
||||||
{% if clients|length > 0 %}
|
{% if clients|length > 0 %}
|
||||||
{% set headline_id = [server.sid, headline|lower|replace(' ', '_')]|join('.') %}
|
{% set headline_id = [server.sid, headline|lower|replace(' ', '_')]|join('.') %}
|
||||||
<h2><a href="#{{ headline_id }}">{{ headline }}</a></h2>
|
<h2><a href="#{{ headline_id }}">{{ headline }}</a></h2>
|
||||||
<ul class="list-group" id="{{ headline_id }}">
|
<ul class="list-group my-3" id="{{ headline_id }}">
|
||||||
{% for client, value in clients %}
|
{% for client, value in clients %}
|
||||||
{% set id = [headline_id, client.nick|striptags]|join('.') %}
|
{% set id = [headline_id, client.nick|striptags]|join('.') %}
|
||||||
<li id="{{ id }}" class="list-group-item justify-content-between{{ ' list-group-item-success' if client.connected else loop.cycle('" style="background-color: #eee;', '') }}">
|
<li id="{{ id }}" class="list-group-item justify-content-between{{ ' list-group-item-success' if client.connected else loop.cycle('" style="background-color: #eee;', '') }}">
|
||||||
|
|
Loading…
Reference in New Issue