source: Klonkt/src/views/pages/admin-site-edit.ejs

main
Last change on this file was 520c993, checked in by Robin <roboburr@…>, 3 weeks ago

Lezen: elk bericht een eigen scherm wordt een keuze

Robins vraag (20-8): de lege ruimtes tussen berichten optioneel maken, en
specifiek voor Lezen.

Nieuwe kolom reader_full_page op sites, standaard UIT zodat bestaande
sites niet ineens anders lezen:

uit bericht na bericht, geen lege ruimte eronder
aan elk bericht vult minstens een scherm (min-height:100svh)

Dit stond eerst vast op AAN, is op 20-8 vast op UIT gezet omdat een kort
bericht een halve pagina leegte gaf onder "Replies and reactions", en hoort
dus eigenlijk bij de schrijver: lange stukken lezen prettiger in de stroom,
korte losse berichten juist als eigen scherm.

De keuze staat in Beheer -> Instellingen bij de andere feed-keuzes, en gaat
via een attribuut op body zodat CSS het werk doet.

OVER DE SQL, want daar ging het deze week twee keer mis: deze wijziging
voegt een kolom toe aan dezelfde UPDATE waar ik eerder een kolom zonder
waarde in zette, waarna show_search de waarde van zijn buurman kreeg en
alles erna een plek opschoof. De tests gaan daarom door de ECHTE route en
toetsen expliciet de buurkolommen. Controleproef gedaan: laat je de waarde
weg, dan vallen 6 van de 8 tests om.

style.css naar v83, MOD_V naar 21.

Suite 1172/1172.

Co-Authored-By: Claude Opus 5 <noreply@…>

  • Property mode set to 100644
File size: 22.2 KB
Line 
1<div class="container admin-site-edit-page">
2 <p><a href="/admin" class="btn">&larr; <%= t('asite.back_admin') %></a></p>
3 <h1><%= isNew ? t('asite.title_new') : t('asite.title_edit') + ': ' + site.title %></h1>
4
5 <% if (typeof success !== 'undefined' && success) { %><div class="audio-flash audio-flash--ok"><%= success %></div><% } %>
6 <% if (error) { %><div class="audio-flash audio-flash--err"><%= error %></div><% } %>
7
8 <form method="post" action="<%= isNew ? '/admin/sites/create' : '/admin/sites/' + site.slug + '/save' %>" class="site-form">
9
10 <fieldset>
11 <legend><%= t('asite.identity') %></legend>
12 <label>
13 <span><%= t('asite.slug') %> <% if (!isNew) { %><em><%= t('asite.slug_fixed') %></em><% } %></span>
14 <span class="slug-url">
15 <span class="slug-url-host" id="slug-host"
16 data-prefix="/">website.com/</span><input
17 type="text" name="slug" id="slug-input" class="slug-url-input" value="<%= site.slug %>" required <% if (!isNew) { %>readonly<% } %>
18 pattern="[a-z0-9_-]{2,40}" placeholder="<%= t('asite.slug_placeholder') %>"
19 autocapitalize="none" autocorrect="off" spellcheck="false">
20 </span>
21 </label>
22 <label>
23 <span><%= t('asite.field_title') %> <small class="form-hint-inline"><%= t('asite.field_title_hint') %></small></span>
24 <input type="text" name="title" value="<%= site.title || '' %>" required maxlength="200">
25 </label>
26 <label>
27 <span><%= t('asite.tagline') %> <small class="form-hint-inline"><%= t('asite.tagline_hint') %></small></span>
28 <input type="text" name="tagline" value="<%= site.tagline || '' %>" maxlength="200">
29 </label>
30 <label>
31 <span><%= t('asite.bio') %> <small class="form-hint-inline"><%= t('asite.bio_hint') %></small></span>
32 <textarea name="description" rows="3" maxlength="500"><%= site.description || '' %></textarea>
33 </label>
34 <label>
35 <span><%= t('asite.profile_photo') %></span>
36 <div class="photo-picker" id="photo-picker">
37 <div class="photo-thumb" id="photo-thumb" <%= site.profile_photo ? '' : 'data-empty' %>>
38 <img id="photo-preview" src="<%= avatar(site.profile_photo || '', 128) %>" alt="" <%= site.profile_photo ? '' : 'hidden' %>>
39 <span class="photo-empty" aria-hidden="true">
40 <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>
41 </span>
42 </div>
43 <div class="photo-controls">
44 <input type="text" name="profile_photo" id="photo-url" value="<%= site.profile_photo || '' %>" placeholder="<%= t('asite.photo_url_placeholder') %>">
45 <div class="photo-actions">
46 <button type="button" class="btn" id="photo-upload-trigger"><%= t('asite.photo_upload') %></button>
47 <button type="button" class="btn" id="photo-clear" <%= site.profile_photo ? '' : 'hidden' %>><%= t('asite.photo_clear') %></button>
48 <small id="photo-status" class="form-hint photo-status"></small>
49 </div>
50 <input type="file" id="photo-upload-field" accept="image/jpeg,image/png,image/webp,image/gif" hidden>
51 </div>
52 </div>
53 </label>
54 <label>
55 <span><%= t('asite.language') %></span>
56 <input type="text" name="language" value="<%= site.language || 'nl' %>" maxlength="8">
57 </label>
58 <label class="cb">
59 <input type="checkbox" name="profile_enabled" value="1" <%= site.profile_enabled ? 'checked' : '' %>>
60 <span><%= t('asite.profile_enabled') %></span>
61 </label>
62 </fieldset>
63
64 <fieldset>
65 <legend><%= t('asite.appearance') %></legend>
66
67 <%# ── Curated accent picker ───────────────────────────────────────
68 Was a free-form <input type="color">; now a fixed set of 8 hand-
69 picked colors that work in both light and dark themes. The hex is
70 still what's stored in the DB — we just constrain WHICH hex. %>
71 <fieldset class="accent-grid">
72 <legend><%= t('asite.accent_color') %></legend>
73 <% const _curAccent = (site.accent || '#c2410c').toLowerCase(); %>
74 <% accents.forEach(function(a) { %>
75 <label class="accent-swatch" title="<%= a.name %>">
76 <input type="radio" name="accent" value="<%= a.color %>" <%= a.color.toLowerCase() === _curAccent ? 'checked' : '' %>>
77 <span class="accent-dot" style="background: <%= a.color %>;" aria-hidden="true"></span>
78 <span class="accent-swatch-name"><%= a.name %></span>
79 </label>
80 <% }); %>
81 </fieldset>
82
83 <%# ── Default theme for new visitors ───────────────────────────
84 'auto' (empty value) lets the browser/OS decide via prefers-color-scheme.
85 'light' / 'dark' force the site default for visitors who haven't picked
86 their own preference yet. Logged-in users with users.theme set, and
87 visitors with a localStorage override, still win over this default. %>
88 <fieldset class="theme-default">
89 <legend><%= t('asite.theme_default') %></legend>
90 <% const td = site.theme_override || ''; %>
91 <label class="cb">
92 <input type="radio" name="theme_override" value="" <%= td === '' ? 'checked' : '' %>>
93 <span><%= t('asite.theme_auto') %></span>
94 </label>
95 <label class="cb">
96 <input type="radio" name="theme_override" value="light" <%= td === 'light' ? 'checked' : '' %>>
97 <span><%= t('asite.theme_light') %></span>
98 </label>
99 <label class="cb">
100 <input type="radio" name="theme_override" value="dark" <%= td === 'dark' ? 'checked' : '' %>>
101 <span><%= t('asite.theme_dark') %></span>
102 </label>
103 </fieldset>
104
105 <fieldset class="palette-grid">
106 <legend><%= t('asite.palette') %></legend>
107 <% palettes.forEach(function(p) { %>
108 <label class="palette-swatch">
109 <input type="radio" name="palette" value="<%= p.key %>" <%= (site.palette || 'klonkt') === p.key ? 'checked' : '' %>>
110 <span class="palette-preview" aria-hidden="true">
111 <span class="pp-half pp-light" style="background: <%= p.light.paper %>; color: <%= p.light.ink %>;">
112 <span class="pp-letter">Aa</span>
113 <span class="pp-accent" style="background: <%= p.light.accent %>;"></span>
114 </span>
115 <span class="pp-half pp-dark" style="background: <%= p.dark.paper %>; color: <%= p.dark.ink %>;">
116 <span class="pp-letter">Aa</span>
117 <span class="pp-accent" style="background: <%= p.dark.accent %>;"></span>
118 </span>
119 </span>
120 <span class="palette-swatch-name"><%= p.name %></span>
121 </label>
122 <% }); %>
123 </fieldset>
124 </fieldset>
125
126 <%# Live preview: selecting an accent / theme / palette re-themes this page
127 instantly (reverts on reload; persists on save). %>
128 <%# Het script van deze pagina staat in assets/js/mod/admin-site-edit.js (shaer-bqr). %>
129
130 <fieldset>
131 <legend><%= t('asite.behavior') %></legend>
132 <label class="cb">
133 <input type="checkbox" name="is_public" value="1" <%= site.is_public ? 'checked' : '' %>>
134 <span><%= t('asite.is_public') %></span>
135 </label>
136 <label class="cb">
137 <input type="checkbox" name="robots_index" value="1" <%= site.robots_index ? 'checked' : '' %>>
138 <span><%= t('asite.robots_index') %></span>
139 </label>
140 <% if (typeof audioEnabled === 'undefined' || audioEnabled) { %>
141 <label class="cb">
142 <input type="checkbox" name="enable_audio_player" value="1" <%= site.enable_audio_player ? 'checked' : '' %>>
143 <span><%= t('asite.enable_audio') %></span>
144 </label>
145 <% } %>
146 <label class="cb">
147 <input type="checkbox" name="approve_followers" value="1" <%= site.approve_followers ? 'checked' : '' %>>
148 <span><%= t('asite.approve_followers') %></span>
149 </label>
150 </fieldset>
151
152 <fieldset class="profile-links-fieldset">
153 <legend><%= t('asite.links') %></legend>
154 <p class="form-hint"><%= t('asite.links_hint') %></p>
155
156 <div id="profile-links-rows">
157 <% (parsedLinks || []).forEach(function(l) { %>
158 <div class="profile-link-row">
159 <select name="profile_link_platform[]">
160 <% platforms.forEach(function(p) { %>
161 <option value="<%= p.key %>" <%= l.platform === p.key ? 'selected' : '' %>><%= p.label %></option>
162 <% }); %>
163 </select>
164 <input type="text" name="profile_link_url[]" value="<%= l.url %>" placeholder="https://…" required>
165 <button type="button" class="btn btn-danger pl-remove">×</button>
166 </div>
167 <% }); %>
168 </div>
169
170 <template id="profile-link-template">
171 <div class="profile-link-row">
172 <select name="profile_link_platform[]">
173 <% platforms.forEach(function(p) { %>
174 <option value="<%= p.key %>"><%= p.label %></option>
175 <% }); %>
176 </select>
177 <input type="text" name="profile_link_url[]" placeholder="https://…" required>
178 <button type="button" class="btn btn-danger pl-remove">×</button>
179 </div>
180 </template>
181
182 <button type="button" id="profile-link-add" class="btn"><%= t('asite.link_add') %></button>
183 </fieldset>
184
185 <%# Aliassen en verhuizen staan sinds 14-8 op /admin/migrate, bij elkaar met
186 exporteren, importeren en ophalen (Robin: alle migratie-opties op de
187 migrate-pagina). Ze hoorden hier ook niet thuis: dit scherm gaat over hoe
188 je site eruitziet, en een verhuizing is geen uiterlijk. Alleen de
189 wegwijzer blijft, want wie ze hier zocht moet ze kunnen vinden. %>
190 <fieldset>
191 <legend><%= t('asite.aliases') %></legend>
192 <p class="form-hint"><%= t('asite.moved_to_migrate') %></p>
193 <p><a href="/admin/migrate" class="btn"><%= t('admin.b_migrate') %></a></p>
194 </fieldset>
195
196 <fieldset>
197 <legend><%= t('asite.feed_view') %></legend>
198 <%# Twee vragen, en ze zijn niet hetzelfde: WELKE tweede weergave je site
199 aanbiedt naast Grid, en waarin hij opent. %>
200 <label>
201 <span><%= t('asite.feed_alt') %></span>
202 <select name="feed_alt_view">
203 <% var _a = ['timeline','auto'].indexOf(site.feed_alt_view) >= 0 ? site.feed_alt_view : 'reader'; %>
204 <option value="reader" <%= _a === 'reader' ? 'selected' : '' %>><%= t('asite.feed_alt_reader') %></option>
205 <option value="timeline" <%= _a === 'timeline' ? 'selected' : '' %>><%= t('asite.feed_alt_timeline') %></option>
206 <option value="auto" <%= _a === 'auto' ? 'selected' : '' %>><%= t('asite.feed_alt_auto') %></option>
207 </select>
208 </label>
209 <label>
210 <span><%= t('asite.feed_default') %></span>
211 <select name="feed_view_default">
212 <option value="reader" <%= site.feed_view_default !== 'grid' ? 'selected' : '' %>><%= t('asite.feed_alt_' + _a) %></option>
213 <option value="grid" <%= site.feed_view_default === 'grid' ? 'selected' : '' %>><%= t('asite.feed_grid') %></option>
214 </select>
215 </label>
216 <label class="cb">
217 <input type="checkbox" name="feed_view_switch" value="1" <%= site.feed_view_switch ? 'checked' : '' %>>
218 <span><%= t('asite.feed_switch') %></span>
219 </label>
220 <%# Alleen van toepassing op Lezen: geeft elk bericht daar een eigen scherm. %>
221 <label class="cb">
222 <input type="checkbox" name="reader_full_page" value="1" <%= site.reader_full_page ? 'checked' : '' %>>
223 <span><%= t('asite.reader_full_page') %></span>
224 </label>
225 <label class="cb">
226 <input type="checkbox" name="show_search" value="1" <%= site.show_search ? 'checked' : '' %>>
227 <span><%= t('asite.show_search') %></span>
228 </label>
229 <label class="cb">
230 <input type="checkbox" name="show_archive_link" value="1" <%= site.show_archive_link ? 'checked' : '' %>>
231 <span><%= t('asite.show_archive') %></span>
232 </label>
233 </fieldset>
234
235 <fieldset class="seo-pointer">
236 <legend><%= t('asite.seo') %></legend>
237 <p><%= t('asite.seo_pointer') %> <a href="/admin/seo"><%= t('asite.seo_link') %></a>.</p>
238 </fieldset>
239
240 <fieldset>
241 <legend><%= t('asite.custom_legend') %> <em><%= t('asite.optional') %></em></legend>
242 <label>
243 <span><%= t('asite.custom_css') %></span>
244 <textarea name="custom_css" rows="3" placeholder=".foo { color: red; }"><%= site.custom_css || '' %></textarea>
245 </label>
246 <label>
247 <span><%= t('asite.custom_head') %></span>
248 <textarea name="custom_head_html" rows="3" placeholder="<meta name=&quot;...&quot;>"><%= site.custom_head_html || '' %></textarea>
249 </label>
250 <label>
251 <span><%= t('asite.custom_foot') %></span>
252 <textarea name="custom_foot_html" rows="3"><%= site.custom_foot_html || '' %></textarea>
253 </label>
254 </fieldset>
255
256 <button type="submit" class="btn btn-primary"><%= isNew ? t('asite.submit_create') : t('asite.submit_save') %></button>
257 </form>
258
259</div>
260
261
262
263<style>
264.admin-site-edit-page { max-width: 760px; margin: 3rem auto; padding: 0 1rem; }
265.admin-site-edit-page h1 { font-family: var(--font-display, serif); font-size: 1.8rem; margin: 0 0 1.5rem; }
266
267.site-form { display: flex; flex-direction: column; gap: 1.5rem; min-width: 0; }
268/* Mobile: a <fieldset> has a browser-default min-inline-size:min-content and
269 therefore does NOT shrink → the entire form became wider than the screen. min-width:0
270 forces it to shrink; form fields get max-width:100% + border-box so they
271 never overflow their fieldset. */
272.site-form fieldset { min-width: 0; }
273.site-form input, .site-form select, .site-form textarea { min-width: 0; max-width: 100%; box-sizing: border-box; }
274.site-form fieldset {
275 border: 1px solid var(--rule);
276 border-radius: 8px;
277 padding: 1rem 1.25rem;
278 background: var(--paper-2);
279 display: flex;
280 flex-direction: column;
281 gap: 0.75rem;
282}
283.site-form fieldset.palette-grid {
284 display: grid;
285 grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
286 background: var(--paper);
287 margin-top: 0.5rem;
288}
289/* Theme default radios — horizontal, sits between accent + palette */
290.site-form fieldset.theme-default {
291 display: flex; flex-direction: row; flex-wrap: wrap; gap: 1rem;
292 background: var(--paper);
293 margin-top: 0.5rem;
294}
295.site-form fieldset.theme-default label.cb { font-size: 0.9rem; color: var(--ink); }
296.site-form fieldset legend { font-family: var(--font-display, serif); font-size: 1rem; padding: 0 0.4rem; }
297.site-form label { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.85rem; color: var(--ink-muted, var(--ink-soft)); }
298.site-form label.cb { flex-direction: row; align-items: center; gap: 0.5rem; }
299.site-form input[type="text"], .site-form input[type="color"], .site-form textarea {
300 padding: 0.55rem 0.85rem;
301 border: 1px solid var(--rule);
302 border-radius: 5px;
303 background: var(--paper);
304 color: var(--ink);
305 font-family: inherit;
306 font-size: 0.95rem;
307}
308.site-form input[type="color"] { padding: 0.2rem; height: 38px; }
309.site-form textarea { resize: vertical; min-height: 60px; font-family: var(--font-mono, monospace); font-size: 0.85rem; }
310.site-form input[readonly] { opacity: 0.6; cursor: not-allowed; background: var(--paper-2); }
311
312/* Slug as URL field: dimmed host prefix + the slug itself in the accent colour. */
313.slug-url {
314 display: flex; align-items: stretch;
315 border: 1px solid var(--rule); border-radius: 5px;
316 background: var(--paper); overflow: hidden;
317 transition: border-color 120ms;
318}
319.slug-url:focus-within { border-color: var(--accent); }
320.slug-url-host {
321 display: inline-flex; align-items: center;
322 padding-left: 0.85rem;
323 color: var(--ink-muted, var(--ink-soft));
324 white-space: nowrap; user-select: none;
325 font-size: 0.95rem;
326}
327.site-form .slug-url-input {
328 flex: 1 1 auto; min-width: 0;
329 border: none !important; border-radius: 0 !important;
330 background: transparent !important;
331 color: var(--accent) !important; font-weight: 700;
332 padding: 0.55rem 0.85rem 0.55rem 0.1rem;
333}
334.site-form .slug-url-input:focus { outline: none; }
335.site-form .slug-url-input[readonly] {
336 opacity: 1; cursor: default; background: transparent !important;
337}
338
339/* Selects: same look as the inputs, with a custom chevron instead of the bare
340 native arrow. The open option list is still rendered by the browser. */
341.site-form select {
342 appearance: none;
343 -webkit-appearance: none;
344 padding: 0.55rem 2.2rem 0.55rem 0.85rem;
345 border: 1px solid var(--rule);
346 border-radius: 5px;
347 background-color: var(--paper);
348 color: var(--ink);
349 font-family: inherit;
350 font-size: 0.95rem;
351 cursor: pointer;
352 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
353 background-repeat: no-repeat;
354 background-position: right 0.7rem center;
355 transition: border-color 0.15s ease, box-shadow 0.15s ease;
356}
357.site-form select:hover { border-color: var(--ink-soft, #888); }
358.site-form select:focus,
359.site-form input[type="text"]:focus,
360.site-form textarea:focus {
361 outline: none;
362 border-color: var(--accent, #c2410c);
363 box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent, #c2410c) 22%, transparent);
364}
365
366/* Reuse the palette-swatch styles from account.ejs */
367.palette-swatch {
368 display: flex; flex-direction: column; gap: 0.4rem;
369 padding: 0.5rem;
370 border: 1px solid var(--rule); border-radius: 6px; background: var(--paper);
371 cursor: pointer; font-size: 0.85rem; transition: border-color 120ms;
372}
373.palette-swatch:hover { border-color: var(--accent); }
374.palette-swatch input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
375.palette-swatch:has(input[type="radio"]:checked) { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent); }
376.palette-preview {
377 display: grid; grid-template-columns: 1fr 1fr;
378 width: 100%; height: 44px; border-radius: 4px; overflow: hidden;
379 border: 1px solid var(--rule);
380}
381.pp-half {
382 position: relative;
383 display: flex; align-items: center; justify-content: center;
384 font-family: var(--font-display, serif); font-weight: 600; font-size: 1rem;
385}
386.pp-letter { line-height: 1; }
387.pp-accent {
388 position: absolute; bottom: 4px; right: 4px;
389 width: 9px; height: 9px; border-radius: 50%;
390 border: 1px solid rgba(0,0,0,0.12);
391}
392.palette-swatch-name { font-weight: 500; color: var(--ink); text-align: center; }
393
394/* Accent picker: row of small colored swatches */
395.site-form fieldset.accent-grid {
396 display: grid;
397 grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
398 gap: 0.5rem;
399 background: var(--paper);
400 margin-top: 0.5rem;
401}
402.accent-swatch {
403 display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
404 padding: 0.55rem 0.4rem;
405 border: 1px solid var(--rule); border-radius: 6px; background: var(--paper);
406 cursor: pointer; font-size: 0.78rem;
407 transition: border-color 120ms, box-shadow 120ms;
408}
409.accent-swatch:hover { border-color: var(--accent); }
410.accent-swatch input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
411.accent-swatch:has(input[type="radio"]:checked) {
412 border-color: var(--accent);
413 box-shadow: 0 0 0 2px var(--accent);
414}
415.accent-dot {
416 width: 28px; height: 28px; border-radius: 50%;
417 border: 1px solid rgba(0,0,0,0.1);
418 box-shadow: inset 0 -2px 4px rgba(0,0,0,0.12);
419}
420.accent-swatch-name { color: var(--ink); text-align: center; font-weight: 500; }
421
422.audio-flash { padding: 0.75rem 1rem; border-radius: 6px; margin-bottom: 1rem; font-size: 0.9rem; }
423.audio-flash--ok { background: rgba(40, 160, 90, 0.15); color: #2a9d5e; border: 1px solid rgba(40, 160, 90, 0.3); }
424.audio-flash--err { background: rgba(200, 60, 60, 0.15); color: #c33; border: 1px solid rgba(200, 60, 60, 0.3); }
425
426.form-hint { font-size: 0.8rem; color: var(--ink-muted, var(--ink-soft)); margin: 0; }
427.form-hint-inline { font-size: 0.78rem; color: var(--ink-muted, var(--ink-soft)); font-weight: 400; margin-left: .25rem; }
428
429/* P63 — Profile photo picker
430 Mobile-first: thumb stacks above input/buttons. ≥520px the thumb floats
431 to the left and the controls fill the remaining width. */
432.photo-picker {
433 display: flex;
434 flex-direction: column;
435 gap: .65rem;
436 align-items: stretch;
437}
438.photo-thumb {
439 position: relative;
440 width: 88px; height: 88px;
441 border-radius: 50%;
442 border: 1px solid var(--rule);
443 background: var(--paper-2);
444 overflow: hidden;
445 flex-shrink: 0;
446 display: flex; align-items: center; justify-content: center;
447}
448.photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
449.photo-thumb .photo-empty {
450 display: flex; color: var(--ink-muted, var(--ink-soft)); opacity: .55;
451}
452.photo-thumb .photo-empty svg { width: 36px; height: 36px; }
453.photo-thumb:not([data-empty]) .photo-empty { display: none; }
454.photo-thumb[data-empty] img { display: none; }
455
456.photo-controls {
457 display: flex;
458 flex-direction: column;
459 gap: .5rem;
460 flex: 1;
461 min-width: 0;
462}
463.photo-controls input[type="text"] { width: 100%; }
464.photo-actions {
465 display: flex; align-items: center; flex-wrap: wrap;
466 gap: .4rem;
467}
468.photo-actions .btn { padding: .45rem .75rem; font-size: .85rem; }
469.photo-status { margin-left: .25rem; }
470.photo-status.is-error { color: #c2410c; }
471
472@media (min-width: 520px) {
473 .photo-picker { flex-direction: row; align-items: flex-start; gap: 1rem; }
474 .photo-controls { gap: .55rem; }
475}
476/* Mobile-first: platform selector on its own line (full width), URL input + remove
477 button below. Prevents horizontal overflow on phones (fixed 160px column +
478 non-shrinkable input together ~447px > screen width). */
479.profile-link-row {
480 display: grid; grid-template-columns: 1fr auto; gap: 0.5rem; margin-bottom: 0.5rem;
481}
482.profile-link-row select { padding: 0.45rem 0.6rem; grid-column: 1 / -1; }
483.profile-link-row input { min-width: 0; }
484@media (min-width: 520px) {
485 .profile-link-row { grid-template-columns: 160px 1fr auto; }
486 .profile-link-row select { grid-column: auto; }
487}
488.profile-links-fieldset details > label { margin-top: 0.4rem; }
489</style>
Note: See TracBrowser for help on using the repository browser.