Mercurial > libervia-templates
annotate sat_templates/templates/default/static/photo.css @ 411:f7a434581872 default tip
chat: Add forward, rich editing and extra recipients:
- There is a new "forward" menu in message. For now, a simple prompt ask for recipient JID.
- A new "extra" menu is available next to input field. Inside there are 2 items for now:
add extra recipient, and toggle rich edit mode.
- Extra recipient option add a field to add an email-like "to", "cc" or "bcc" recipients.
- Rich edit let use rich styling such as bold, italic, underline, etc.
rel 461
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 04 Jul 2025 17:33:22 +0200 |
parents | f1188ce8dd17 |
children |
rev | line source |
---|---|
124 | 1 .album { |
2 display: flex; | |
3 flex-wrap: wrap; | |
4 } | |
5 | |
6 .album__item { | |
7 width: 400px; | |
193
f1188ce8dd17
css (photo): fixed width on small screens (mobiles) for album__item
Goffi <goffi@goffi.org>
parents:
166
diff
changeset
|
8 max-width: 100%; |
f1188ce8dd17
css (photo): fixed width on small screens (mobiles) for album__item
Goffi <goffi@goffi.org>
parents:
166
diff
changeset
|
9 margin: 0 0.1em 2em 0.1em; |
124 | 10 } |
11 | |
12 .album__vignette { | |
13 background-color: #444; | |
14 height: 300px; | |
15 position: relative; | |
16 } | |
17 | |
18 .album__thumbnail { | |
19 height: 100%; | |
20 display: block; | |
21 margin: 0 auto; | |
22 } | |
23 | |
24 .album__comments-bar { | |
25 display: block; | |
26 font-size: 0.8em; | |
27 color: black; | |
28 text-align: right; | |
29 cursor: pointer; | |
30 } | |
31 | |
32 .album__comments-bar:hover { | |
33 background-color: #ddd; | |
34 font-weight: bold; | |
35 } | |
36 | |
37 .comments__count { | |
38 font-weight: bold; | |
39 } |