Changeset a78a0ef in Klonkt
- Timestamp:
- 08/06/2026 02:14:04 AM (5 weeks ago)
- Branches:
- main
- Children:
- 50489c7
- Parents:
- 0448e34
- git-author:
- Robin <roboburr@…> (08/06/2026 02:14:03 AM)
- git-committer:
- Claude (agent) <aiclaude@…> (08/06/2026 02:14:04 AM)
- Location:
- src/views
- Files:
-
- 2 edited
-
pages/messages.ejs (modified) (1 diff)
-
partials/msg-item.ejs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/views/pages/messages.ejs
r0448e34 ra78a0ef 151 151 in aparte chips zaten. */ 152 152 .msg-thread { display: block; } 153 .msg-thread-head { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-bottom: .5rem; } 154 .msg-thread-who { font-weight: 600; } 155 .msg-thread-count { font-size: .78em; padding: .05rem .4rem; border-radius: 999px; 156 background: color-mix(in srgb, var(--ink, #000) 10%, transparent); } 153 .msg-thread-head { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; margin-bottom: .35rem; } 154 /* De tegenpartij is een labeltje bij het gesprek, geen kop erboven: een 155 kleine verzonken uitsparing, zodat de bubbels eronder de ruimte krijgen. 156 Het aantal zit in dezelfde uitsparing in plaats van ernaast. */ 157 .msg-thread-who { display: inline-flex; align-items: center; gap: .3rem; 158 font-size: .78em; line-height: 1.5; font-weight: 500; 159 padding: .05rem .5rem; border-radius: 999px; 160 color: color-mix(in srgb, var(--ink, #000) 62%, transparent); 161 background: color-mix(in srgb, var(--ink, #000) 5%, transparent); 162 box-shadow: inset 0 1px 2px color-mix(in srgb, var(--ink, #000) 9%, transparent); 163 max-width: 60%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } 164 .msg-thread-count { font-variant-numeric: tabular-nums; opacity: .75; 165 padding-inline-start: .3rem; border-inline-start: 1px solid color-mix(in srgb, var(--ink, #000) 14%, transparent); } 157 166 .msg-thread-post { display: inline-flex; align-items: center; gap: .3rem; font-size: .85em; 158 167 margin-inline-start: auto; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -
src/views/partials/msg-item.ejs
r0448e34 ra78a0ef 14 14 <li class="msg-item msg-thread<%= _tnew ? ' is-new' : '' %>" data-kind="conv" data-who="<%= (_tpeople.join(' ') + ' ' + (_tto || '')).toLowerCase() %>"> 15 15 <div class="msg-thread-head"> 16 <span class="msg-thread-who"><%= _tlabel %></span> 17 <% if (n.count > 1) { %><span class="msg-thread-count"><%= n.count %></span><% } %> 16 <%# Tegenpartij en aantal in EEN uitsparing: het is een label bij het 17 gesprek, geen kop erboven. Zo houdt de inhoud de ruimte. %> 18 <span class="msg-thread-who"><%= _tlabel %><% if (n.count > 1) { %><span class="msg-thread-count"><%= n.count %></span><% } %></span> 18 19 <% if (_tnew) { %><span class="msg-new" title="<%= t('msg.new') %>"></span><% } %> 19 20 <%# De context bij de draad: waar gaat dit gesprek over? Zonder deze
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)