Mercurial > libervia-templates
annotate sat_templates/templates/bulma/static/styles_noscript.css @ 363:cddac8502c4b
chat/message: fix urlize escaping on nunjucks:
Nunjucks imply to use `safe` when using `urlize`, while Jinja2 doesn't. Esacaping and safe
filter are added so that `urlize` can work with both engines.
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 28 Jun 2023 10:40:53 +0200 |
parents | b7e5ce6bc82d |
children |
rev | line source |
---|---|
295 | 1 |
2 #loading_screen { | |
3 /* Loading screen doesn't make sense without JS, and must never be displayed */ | |
4 display: none; | |
5 } | |
6 | |
230 | 7 /********** |
8 * Panels * | |
9 **********/ | |
10 | |
11 /* drawer needs to be opened to have the content visible */ | |
12 .panel-drawer { | |
13 max-height: none; | |
14 opacity: 1; | |
15 } | |
318
b7e5ce6bc82d
CSS (noscript): new `nojs_hide` class to hide an element when JS is not available
Goffi <goffi@goffi.org>
parents:
295
diff
changeset
|
16 |
b7e5ce6bc82d
CSS (noscript): new `nojs_hide` class to hide an element when JS is not available
Goffi <goffi@goffi.org>
parents:
295
diff
changeset
|
17 .nojs_hide { |
b7e5ce6bc82d
CSS (noscript): new `nojs_hide` class to hide an element when JS is not available
Goffi <goffi@goffi.org>
parents:
295
diff
changeset
|
18 display: none; |
b7e5ce6bc82d
CSS (noscript): new `nojs_hide` class to hide an element when JS is not available
Goffi <goffi@goffi.org>
parents:
295
diff
changeset
|
19 } |