Bin
2025-12-16 9e0b2ba2c317b1a86212f24cbae3195ad1f3dbfa
1
2
3
4
5
6
7
8
9
10
11
12
13
.aggregation-row {
  box-shadow: 0 2px 8px rgba(var(--color-neutral-shadow-raw) / 10%);
  z-index: 2;
 
  // @todo add a better comment
  // cells in first column overlap shadows for cells from previous row,
  // z-index doesn't work here, so we just reimplement shadow of aggregation row
  // in this exact cell as inset; also we had to expand and shift the shadow
  // to only drop from the top of the cell
  &+tr td:first-child {
    box-shadow: 0 10px 8px -8px rgba(var(--color-neutral-shadow-raw) / 10%) inset;
  }
}