From 7113b5cd324030a578f534460636905889e1e6a2 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 20 Mar 2019 14:20:00 +0100 Subject: [PATCH] Fix custom CSS help --- .../edit-custom-config.component.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.html b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.html index b7d95bc22..6b654c67d 100644 --- a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.html +++ b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.html @@ -318,18 +318,18 @@ helpType="custom" i18n-customHtml customHtml=" - Write directly CSS code. Example:
+ Write directly CSS code. Example:

-          body {{ '{' }}
-            background-color: red;
-          {{ '}' }}
+  #custom-css {{ '{' }}
+    color: red;
+  {{ '}' }}
                     
- Prepend with #custom-css to override styles. Example: + Prepend with #custom-css to override styles. Example:

-          #custom-css .logged-in-email {{ '{' }}
-            color: red;
-          {{ '}' }}
+  #custom-css .logged-in-email {{ '{' }}
+    color: red;
+  {{ '}' }}
                     
" > -- 2.41.0