Skip to content

Commit

Permalink
[Table] Fix missing selection border on left edge of grid (#1622)
Browse files Browse the repository at this point in the history
* Fix missing selection borders on LEFT edge

* Fix comment
  • Loading branch information
cmslewis committed Sep 26, 2017
1 parent 531ca34 commit 5626890
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/table/src/quadrants/_quadrants.scss
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,13 @@ $table-quadrant-scroll-container-overflow: 20px;
height: auto;
overflow-x: hidden;
}

// require at least 1px of width to show the left selection border if
// necessary. this will be needed when selection includes cells in the first
// column (#1444).
.bp-table-body-virtual-client {
min-width: 1px;
}
}

.bp-table-quadrant-top-left {
Expand All @@ -118,4 +125,9 @@ $table-quadrant-scroll-container-overflow: 20px;
overflow-x: hidden;
overflow-y: hidden;
}

// correct missing bottom-right corner in the menu-element (addresses #1444).
.bp-table-body-virtual-client {
min-width: 1px;
}
}

1 comment on commit 5626890

@blueprint-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[Table] Fix missing selection border on left edge of grid (#1622)

Preview: documentation
Coverage: core | datetime

Please sign in to comment.