diff options
author | Chocobozzz <me@florianbigard.com> | 2019-03-20 14:20:00 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-03-20 14:20:00 +0100 |
commit | 7113b5cd324030a578f534460636905889e1e6a2 (patch) | |
tree | 4faff308678aecb9b6caa0198ca775b89e7a757d /client | |
parent | d01b2fb9ab70f75355c479144e139188d1911c14 (diff) | |
download | PeerTube-7113b5cd324030a578f534460636905889e1e6a2.tar.gz PeerTube-7113b5cd324030a578f534460636905889e1e6a2.tar.zst PeerTube-7113b5cd324030a578f534460636905889e1e6a2.zip |
Fix custom CSS help
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.html | 16 |
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> |