From 6f97016c04450a76a4e311043c35534e1489144b Mon Sep 17 00:00:00 2001 From: Rampoina Date: Mon, 18 Apr 2022 00:19:31 +0200 Subject: [PATCH] Add details tag --- main.css | 4 ++++ spaces.html | 11 ++++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/main.css b/main.css index 378e773..6e79bd5 100644 --- a/main.css +++ b/main.css @@ -6,6 +6,10 @@ align-items: center; display:flex; } + +summary { + display:flex; +} img.avatar { -webkit-border-radius: 50%; -moz-border-radius: 50%; diff --git a/spaces.html b/spaces.html index a5d1fac..d0bd81a 100644 --- a/spaces.html +++ b/spaces.html @@ -13,6 +13,10 @@ <%def name="render(room)">
+ % if room['name'] != "TOP": + % if room['name'] != "TOP" and room['name'] != "Libre Gaming": +
+ % endif
% if 'avatar_url' in room: @@ -31,13 +35,18 @@ % endif
+ % if room['name'] != "TOP" and room['name'] != "Libre Gaming": +
+ % endif + % endif % if 'children' in room: -
% for subroom in room['children']: ${render(subroom)} % endfor + % if room['name'] != "TOP" and room['name'] != "Libre Gaming":
+ % endif % endif