Full document, spreadsheet, slideshow, and diagram tooling
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request 'fix(sheets): hide empty pivot and database-view sections' (#357) from fix/sheets-empty-sections into main

scott 8c636a82 0b48ed36

+8 -1
+5
CHANGELOG.md
··· 7 7 8 8 ## [Unreleased] 9 9 10 + ## [0.30.3] — 2026-04-10 11 + 12 + ### Fixed 13 + - Sheets: empty `.pivot-section` and `.database-view-section` no longer render a padded empty strip between the grid and status bar — match the existing `.charts-section:empty { display: none }` pattern (#603) 14 + 10 15 ## [0.30.2] — 2026-04-10 11 16 12 17 ### Fixed
+1 -1
package.json
··· 1 1 { 2 2 "name": "tools", 3 - "version": "0.30.2", 3 + "version": "0.30.3", 4 4 "private": true, 5 5 "type": "module", 6 6 "main": "electron/main.js",
+2
src/css/app.css
··· 2648 2648 2649 2649 /* --- Pivot Table Styles --- */ 2650 2650 .pivot-section { padding: var(--space-sm) var(--space-md); } 2651 + .pivot-section:empty { display: none; } 2651 2652 .pivot-container { 2652 2653 position: relative; 2653 2654 border: 1px solid var(--color-border); ··· 2683 2684 2684 2685 /* --- Database View Styles --- */ 2685 2686 .database-view-section { padding: var(--space-sm) var(--space-md); } 2687 + .database-view-section:empty { display: none; } 2686 2688 .db-view-toolbar { 2687 2689 display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-md); 2688 2690 padding: var(--space-xs) var(--space-sm);