aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-03-20 14:20:00 +0100
committerChocobozzz <me@florianbigard.com>2019-03-20 14:20:00 +0100
commit7113b5cd324030a578f534460636905889e1e6a2 (patch)
tree4faff308678aecb9b6caa0198ca775b89e7a757d /client/src/app/+admin
parentd01b2fb9ab70f75355c479144e139188d1911c14 (diff)
downloadPeerTube-7113b5cd324030a578f534460636905889e1e6a2.tar.gz
PeerTube-7113b5cd324030a578f534460636905889e1e6a2.tar.zst
PeerTube-7113b5cd324030a578f534460636905889e1e6a2.zip
Fix custom CSS help
Diffstat (limited to 'client/src/app/+admin')
-rw-r--r--client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.html16
1 files 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 @@
318 helpType="custom" 318 helpType="custom"
319 i18n-customHtml 319 i18n-customHtml
320 customHtml=" 320 customHtml="
321 Write directly CSS code. Example:<br /> 321 Write directly CSS code. Example:<br /><br />
322 <pre> 322 <pre>
323 body {{ '{' }} 323 #custom-css {{ '{' }}
324 background-color: red; 324 color: red;
325 {{ '}' }} 325 {{ '}' }}
326 </pre> 326 </pre>
327 327
328 Prepend with <em>#custom-css</em> to override styles. Example: 328 Prepend with <em>#custom-css</em> to override styles. Example:<br /><br />
329 <pre> 329 <pre>
330 #custom-css .logged-in-email {{ '{' }} 330 #custom-css .logged-in-email {{ '{' }}
331 color: red; 331 color: red;
332 {{ '}' }} 332 {{ '}' }}
333 </pre> 333 </pre>
334 " 334 "
335 ></my-help> 335 ></my-help>