-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(Selection): Remove IE11 ellipsis in header
For some reason IE11 turns the in the selection row header's header cell into an ellipsis. Adding text-overflow: clip to .ui-grid-contents fixes this but as a custom headerCellTemplate has to be defined, the easier thing is just to remove all the unneeded stuff from the header cell completely. This change will probably be overwritten if and when we use the header cell to actually do something.
- Loading branch information
Showing
2 changed files
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<div> | ||
<div class="ui-grid-vertical-bar"> </div> | ||
<div class="ui-grid-cell-contents" col-index="renderIndex"></div> | ||
</div> |