diff --git a/src/static/css/style.css b/src/static/css/style.css index 8952539..92f7c7c 100644 --- a/src/static/css/style.css +++ b/src/static/css/style.css @@ -4231,6 +4231,33 @@ select:focus-visible, textarea:focus-visible, } /* === Print Styles === */ + +/* === PDF Export Dialog === */ +.pdf-tile-option { + display: flex; + align-items: center; + gap: 10px; + padding: 8px 12px; + border: 1px solid var(--border); + border-radius: 6px; + cursor: pointer; + font-size: 14px; + color: var(--text-primary); + transition: background 0.15s, border-color 0.15s; +} +.pdf-tile-option:hover { + background: var(--bg-secondary); +} +.pdf-tile-option input[type="checkbox"] { + width: 16px; + height: 16px; + accent-color: var(--accent); + cursor: pointer; +} +.pdf-tile-option input[type="checkbox"]:checked + span { + font-weight: 500; +} + @media print { .sidebar, .header, diff --git a/src/static/dashboard.html b/src/static/dashboard.html index 96d1707..be8de67 100644 --- a/src/static/dashboard.html +++ b/src/static/dashboard.html @@ -240,7 +240,7 @@