comparison sat_templates/templates/bulma/static/chat.css @ 386:e63fb06052ae

bulma: message edition + extra menu + improvments: - add an extra menu template with `Edit` and `Quote` - add a template for previous editions popup - fix `own_msg` class application - add CSS for edit mode - cosmetic changes
author Goffi <goffi@goffi.org>
date Tue, 28 Nov 2023 17:48:00 +0100
parents 941e4006ab6e
children 8b990c78d4b5
comparison
equal deleted inserted replaced
385:941e4006ab6e 386:e63fb06052ae
15 resize: None; 15 resize: None;
16 max-height: 20rem; 16 max-height: 20rem;
17 min-height: 48px; 17 min-height: 48px;
18 } 18 }
19 19
20 /* Input "edit" mode */
21 #message_input.mode_edit {
22 background-color: #d1ecf1;
23 }
24
20 .is-chat-message { 25 .is-chat-message {
21 transition: all 0.3s ease; 26 transition: all 0.3s ease;
22 padding-left: 1.5em; 27 padding-left: 1.5em;
23 } 28 }
24 29
25 .is-chat-message:hover, .chat-message-highlight { 30 .is-chat-message:hover, .is-chat-message.has-popup-focus {
26 background-color: #f5f5f5; 31 background-color: #f5f5f5;
27 box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); 32 box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
28 } 33 }
29 34
30 .message-attachment { 35 .message-attachment {