Skip to content

Commit

Permalink
Fix #418 - header menu icons not visible in FF when used with sortabl…
Browse files Browse the repository at this point in the history
…e columns
  • Loading branch information
mleibman committed May 20, 2013
1 parent c73424c commit db5d6d6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion examples/example-plugin-headerbuttons.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
var grid;
var data = [];
var options = {
enableCellNavigation:true
enableCellNavigation: true
};
var columns = [];
var columnsWithHighlightingById = {};
Expand All @@ -61,6 +61,7 @@
name: String.fromCharCode("A".charCodeAt(0) + i),
field: i,
width: 90,
sortable: true,
formatter: highlightingFormatter,
header: {
buttons: [
Expand Down
3 changes: 2 additions & 1 deletion plugins/slick.headerbuttons.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.slick-column-name {
.slick-column-name,
.slick-sort-indicator {
/**
* This makes all "float:right" elements after it that spill over to the next line
* display way below the lower boundary of the column thus hiding them.
Expand Down
2 changes: 2 additions & 0 deletions slick.grid.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ classes should alter those!
width: 8px;
height: 5px;
margin-left: 4px;
margin-top: 6px;
float: left;
}

.slick-sort-indicator-desc {
Expand Down

0 comments on commit db5d6d6

Please sign in to comment.