diff --git a/meshview/templates/chat.html b/meshview/templates/chat.html index d44d8b1..2c65a92 100644 --- a/meshview/templates/chat.html +++ b/meshview/templates/chat.html @@ -25,13 +25,16 @@ /* Nested reply style below the message */ .replying-to { - background-color: #444; - padding: 4px 8px; + font-size: 0.85em; + color: #aaa; /* gray text */ margin-top: 4px; - border-left: 3px solid #ffe066; - border-radius: 4px; - font-size: 0.9em; - color: #fff; + padding-left: 20px; /* increased indentation */ + +.replying-to .reply-preview { + color: #aaa; +} + + } {% endblock %} @@ -69,27 +72,28 @@ function renderPacket(packet, highlight = false) { const formattedTimestamp = `${formattedTime} - ${formattedDate}`; // Try to resolve the reply target - let replyHtml = ""; - if (packet.reply_id) { - const parent = packetMap.get(packet.reply_id); - if (parent) { - replyHtml = ` -