diff --git a/static/css/color-theme.css b/static/css/color-theme.css index 71bb243..a7e8b64 100644 --- a/static/css/color-theme.css +++ b/static/css/color-theme.css @@ -53,6 +53,10 @@ /* Sidebar (for non-clean theme) */ --sidebar-bg: #d1d4d2; + + /* Legacy CV content variables - theme-aware overrides */ + --text-dark: #1a1a1a; /* Dark text for light background */ + --text-gray: #333333; /* Secondary text for light background */ } /* ============================================================================== @@ -97,6 +101,10 @@ /* Sidebar (for non-clean theme) */ --sidebar-bg: #2a2a2a; + + /* Legacy CV content variables - theme-aware overrides */ + --text-dark: #e0e0e0; /* Light text for dark background */ + --text-gray: #d0d0d0; /* Secondary text for dark background */ } /* ============================================================================== @@ -142,6 +150,10 @@ /* Sidebar (for non-clean theme) */ --sidebar-bg: #2a2a2a; + + /* Legacy CV content variables - theme-aware overrides */ + --text-dark: #e0e0e0; /* Light text for dark background */ + --text-gray: #d0d0d0; /* Secondary text for dark background */ } } diff --git a/static/hyperscript/hover-sync._hs b/static/hyperscript/hover-sync._hs index 2410168..341581f 100644 --- a/static/hyperscript/hover-sync._hs +++ b/static/hyperscript/hover-sync._hs @@ -9,8 +9,8 @@ -- ============================================================================== def syncPdfHover(show) - -- Select all PDF buttons (action bar + menu) - set pdfButtons to <.pdf-btn, .menu-pdf-btn/> + -- Select all PDF buttons (left side + action bar + menu) + set pdfButtons to <.download-btn, .pdf-btn, .menu-pdf-btn/> if show is true for btn in pdfButtons @@ -28,8 +28,8 @@ end -- ============================================================================== def syncPrintHover(show) - -- Select all Print buttons (action bar + menu) - set printButtons to <.print-btn, .menu-print-btn/> + -- Select all Print buttons (left side + action bar + menu) + set printButtons to <.print-friendly-btn, .print-btn, .menu-print-btn/> if show is true for btn in printButtons diff --git a/tests/screenshots/pdf-modal-initial.png b/tests/screenshots/pdf-modal-initial.png deleted file mode 100644 index 6d2c748..0000000 Binary files a/tests/screenshots/pdf-modal-initial.png and /dev/null differ diff --git a/tests/screenshots/pdf-modal-long-selected.png b/tests/screenshots/pdf-modal-long-selected.png deleted file mode 100644 index cd5ad03..0000000 Binary files a/tests/screenshots/pdf-modal-long-selected.png and /dev/null differ diff --git a/tests/screenshots/pdf-modal-short-selected.png b/tests/screenshots/pdf-modal-short-selected.png deleted file mode 100644 index de7e288..0000000 Binary files a/tests/screenshots/pdf-modal-short-selected.png and /dev/null differ