Tracker ordering fix + March–April fixture entries #1

Merged
m038 merged 34 commits from experimental-polar-steps into main 2026-06-18 22:41:55 +02:00
2 changed files with 10 additions and 5 deletions
Showing only changes of commit 682ba00bea - Show all commits
+1 -1
View File
@@ -88,7 +88,7 @@ form:
buttons: buttons:
- -
type: submit type: submit
value: Post Entry value: Post Daily
classes: btn-post classes: btn-post
process: process:
+9 -4
View File
@@ -546,26 +546,31 @@ body {
.post-form-wrap textarea { resize: vertical; min-height: 160px; line-height: var(--leading-normal); } .post-form-wrap textarea { resize: vertical; min-height: 160px; line-height: var(--leading-normal); }
/* Submit button */ /* Submit button — target by class directly so it works regardless of Grav's wrapper markup */
.btn-post,
.post-form-wrap .form-actions input[type="submit"], .post-form-wrap .form-actions input[type="submit"],
.post-form-wrap .form-actions .btn, .post-form-wrap .form-actions .btn,
.post-form-wrap .form-actions button[type="submit"] { .post-form-wrap .form-actions button[type="submit"] {
display: block; display: block;
width: 100%; width: 100%;
padding: 1rem; box-sizing: border-box;
min-height: 52px; padding: 1.1rem 1rem;
min-height: 56px;
background: var(--color-accent); background: var(--color-accent);
color: var(--color-accent-on); color: var(--color-accent-on);
border: none; border: none;
border-radius: var(--radius-md); border-radius: var(--radius-md);
font-family: var(--font-ui); font-family: var(--font-ui);
font-size: var(--text-base); font-size: var(--text-md);
font-weight: 600; font-weight: 600;
cursor: pointer; cursor: pointer;
transition: background 0.15s; transition: background 0.15s;
margin-top: var(--space-6); margin-top: var(--space-6);
text-align: center;
-webkit-appearance: none;
} }
.btn-post:hover,
.post-form-wrap .form-actions input[type="submit"]:hover, .post-form-wrap .form-actions input[type="submit"]:hover,
.post-form-wrap .form-actions button[type="submit"]:hover { background: var(--color-accent-hover); } .post-form-wrap .form-actions button[type="submit"]:hover { background: var(--color-accent-hover); }