Three field-reported bugs, all root-caused on the isolated test server:
1+2. FilePond's stylesheet never loaded — the filepond field registers it via
assets.addCss() during body render, too late for the theme's head-only
{{ assets.css() }}. Photo tiles rendered as giant unstyled boxes that
stacked and overlapped the rest of the form (Get Location/Weather, Submit),
making it unusable and looking like upload errors. Load filepond.min.css +
image-preview CSS in the head_assets block; hide the PQINA credit.
3. The success notice rendered at the top of a long, reset form (off-screen
after submitting from the bottom) and .notices was unstyled on the dark
theme. Style .notices; on load, scroll the confirmation into view and inject
a 'View your journal' link (to site.active_trip) + 'Post another' CTA.
Verified in a browser: 3 photos render compact without overlap; post-submit
shows the confirmation + working view link.
235 lines
7.8 KiB
CSS
235 lines
7.8 KiB
CSS
/*
|
|
* /post form bundle CSS. U3 scope: make the EasyMDE editor usable without the
|
|
* FontAwesome dependency (toolbar glyphs supplied here). Field Notes theming,
|
|
* mobile layout, and the "More options" disclosure land in U5.
|
|
*/
|
|
|
|
/* EasyMDE toolbar glyphs — replace the FontAwesome icons EasyMDE expects. */
|
|
.editor-toolbar .mde-btn::before {
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-family: inherit;
|
|
}
|
|
.editor-toolbar .mde-bold::before { content: 'B'; font-weight: 700; }
|
|
.editor-toolbar .mde-italic::before { content: 'I'; font-style: italic; }
|
|
.editor-toolbar .mde-ul::before { content: '\2022\2002\2014'; } /* • — */
|
|
.editor-toolbar .mde-link::before { content: '\1F517'; } /* 🔗 */
|
|
.editor-toolbar .mde-preview::before { content: '\1F441'; } /* 👁 */
|
|
|
|
.EasyMDEContainer .CodeMirror {
|
|
min-height: 180px;
|
|
}
|
|
|
|
/* ── Photo HEIC-conversion feedback (U4) ────────────────────
|
|
* FilePond renders the thumbnails/progress; these are the pre-FilePond
|
|
* "converting…" status line and the draft photos-reselect hint (U6).
|
|
*/
|
|
.photo-convert-status:empty { display: none; }
|
|
.photo-convert-status {
|
|
font-size: var(--text-sm);
|
|
margin-top: var(--space-2);
|
|
}
|
|
.photo-reauth-hint {
|
|
display: none;
|
|
font-size: var(--text-sm);
|
|
color: var(--color-ink-muted);
|
|
margin-top: var(--space-2);
|
|
}
|
|
.photo-reauth-hint.is-shown { display: block; }
|
|
|
|
/* ── Field Notes styling for the new controls (U5, R11/R12) ── */
|
|
|
|
/* Select fields (weather condition, transport mode) match the text inputs. */
|
|
.post-form-wrap select {
|
|
width: 100%;
|
|
font-family: var(--font-ui);
|
|
font-size: var(--text-base);
|
|
padding: 0.875rem 1rem;
|
|
min-height: 44px;
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius-md);
|
|
background: var(--color-canvas);
|
|
color: var(--color-ink);
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2390887E' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
|
|
background-repeat: no-repeat;
|
|
background-position: right 1rem center;
|
|
padding-right: 2.5rem;
|
|
}
|
|
.post-form-wrap select:focus {
|
|
outline: 2px solid var(--color-accent);
|
|
outline-offset: 1px;
|
|
border-color: var(--color-accent);
|
|
}
|
|
.post-form-wrap input[type="number"] {
|
|
width: 100%;
|
|
font-family: var(--font-ui);
|
|
font-size: var(--text-base);
|
|
padding: 0.875rem 1rem;
|
|
min-height: 44px;
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius-md);
|
|
background: var(--color-canvas);
|
|
color: var(--color-ink);
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
}
|
|
.post-form-wrap input[type="number"]:focus {
|
|
outline: 2px solid var(--color-accent);
|
|
outline-offset: 1px;
|
|
border-color: var(--color-accent);
|
|
}
|
|
|
|
/* "More options" disclosure */
|
|
.more-options {
|
|
margin-bottom: var(--space-5);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius-md);
|
|
background: var(--color-canvas);
|
|
}
|
|
.more-options__summary {
|
|
cursor: pointer;
|
|
padding: 0.875rem 1rem;
|
|
min-height: 44px;
|
|
display: flex;
|
|
align-items: center;
|
|
font-family: var(--font-ui);
|
|
font-size: var(--text-sm);
|
|
font-weight: 600;
|
|
color: var(--color-ink);
|
|
list-style: none;
|
|
user-select: none;
|
|
}
|
|
.more-options__summary::-webkit-details-marker { display: none; }
|
|
.more-options__summary::before {
|
|
content: '▸';
|
|
margin-right: var(--space-2);
|
|
color: var(--color-ink-muted);
|
|
transition: transform 0.15s;
|
|
}
|
|
.more-options[open] .more-options__summary::before { transform: rotate(90deg); }
|
|
.more-options[open] .more-options__summary { border-bottom: 1px solid var(--color-border); }
|
|
.more-options > .form-field { padding: 0 1rem; }
|
|
.more-options > .form-field:first-of-type { padding-top: var(--space-4); }
|
|
.more-options > .form-field:last-child { padding-bottom: var(--space-4); margin-bottom: 0; }
|
|
|
|
/* Button loading spinner (Get Location / Get Weather) */
|
|
.btn-action.is-loading { position: relative; color: transparent; pointer-events: none; }
|
|
.btn-action.is-loading::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 16px;
|
|
height: 16px;
|
|
margin: -8px 0 0 -8px;
|
|
border: 2px solid var(--color-ink-muted);
|
|
border-top-color: var(--color-accent);
|
|
border-radius: 50%;
|
|
animation: post-spin 0.7s linear infinite;
|
|
}
|
|
.btn-action[disabled] { opacity: 0.5; cursor: not-allowed; }
|
|
@keyframes post-spin { to { transform: rotate(360deg); } }
|
|
|
|
/* Grav renders form status as <div class="notices success|error green|red">.
|
|
The theme doesn't style .notices, so on the dark background it was nearly
|
|
invisible — style it prominently here. */
|
|
.post-form-wrap .notices {
|
|
padding: 1rem 1.1rem;
|
|
border-radius: var(--radius-md);
|
|
font-size: var(--text-base);
|
|
margin: 0 0 var(--space-5);
|
|
background: var(--color-canvas);
|
|
color: var(--color-ink);
|
|
border-left: 4px solid var(--color-accent);
|
|
}
|
|
.post-form-wrap .notices p { margin: 0; }
|
|
.post-form-wrap .notices.error,
|
|
.post-form-wrap .notices.red { border-left-color: var(--color-error); }
|
|
.post-form-wrap .notices.success,
|
|
.post-form-wrap .notices.green { border-left-color: var(--color-accent); }
|
|
|
|
/* Post-success confirmation CTA (injected by post-form.js). */
|
|
.post-success {
|
|
margin: 0 0 var(--space-5);
|
|
padding: 1.1rem;
|
|
border-radius: var(--radius-md);
|
|
background: var(--color-accent-light);
|
|
border: 1px solid var(--color-accent);
|
|
}
|
|
.post-success__title {
|
|
font-family: var(--font-ui);
|
|
font-size: var(--text-md);
|
|
font-weight: 600;
|
|
color: var(--color-ink);
|
|
margin: 0 0 var(--space-3);
|
|
}
|
|
.post-success__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
|
|
.post-success__view {
|
|
flex: 1;
|
|
min-width: 140px;
|
|
text-align: center;
|
|
padding: 0.8rem 1rem;
|
|
min-height: 44px;
|
|
border-radius: var(--radius-md);
|
|
background: var(--color-accent);
|
|
color: var(--color-accent-on);
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
}
|
|
.post-success__again {
|
|
flex: 1;
|
|
min-width: 140px;
|
|
text-align: center;
|
|
padding: 0.8rem 1rem;
|
|
min-height: 44px;
|
|
border-radius: var(--radius-md);
|
|
background: transparent;
|
|
color: var(--color-ink);
|
|
border: 1px solid var(--color-border);
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Hide FilePond's "Powered by PQINA" credit. */
|
|
.filepond--credits { display: none !important; }
|
|
|
|
/* ── EasyMDE — Field Notes dark theme (U5) ─────────────────── */
|
|
.EasyMDEContainer .CodeMirror {
|
|
background: var(--color-canvas);
|
|
color: var(--color-ink);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: 0 0 var(--radius-md) var(--radius-md);
|
|
font-family: var(--font-ui);
|
|
font-size: var(--text-base);
|
|
line-height: var(--leading-normal);
|
|
padding: var(--space-1);
|
|
}
|
|
.EasyMDEContainer .CodeMirror-cursor { border-color: var(--color-ink); }
|
|
.EasyMDEContainer .CodeMirror-selected { background: var(--color-accent-light) !important; }
|
|
.EasyMDEContainer .editor-toolbar {
|
|
background: var(--color-surface-raised);
|
|
border: 1px solid var(--color-border);
|
|
border-bottom: none;
|
|
border-radius: var(--radius-md) var(--radius-md) 0 0;
|
|
opacity: 1;
|
|
}
|
|
.EasyMDEContainer .editor-toolbar button {
|
|
color: var(--color-ink) !important;
|
|
min-width: 34px;
|
|
height: 34px;
|
|
}
|
|
.EasyMDEContainer .editor-toolbar button:hover,
|
|
.EasyMDEContainer .editor-toolbar button.active {
|
|
background: var(--color-accent-light);
|
|
border-color: var(--color-border);
|
|
}
|
|
.EasyMDEContainer .editor-toolbar i.separator { border-color: var(--color-border); }
|
|
.EasyMDEContainer .editor-preview,
|
|
.EasyMDEContainer .editor-preview-side {
|
|
background: var(--color-canvas);
|
|
color: var(--color-ink);
|
|
}
|
|
.EasyMDEContainer .editor-preview a { color: var(--color-accent); }
|