Skip to content

Commit

Permalink
fix(styling): styling issue in Firefox after col reordering, fixes #297
Browse files Browse the repository at this point in the history
- found a commit in SlickGrid to address Firefox styling issue 6pac/SlickGrid@a8d4452
  • Loading branch information
ghiscoding-SE committed Oct 2, 2019
1 parent e63df17 commit a2c7e39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
.slick-header-column {
background: $grid-header-background;
// background-color: #EBECEE;
box-sizing: content-box !important; /* this here only for Firefox! */
}

.slick-header-columns {
Expand Down
1 change: 1 addition & 0 deletions src/app/modules/angular-slickgrid/styles/slick-grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
.slick-group-header-column.ui-state-default {
position: relative;
display: inline-block;
box-sizing: content-box !important; /* this here only for Firefox! */
overflow: hidden;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
Expand Down

0 comments on commit a2c7e39

Please sign in to comment.