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: column/row headers go transparent when cell is selected' (#353) from fix/sticky-header-transparent into main

scott 970d2e72 faad663c

+3 -2
+3 -2
src/css/app.css
··· 3616 3616 } 3617 3617 3618 3618 .sheet-grid th.col-selected { 3619 - background: var(--color-range-header-bg); 3619 + /* Layer semi-transparent teal onto solid surface so sticky headers don't go transparent */ 3620 + background: linear-gradient(var(--color-range-header-bg), var(--color-range-header-bg)), var(--color-surface); 3620 3621 color: var(--color-teal); 3621 3622 } 3622 3623 3623 3624 .sheet-grid th.row-selected { 3624 - background: var(--color-range-header-bg); 3625 + background: linear-gradient(var(--color-range-header-bg), var(--color-range-header-bg)), var(--color-surface); 3625 3626 color: var(--color-teal); 3626 3627 } 3627 3628