Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
.widgetChrome {
height: 100%;

/*
* Isolate the widget body from the surrounding layout. In a fixed-row
* grid the tile height comes from its row span, but a body taller than
* the tile lets its intrinsic size feed the grid item's `min-height: auto`
* and overflow the cell, adding scroll space below the grid. Layout
* containment severs that propagation so the body stays within the tile
* and scrolls internally. It contains layout only, not size or paint, so
* the masonry surface still measures the tile from its content and the
* tile elevation is not clipped.
*/
contain: layout;
}

/*
Expand Down
Loading