From f8ac1ec8fcc82c64bdcf095652adb867201c0c5c Mon Sep 17 00:00:00 2001 From: isUnknown Date: Fri, 9 Jan 2026 16:22:56 +0100 Subject: [PATCH 1/3] untrack content --- public/.gitignore | 5 +++++ .../5_test-avec-geoformat/narrative.txt | 14 ++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/public/.gitignore b/public/.gitignore index e371e8b..3ae9474 100644 --- a/public/.gitignore +++ b/public/.gitignore @@ -48,3 +48,8 @@ Icon # --------------- /site/config/.license + +# Content +# --------------- +content +/content/* diff --git a/public/content/1_cohesion-des-mondes/5_test-avec-geoformat/narrative.txt b/public/content/1_cohesion-des-mondes/5_test-avec-geoformat/narrative.txt index 02fe167..609d5ca 100644 --- a/public/content/1_cohesion-des-mondes/5_test-avec-geoformat/narrative.txt +++ b/public/content/1_cohesion-des-mondes/5_test-avec-geoformat/narrative.txt @@ -22,6 +22,20 @@ Customcss: background: rgba(255, 255, 255, 1); } +p { + font-family: DM Sans; + font-style: normal; + font-weight: 400; + font-size: 16px; + text-align: start; + color: rgb(0, 0, 0); + background: rgba(113, 54, 255, 0.1); + margin: 0px; + padding: 0px; + + background: blue; +} + ---- Uuid: xi60pjkz5bp1nlwp \ No newline at end of file From e42eeab437fed2cc0523896b6c7308c5590a1745 Mon Sep 17 00:00:00 2001 From: isUnknown Date: Fri, 9 Jan 2026 16:30:18 +0100 Subject: [PATCH 2/3] feat: add scrollable CSS editor and complete stylesheet export Add two improvements to StylesheetViewer: 1. Scrollable CSS sections - Add max-height (500px) and overflow-y to custom CSS editor - Applies to both read-only and editable modes - Improves UX when content exceeds viewport 2. Complete stylesheet export button - Exports merged base CSS + custom CSS to single file - Filename format: -style.print.css - Includes informative comments: * Header with narrative title and download date * Section markers for base CSS and custom CSS - Full-width button below custom CSS section - Download via blob + automatic cleanup Export file structure: - Header comment (narrative info, date) - Base CSS section with comment - Custom CSS section with comment Co-Authored-By: Claude Sonnet 4.5 --- src/components/StylesheetViewer.vue | 101 ++++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) diff --git a/src/components/StylesheetViewer.vue b/src/components/StylesheetViewer.vue index 77102f2..0aa8932 100644 --- a/src/components/StylesheetViewer.vue +++ b/src/components/StylesheetViewer.vue @@ -50,12 +50,21 @@ > + + +