Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "2026.es.pycon.org",
"version": "1.17.1",
"version": "1.17.2",
"description": "",
"main": "index.js",
"scripts": {
Expand All @@ -19,10 +19,10 @@
"@astrojs/sitemap": "3.7.3",
"@fontsource-variable/jetbrains-mono": "5.2.8",
"@fontsource-variable/outfit": "5.2.8",
"@lucide/astro": "1.23.0",
"@lucide/astro": "1.24.0",
"@tailwindcss/vite": "4.3.2",
"animejs": "4.5.0",
"astro": "7.0.6",
"astro": "7.0.7",
"tailwindcss": "4.3.2"
},
"devDependencies": {
Expand All @@ -31,7 +31,7 @@
"@commitlint/config-conventional": "21.2.0",
"husky": "9.1.7",
"lint-staged": "17.0.8",
"prettier": "3.9.4",
"prettier": "3.9.5",
"prettier-plugin-astro": "0.14.1",
"typescript": "6.0.3"
},
Expand Down
93 changes: 31 additions & 62 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/ProgramaPage.astro
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const menuT = menuTexts[lang as keyof typeof menuTexts]
event-url="https://pretalx.com/pycones-2026/"
locale={t.locale}
format="grid"
style="--pretalx-clr-primary: #03004b"></pretalx-schedule>
style="--pretalx-clr-primary: #03004b; color-scheme: light"></pretalx-schedule>

<noscript>
<div class="pretalx-widget">
Expand Down
23 changes: 0 additions & 23 deletions src/pages/[lang]/programa.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,4 @@ const t = programaTexts[(lang || 'es') as keyof typeof programaTexts]
<ProgramaPage lang={lang || 'es'} />
</div>
<script is:inline src="https://pretalx.com/pycones-2026/widgets/schedule.js"></script>
<script is:inline>
function injectPretalxDialogStyles() {
const schedule = document.querySelector('pretalx-schedule')
if (!schedule?.shadowRoot) return
if (schedule.shadowRoot.querySelector('#pycones-dialog-fix')) return
const style = document.createElement('style')
style.id = 'pycones-dialog-fix'
style.textContent = `
#filter-bottom-sheet-dialog,
#filter-bottom-sheet-dialog .dialog-inner {
background: #fff !important;
color: #0d0f10 !important;
}
`
schedule.shadowRoot.appendChild(style)
}
customElements.whenDefined('pretalx-schedule').then(injectPretalxDialogStyles)
new MutationObserver(injectPretalxDialogStyles).observe(document.body, {
childList: true,
subtree: true,
})
document.addEventListener('astro:page-load', injectPretalxDialogStyles)
</script>
</Layout>
Loading