source: Klonkt/src/views/pages/authorize-interaction.ejs@ 39a9d21

main
Last change on this file since 39a9d21 was 0475b13, checked in by roboburr <roboburr@…>, 5 weeks ago

Acht schone pagina's uit inline script naar modules (shaer-bqr, stap 3b)

Alle acht zonder EJS-interpolatie, dus ongewijzigd te verplaatsen: admin-help,
admin-epk, admin-paid, admin-settings, auth-register, admin-push, admin-site-edit
(2 blokken) en authorize-interaction (3 blokken).

Elke route zegt nu welke module hij wil via pageJs; de bootstrap in de shell
haalt hem op. Meerdere blokken uit een pagina belanden in EEN module, gescheiden
door een streep -- ze deelden toch al een pagina en een levensduur.

Templates compileren, modules syntactisch ok, suite 565/565. Het echte bewijs
per pagina is er via een LINK naartoe gaan; na een herlading werkt alles toch al.

Commit met expliciete paden, niet met -A: eerder vandaag veegde ik daarmee
andermans werk uit dezelfde werkmap mee.

  • Property mode set to 100644
File size: 22.9 KB
RevLine 
[3d7312a]1<div class="auth-interact">
[7d932ce]2 <% if (typeof manage !== 'undefined' && manage) { %>
[9e5438e]3 <%- include('../partials/fedi-tabs', { active: 'reacties' }) %>
[7d932ce]4 <h1 class="auth-interact-title"><%= t('fedi.manage_title') %></h1>
[dcff893]5
6 <%# Interact bookmarklet — drag to bookmarks bar, then click on any fediverse post. %>
7 <div class="fedi-bm">
8 <a class="fedi-bm-btn" id="fedi-bm-btn" href="#" draggable="true" title="<%= t('fedi.bm_help') %>">
9 <svg viewBox="0 0 24 24" width="15" height="15" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"/></svg>
10 <%= t('fedi.bm_label') %>
11 </a>
12 <p class="fedi-bm-help"><%= t('fedi.bm_help') %></p>
13 </div>
[0475b13]14 <%# Het script van deze pagina staat in assets/js/mod/authorize-interaction.js (shaer-bqr). %>
[5b47619]15 <% if (!manage.length) { %>
16 <p class="auth-interact-note"><%= t('fedi.manage_empty') %></p>
17 <% } else { %>
18 <ul class="fedi-manage">
19 <% manage.forEach(function(m){ %>
20 <li class="fedi-manage-item">
[2f42b60]21 <div class="fedi-manage-head">
22 <span class="fedi-manage-icon" aria-hidden="true"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 17 4 12 9 7"/><path d="M20 18v-2a4 4 0 0 0-4-4H4"/></svg></span>
23 <% if (m.to_handle) { %><span class="fedi-manage-to"><%= m.to_handle %></span><% } %>
24 <% if (m.created_at && typeof formatDateTime === 'function') { %><span class="fedi-manage-time"><%= formatDateTime(m.created_at) %></span><% } %>
25 </div>
[5b47619]26 <div class="fedi-manage-content"><%- m.content %></div>
27 <div class="fedi-manage-foot">
[04c70fc]28 <button type="button" class="fedi-edit-btn" aria-expanded="false"><svg viewBox="0 0 24 24" width="13" height="13" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 20h9"/><path d="M16.5 3.5a2.12 2.12 0 0 1 3 3L7 19l-4 1 1-4Z"/></svg> <%= t('fedi.edit') %></button>
[ace5a9b]29 <% if (m.in_reply_to) { %>
30 <a class="fedi-goto-btn" href="<%= m.in_reply_to %>" target="_blank" rel="nofollow noopener"><svg viewBox="0 0 24 24" width="13" height="13" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M7 17 17 7"/><path d="M7 7h10v10"/></svg> <%= t('fedi.goto_post') %></a>
[04c70fc]31 <% } %>
[f7d142f]32 <form method="post" action="/fediverse/<%= m.id %>/delete" class="fedi-del-form" data-confirm="<%= t('fedi.delete_confirm') %>">
[2f42b60]33 <button type="submit" class="fedi-del-btn"><svg viewBox="0 0 24 24" width="13" height="13" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polyline points="3 6 5 6 21 6"/><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"/></svg> <%= t('comments.delete') %></button>
[7d932ce]34 </form>
35 </div>
[5190152]36 <div class="fedi-edit-form">
37 <%- include('../partials/reply-editor', {
38 action: '/fediverse/' + m.id + '/edit',
39 placeholder: t('fedi.reply_ph'),
40 submitLabel: t('fedi.save_edit'),
41 rows: 3,
42 initialHtml: m.content,
43 initialText: m.editable,
44 defaultLang: m.language,
45 noAttach: true,
46 }) %>
47 </div>
[5b47619]48 </li>
49 <% }); %>
50 </ul>
[0475b13]51
[5b47619]52 <% } %>
53 <p class="auth-interact-note"><a href="/"><%= t('fedi.remote_back') %></a></p>
[0aa23cf]54 <% } else if (typeof liked !== 'undefined' && liked) { %>
55 <h1 class="auth-interact-title">★ <%= t('fedi.liked_title') %></h1>
56 <p class="auth-interact-note"><%= t('fedi.liked_done') %></p>
57 <p class="auth-interact-actions">
[2279f80]58 <% if (uri) { %><a class="btn" href="<%= uri %>" rel="nofollow noopener"><%= t('fedi.remote_view_original') %></a><% } %>
[0aa23cf]59 <a class="btn btn-primary" href="/"><%= t('fedi.remote_back') %></a>
60 </p>
[b6cdc3d]61 <% } else if (typeof boosted !== 'undefined' && boosted) { %>
62 <h1 class="auth-interact-title">🔁 <%= t('fedi.boosted_title') %></h1>
63 <p class="auth-interact-note"><%= t('fedi.boosted_done') %></p>
64 <p class="auth-interact-actions">
65 <% if (uri) { %><a class="btn" href="<%= uri %>" rel="nofollow noopener"><%= t('fedi.remote_view_original') %></a><% } %>
66 <a class="btn btn-primary" href="/"><%= t('fedi.remote_back') %></a>
67 </p>
[8ad1784]68 <% } else if (typeof followed !== 'undefined' && followed) { %>
69 <h1 class="auth-interact-title"><%= t('fedi.followed_title') %></h1>
70 <p class="auth-interact-note"><%= t('fedi.followed_done') %></p>
71 <p class="auth-interact-actions">
72 <% if (uri) { %><a class="btn" href="<%= uri %>" rel="nofollow noopener"><%= t('fedi.view_profile') %></a><% } %>
73 <a class="btn btn-primary" href="/"><%= t('fedi.remote_back') %></a>
74 </p>
[7d932ce]75 <% } else if (typeof sent !== 'undefined' && sent) { %>
[41a7637]76 <h1 class="auth-interact-title"><%= t('fedi.remote_sent_title') %></h1>
77 <p class="auth-interact-note"><%= t('fedi.remote_sent') %></p>
78 <p class="auth-interact-actions">
[2902320]79 <% if (uri) { %><a class="btn btn-primary" href="<%= uri %>" rel="nofollow noopener"><%= t('fedi.remote_view_original') %></a><% } %>
80 <a class="btn" href="/"><%= t('fedi.remote_back') %></a>
[41a7637]81 </p>
[1c2dcba]82 <% } else if (typeof reported !== 'undefined' && reported) { %>
83 <h1 class="auth-interact-title">🚩 <%= t('fedi.reported_title') %></h1>
84 <p class="auth-interact-note"><%= t('fedi.reported_done') %></p>
85 <p class="auth-interact-actions">
86 <a class="btn" href="/"><%= t('fedi.remote_back') %></a>
87 </p>
[667fb41]88 <% } else if (typeof voted !== 'undefined' && voted) { %>
89 <h1 class="auth-interact-title">📊 <%= t('poll.voted_title') %></h1>
90 <p class="auth-interact-note"><%= t('poll.voted_done') %></p>
91 <p class="auth-interact-actions">
92 <% if (uri) { %><a class="btn btn-primary" href="<%= uri %>" rel="nofollow noopener"><%= t('fedi.remote_view_original') %></a><% } %>
93 <a class="btn" href="/"><%= t('fedi.remote_back') %></a>
94 </p>
[8ad1784]95 <% } else if (typeof followTarget !== 'undefined' && followTarget) { %>
96 <h1 class="auth-interact-title"><%= t('fedi.follow_heading') %></h1>
97 <p class="auth-interact-meta">
98 <%= t('fedi.follow_intro') %>
99 <a href="<%= followTarget.actor_url %>" rel="nofollow noopener" target="_blank"><strong><%= followTarget.actor_name %></strong></a>
100 <span class="fedi-handle"><%= followTarget.actor_handle %></span>
101 </p>
102 <form method="post" action="/authorize_interaction/follow" class="auth-interact-form">
103 <input type="hidden" name="uri" value="<%= followTarget.actor_uri %>">
104 <div class="auth-interact-actions">
105 <button type="submit" class="btn btn-primary"><%= t('fedi.follow_btn') %></button>
106 <a href="/" class="btn"><%= t('comments.cancel') %></a>
107 </div>
108 </form>
109 <p class="auth-interact-note"><%= t('fedi.remote_as', { site: siteTitle }) %></p>
[41a7637]110 <% } else { %>
[3d7312a]111 <h1 class="auth-interact-title"><%= t('fedi.remote_title') %></h1>
112
113 <% if (!target) { %>
114 <p class="auth-interact-note"><%= t('fedi.remote_notfound') %></p>
115 <form method="get" action="/authorize_interaction" class="auth-interact-form">
116 <input type="url" name="uri" placeholder="https://…/een-post" value="<%= uri || '' %>" required>
117 <button type="submit" class="btn btn-primary"><%= t('fedi.remote_load') %></button>
118 </form>
119 <% } else { %>
120 <p class="auth-interact-meta">
121 <%= t('fedi.remote_replying_to') %>
122 <a href="<%= target.actor_url %>" rel="nofollow noopener" target="_blank"><strong><%= target.actor_name %></strong></a>
123 <span class="fedi-handle"><%= target.actor_handle %></span>
124 </p>
[2826bb97]125 <blockquote class="auth-interact-preview">
126 <% if (target.content) { %><div class="auth-interact-content"><%- target.content %></div>
127 <% } else if (target.preview) { %><%= target.preview %><% } %>
128 <% (target.images || []).forEach(function(im){ %>
129 <img class="auth-interact-img" src="<%= im %>" alt="" loading="lazy">
130 <% }); %>
131 </blockquote>
[b6cdc3d]132 <% if (target.url || uri) { %>
133 <a class="auth-view-src" href="<%= target.url || uri %>" target="_blank" rel="nofollow noopener">
134 <svg viewBox="0 0 24 24" width="17" height="17" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M7 17 17 7"/><path d="M7 7h10v10"/></svg>
135 <span><%= t('fedi.remote_view_original') %></span>
136 </a>
137 <% } %>
[c45c187]138 <% if (target.poll) { var _pl = target.poll; var _tot = _pl.options.reduce(function(s,o){return s+(o.count||0);},0); var _vn = (_pl.voters!=null?_pl.voters:_tot); %>
[667fb41]139 <% if (!_pl.closed) { %>
140 <form method="post" action="/authorize_interaction/vote" class="auth-poll">
141 <input type="hidden" name="uri" value="<%= uri %>">
142 <% _pl.options.forEach(function(o){ %>
143 <label class="auth-poll-choice"><input type="<%= _pl.multiple ? 'checkbox' : 'radio' %>" name="choice" value="<%= o.name %>"><span><%= o.name %></span></label>
144 <% }); %>
145 <div class="auth-interact-actions">
146 <button type="submit" class="btn btn-primary"><%= t('poll.vote') %></button>
147 </div>
[c45c187]148 <p class="auth-poll-foot"><%= _vn %> <%= _vn === 1 ? t('poll.voter_one') : t('poll.voter_many') %> · <%= t('poll.open') %><% if (_pl.endTime) { %> · <%= t('poll.closes') %> <%= new Date(_pl.endTime).toLocaleString() %><% } %><% if (_pl.multiple) { %> · <%= t('poll.multiple') %><% } %></p>
[667fb41]149 </form>
150 <% } else { %>
151 <div class="auth-poll">
152 <% _pl.options.forEach(function(o){ var _pct = _tot ? Math.round((o.count||0)*100/_tot) : 0; %>
153 <div class="auth-poll-res"><span class="auth-poll-fill" style="width:<%= _pct %>%"></span><span class="auth-poll-name"><%= o.name %></span><span class="auth-poll-pct"><%= _pct %>%</span></div>
154 <% }); %>
[c45c187]155 <p class="auth-poll-foot"><%= _vn %> <%= _vn === 1 ? t('poll.voter_one') : t('poll.voter_many') %> · <%= t('poll.closed') %><% if (_pl.multiple) { %> · <%= t('poll.multiple') %><% } %></p>
[667fb41]156 </div>
157 <% } %>
158 <% } %>
[c7ecaf9]159 <% var _liked = (typeof reacted !== 'undefined' && reacted.liked); var _boosted = (typeof reacted !== 'undefined' && reacted.boosted); %>
[b6cdc3d]160 <div class="auth-interact-react">
[c7ecaf9]161 <form method="post" action="/authorize_interaction/like" class="fedi-react-form">
[b6cdc3d]162 <input type="hidden" name="uri" value="<%= uri %>">
[c7ecaf9]163 <button type="submit" class="fedi-bigact fedi-bigact-like<%= _liked ? ' is-on' : '' %>" data-on="<%= t('fedi.unlike_short') %>" data-off="<%= t('fedi.like_short') %>">
[3d37c67]164 <svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M12 2.6l2.9 5.88 6.49.95-4.7 4.58 1.11 6.46L12 17.96l-5.8 3.06 1.1-6.46-4.69-4.58 6.49-.95z"/></svg>
[c7ecaf9]165 <span class="fedi-bigact-label"><%= _liked ? t('fedi.unlike_short') : t('fedi.like_short') %></span>
[3d37c67]166 </button>
[b6cdc3d]167 </form>
[c7ecaf9]168 <form method="post" action="/authorize_interaction/boost" class="fedi-react-form">
[b6cdc3d]169 <input type="hidden" name="uri" value="<%= uri %>">
[c7ecaf9]170 <button type="submit" class="fedi-bigact fedi-bigact-boost<%= _boosted ? ' is-on' : '' %>" data-on="<%= t('tl.unboost') %>" data-off="<%= t('fedi.boost_short') %>">
[3d37c67]171 <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polyline points="17 1 21 5 17 9"/><path d="M3 11V9a4 4 0 0 1 4-4h14"/><polyline points="7 23 3 19 7 15"/><path d="M21 13v2a4 4 0 0 1-4 4H3"/></svg>
[c7ecaf9]172 <span class="fedi-bigact-label"><%= _boosted ? t('tl.unboost') : t('fedi.boost_short') %></span>
[3d37c67]173 </button>
[b6cdc3d]174 </form>
175 </div>
[0aa23cf]176 <p class="auth-interact-or"><%= t('fedi.or_reply') %></p>
[2902320]177 <p class="auth-interact-where">💬 <%= t('fedi.reply_where') %></p>
[33e1dbd]178 <div class="auth-interact-form">
179 <%- include('../partials/reply-editor', {
180 action: '/authorize_interaction',
181 hiddenFields: [{ name: 'uri', value: uri }],
182 placeholder: t('fedi.reply_ph'),
183 submitLabel: t('fedi.send'),
184 rows: 4,
[e9c9ae1]185 participants: (target && target.actor_uri) ? [{
186 uri: target.actor_uri,
187 url: target.actor_url || target.actor_uri,
188 handle: target.actor_handle || '',
189 }] : [],
[33e1dbd]190 }) %>
191 <div class="auth-interact-actions"><a href="<%= uri %>" class="btn"><%= t('comments.cancel') %></a></div>
192 </div>
[3d7312a]193 <p class="auth-interact-note"><%= t('fedi.remote_as', { site: siteTitle }) %></p>
[1c2dcba]194 <details class="auth-report">
195 <summary>🚩 <%= t('fedi.report_open') %></summary>
196 <form method="post" action="/authorize_interaction/report" class="auth-interact-form">
197 <input type="hidden" name="uri" value="<%= uri %>">
198 <input type="hidden" name="actor_uri" value="<%= target.actor_uri %>">
[badbba8]199 <p class="auth-report-note"><%= t('fedi.report_where') %></p>
[1c2dcba]200 <textarea name="reason" rows="3" maxlength="3000" placeholder="<%= t('fedi.report_ph') %>"></textarea>
201 <div class="auth-interact-actions">
202 <button type="submit" class="btn btn-danger"><%= t('fedi.report_send') %></button>
203 </div>
204 </form>
205 </details>
[3d7312a]206 <% } %>
[41a7637]207 <% } %>
[3d7312a]208</div>
209
210<style>
[dee7f02]211 .auth-interact { max-width: 640px; margin: 1rem auto; padding: 0 1rem; }
[3d7312a]212 .auth-interact-title { margin: 0 0 1rem; }
213 .auth-interact-meta { color: var(--ink-soft, #888); margin: 0 0 .75rem; }
214 .auth-interact-preview {
215 margin: 0 0 1rem; padding: .75rem 1rem; border-left: 3px solid var(--accent, #888);
216 background: color-mix(in srgb, var(--ink, #000) 4%, transparent); border-radius: 0 12px 12px 0;
217 color: var(--ink, inherit);
218 }
219 .auth-interact-form { display: flex; flex-direction: column; gap: .75rem; }
220 .auth-interact-form textarea, .auth-interact-form input[type=url] {
221 width: 100%; box-sizing: border-box; padding: .6rem .8rem; font: inherit; resize: vertical;
222 border-radius: 12px; border: 1px solid color-mix(in srgb, var(--ink, #000) 18%, transparent);
223 background: var(--paper, #fff); color: var(--ink, #000);
224 }
225 .auth-interact-actions { display: flex; gap: .5rem; align-items: center; }
226 .auth-interact-note { color: var(--ink-soft, #999); font-size: .85rem; margin-top: 1rem; }
[2902320]227 .auth-interact-where { margin: .25rem 0 .85rem; padding: .6rem .8rem; font-size: .85rem; line-height: 1.5; border-radius: 10px; background: color-mix(in srgb, var(--accent, #888) 12%, transparent); color: var(--ink, inherit); }
[2826bb97]228 .auth-interact-content { line-height: 1.55; }
229 .auth-interact-content p { margin: .35rem 0; }
230 .auth-interact-content p:first-child { margin-top: 0; }
231 .auth-interact-img { max-width: 100%; height: auto; border-radius: 10px; margin: .5rem 0 0; display: block; }
232 .auth-interact-orig { margin: .75rem 0 0; font-size: .85rem; }
233 .auth-interact-orig a { color: var(--accent, #06c); }
[b6cdc3d]234 .auth-view-src { display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 1.1rem; padding: .6rem 1rem;
235 border: 1px solid color-mix(in srgb, var(--accent, #888) 45%, transparent); border-radius: 12px;
236 background: color-mix(in srgb, var(--accent, #888) 10%, transparent); color: var(--accent, #06c);
237 text-decoration: none; font-weight: 600; font-size: .92rem; transition: background .15s, border-color .15s; }
238 .auth-view-src:hover { background: color-mix(in srgb, var(--accent, #888) 18%, transparent); border-color: var(--accent, #888); }
[3d37c67]239 .auth-interact-react { display: flex; gap: .6rem; flex-wrap: wrap; margin: 0 0 .25rem; }
[b6cdc3d]240 .auth-interact-react form { margin: 0; }
[3d37c67]241 .fedi-bigact { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1.1rem; border-radius: 999px;
242 border: 1px solid color-mix(in srgb, var(--ink, #000) 14%, transparent);
243 background: color-mix(in srgb, var(--ink, #000) 4%, transparent);
244 color: var(--ink, inherit); font: inherit; font-weight: 600; font-size: .92rem; cursor: pointer; white-space: nowrap;
245 transition: background .12s, border-color .12s; }
246 .fedi-bigact svg { width: 17px; height: 17px; flex: 0 0 17px; }
247 .fedi-bigact-like svg { color: #e8b04b; }
248 .fedi-bigact-like:hover, .fedi-bigact-like.is-on { background: color-mix(in srgb, #e8b04b 16%, transparent); border-color: color-mix(in srgb, #e8b04b 55%, transparent); }
249 .fedi-bigact-boost svg { color: #2fa85a; }
250 .fedi-bigact-boost:hover, .fedi-bigact-boost.is-on { background: color-mix(in srgb, #2fa85a 16%, transparent); border-color: color-mix(in srgb, #2fa85a 55%, transparent); }
[5b47619]251 .fedi-manage { list-style: none; padding: 0; margin: 1.25rem 0 1rem; display: flex; flex-direction: column; gap: .7rem; }
[2f42b60]252 .fedi-manage-item { padding: .9rem 1rem; border-radius: 14px; background: color-mix(in srgb, var(--ink, #000) 3.5%, transparent); border: 1px solid color-mix(in srgb, var(--ink, #000) 9%, transparent); transition: border-color .15s ease, box-shadow .15s ease; }
253 .fedi-manage-item:hover { border-color: color-mix(in srgb, var(--accent, #888) 28%, transparent); box-shadow: 0 2px 12px color-mix(in srgb, var(--ink, #000) 6%, transparent); }
254 .fedi-manage-head { display: flex; align-items: center; gap: .5rem; margin: 0 0 .5rem; }
255 .fedi-manage-icon { flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
256 background: color-mix(in srgb, var(--accent, #888) 16%, transparent); color: var(--accent, #06c); }
257 .fedi-manage-icon svg { width: 14px; height: 14px; }
258 .fedi-manage-to { font-weight: 600; color: var(--ink, inherit); font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
259 .fedi-manage-time { color: var(--ink-soft, #999); font-size: .76rem; margin-left: auto; flex: 0 0 auto; white-space: nowrap; }
260 .fedi-manage-content { line-height: 1.55; overflow-wrap: anywhere; padding-left: calc(26px + .5rem); }
[5b47619]261 .fedi-manage-content p { margin: .15rem 0; }
262 .fedi-manage-content p:first-child { margin-top: 0; }
263 .fedi-manage-content p:last-child { margin-bottom: 0; }
[04c70fc]264 .fedi-manage-foot { display: flex; align-items: center; justify-content: flex-start; flex-wrap: wrap; gap: .5rem; margin-top: .65rem; }
[ace5a9b]265 .fedi-goto-btn { display: inline-flex; align-items: center; gap: .35rem; border: 1px solid color-mix(in srgb, var(--accent, #888) 45%, transparent); background: color-mix(in srgb, var(--accent, #888) 12%, transparent); color: var(--accent, #06c); border-radius: 999px; padding: .3rem .8rem; font-size: .82rem; text-decoration: none; transition: background .15s ease; }
266 .fedi-goto-btn:hover { background: color-mix(in srgb, var(--accent, #888) 22%, transparent); }
[2f42b60]267 .fedi-del-btn { display: inline-flex; align-items: center; gap: .35rem; border: 1px solid color-mix(in srgb, #d9534f 45%, transparent); background: color-mix(in srgb, #d9534f 12%, transparent); color: #e06b66; border-radius: 999px; padding: .3rem .8rem; font: inherit; font-size: .82rem; cursor: pointer; transition: background .15s ease; }
[5b47619]268 .fedi-del-btn:hover { background: color-mix(in srgb, #d9534f 24%, transparent); }
[dcff893]269 .fedi-bm { margin: 0 0 1.5rem; padding: 1rem; border-radius: 14px;
270 border: 1px dashed color-mix(in srgb, var(--accent, #888) 45%, transparent);
271 background: color-mix(in srgb, var(--accent, #888) 7%, transparent); }
272 .fedi-bm-btn { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem 1rem; border-radius: 999px;
273 background: var(--accent, #06c); color: #fff; font: inherit; font-weight: 600; font-size: .9rem; text-decoration: none;
274 cursor: grab; user-select: none; box-shadow: 0 2px 8px color-mix(in srgb, var(--accent, #000) 30%, transparent); }
275 .fedi-bm-btn:active { cursor: grabbing; }
276 .fedi-bm-btn.nudge { animation: fedi-bm-nudge .6s ease; }
277 @keyframes fedi-bm-nudge { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
278 .fedi-bm-help { color: var(--ink-soft, #888); font-size: .82rem; line-height: 1.5; margin: .6rem 0 0; }
[04c70fc]279 .fedi-edit-btn { display: inline-flex; align-items: center; gap: .35rem; border: 1px solid color-mix(in srgb, var(--ink, #888) 28%, transparent);
280 background: color-mix(in srgb, var(--ink, #888) 8%, transparent); color: var(--ink-soft, #aaa); border-radius: 999px; padding: .3rem .8rem;
281 font: inherit; font-size: .82rem; cursor: pointer; transition: background .15s ease, color .15s ease; }
282 .fedi-edit-btn:hover { background: color-mix(in srgb, var(--ink, #888) 16%, transparent); }
283 .fedi-edit-btn.is-open { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 45%, transparent); background: color-mix(in srgb, var(--accent) 10%, transparent); }
284 .fedi-del-form { margin-left: auto; }
285 .fedi-edit-form { display: none; margin: .55rem 0 0; }
286 .fedi-edit-form.is-open { display: block; }
[bddbfe0]287 .fedi-edit-ta { width: 100%; box-sizing: border-box; min-height: 70px; resize: vertical; padding: .55rem .7rem;
288 border: 1.5px solid var(--rule, #333); border-radius: 10px; background: var(--paper-2, #14141a); color: var(--ink, #eee); font: inherit; font-size: .9rem; }
289 .fedi-edit-ta:focus { outline: none; border-color: var(--accent); }
290 .fedi-edit-actions { display: flex; justify-content: flex-end; margin-top: .5rem; }
291 .fedi-edit-save { padding: .4rem 1rem; border: 0; border-radius: 999px; background: var(--accent); color: var(--paper, #fff);
292 font: inherit; font-weight: 600; font-size: .82rem; cursor: pointer; }
[667fb41]293 /* Poll ballot / results on the interact page */
294 .auth-poll { display: flex; flex-direction: column; gap: 8px; margin: 0 0 1rem; }
295 .auth-poll-choice { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; cursor: pointer;
296 border: 1px solid color-mix(in srgb, var(--ink, #000) 14%, transparent); }
297 .auth-poll-choice:hover { border-color: var(--accent); }
298 .auth-poll-choice input { accent-color: var(--accent); }
299 .auth-poll-res { position: relative; padding: 9px 12px; border-radius: 10px; overflow: hidden; display: flex; align-items: center; gap: 8px;
300 background: color-mix(in srgb, var(--ink, #000) 6%, transparent); }
301 .auth-poll-fill { position: absolute; inset: 0 auto 0 0; background: color-mix(in srgb, var(--accent) 22%, transparent); z-index: 0; }
302 .auth-poll-name { position: relative; z-index: 1; flex: 1; font-size: .95rem; }
303 .auth-poll-pct { position: relative; z-index: 1; font-variant-numeric: tabular-nums; font-weight: 500; }
304 .auth-poll-foot { font-size: .82rem; color: var(--ink-soft, #888); margin: .1rem 0 0; }
[1c2dcba]305 .auth-report { margin: .6rem 0 0; }
306 .auth-report summary { cursor: pointer; font-size: .85rem; color: var(--ink-soft, #888); }
307 .auth-report summary:hover, .auth-report[open] summary { color: #c0392b; }
308 .auth-report[open] summary { margin-bottom: .5rem; }
309 .auth-report-note { font-size: .82rem; color: var(--ink-muted, #999); margin: 0 0 .5rem; }
[3d7312a]310</style>
[c7ecaf9]311
[0475b13]312
Note: See TracBrowser for help on using the repository browser.