Skip to content

Commit

Permalink
fix(column-resizer): Disable text selection while resizing columns.
Browse files Browse the repository at this point in the history
Used suggestion provided by @urilgb413.

fix #6272
  • Loading branch information
Portugal, Marcelo authored and mportuga committed Mar 22, 2018
1 parent a63e1f1 commit 2cf3e02
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/features/resize-columns/less/column-resizer.less
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@
.ui-grid {
&.column-resizing {
cursor: col-resize;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
}

Expand Down

0 comments on commit 2cf3e02

Please sign in to comment.