dev day #100 - WE ARE FUCKING DONE, hotfixes incoming but we did it in 100 days, lets fucking go guys, anyone reading this...i love you

This commit is contained in:
Tomas Dvorak
2025-11-22 21:30:10 +01:00
parent f5b6f83974
commit aa036b6550
47 changed files with 3607 additions and 2177 deletions
+30
View File
@@ -298,6 +298,36 @@
text-align: right;
}
/* --- Bullet/Number Fallbacks (robust visibility) --- */
/* Make sure the UI span exists visually and inherits color */
.ql-editor li > .ql-ui {
display: inline-block;
color: inherit;
}
/* Fallback default bullet if theme rules are missing */
.ql-editor li[data-list="bullet"] > .ql-ui::before {
content: '\2022';
}
/* Ordered list fallback using CSS counters (aligns with Quill v2 behavior) */
.ql-editor {
counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol { counter-reset: list-0; }
.ql-editor ol li { counter-increment: list-0; }
.ql-editor li[data-list="ordered"] > .ql-ui::before {
content: counters(list-0, '.') '. ';
}
/* Nested ordered lists (basic support for a few levels) */
.ql-editor ol ol { counter-reset: list-1; }
.ql-editor ol ol li { counter-increment: list-1; }
.ql-editor ol ol li[data-list="ordered"] > .ql-ui::before { content: counters(list-1, '.') '. '; }
.ql-editor ol ol ol { counter-reset: list-2; }
.ql-editor ol ol ol li { counter-increment: list-2; }
.ql-editor ol ol ol li[data-list="ordered"] > .ql-ui::before { content: counters(list-2, '.') '. '; }
.ql-editor blockquote {
border-left: 4px solid #3182ce;
padding-left: 16px;
+6
View File
@@ -39,6 +39,12 @@ body.style-pack-sparta .sponsor-tile:hover { transform: translateY(-8px) scale(1
box-shadow: var(--pack-shadow, none);
}
/* Frontpage CTA card styling */
.newsletter-cta .card {
background: white;
padding: 30px;
}
/* Header & Footer tweaks */
[data-element="header"][data-variant="fullwidth"] { box-shadow: none; }
[data-element="footer"] { border-top: 1px solid var(--card-border, rgba(0,0,0,0.08)); }