From 7337a75bf06dd3ee501b502c1e4251dbf78aa04d Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 9 Nov 2021 15:26:10 +0100 Subject: [PATCH] Add available themes and plugins in feature table --- .../instance-features-table.component.html | 22 +++++++++++++++++++ .../instance-features-table.component.scss | 9 ++++++-- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/client/src/app/shared/shared-instance/instance-features-table.component.html b/client/src/app/shared/shared-instance/instance-features-table.component.html index 83440e87c..0d4e77b73 100644 --- a/client/src/app/shared/shared-instance/instance-features-table.component.html +++ b/client/src/app/shared/shared-instance/instance-features-table.component.html @@ -128,5 +128,27 @@ + + + Plugins & Themes + + + + Available themes + + + {{ theme.name }} + + + + + + Plugins enabled + + + {{ plugin.name }} + + + diff --git a/client/src/app/shared/shared-instance/instance-features-table.component.scss b/client/src/app/shared/shared-instance/instance-features-table.component.scss index d8efd8cdf..6107909a2 100644 --- a/client/src/app/shared/shared-instance/instance-features-table.component.scss +++ b/client/src/app/shared/shared-instance/instance-features-table.component.scss @@ -34,6 +34,11 @@ table { font-weight: $font-semibold; color: pvar(--mainForegroundColor); } -} - + .plugin, + .theme { + &:not(:last-child):after { + content: '•'; + } + } +} -- 2.41.0