Skip to content

Commit

Permalink
Merge pull request #1031 from desig9stein/fix_for_237292_17.1
Browse files Browse the repository at this point in the history
Add 34px in all cases
  • Loading branch information
mpavlinov authored May 19, 2017
2 parents 8e51f3a + 4509857 commit 4ba4346
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/css/structure/modules/infragistics.ui.grid.css
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,9 @@ a.ui-iggrid-pagelink, a.ui-iggrid-pagelinkcurrent {line-height: 1.4em;}
.ui-iggrid-colheaderasc .ui-iggrid-headertext,
.ui-iggrid-colheaderdesc .ui-iggrid-headertext,
.ui-iggrid-headercell-featureenabled .ui-iggrid-headertext {
width: -webkit-calc(100% - 18px)!important; /** Chrome / Safari 6 **/
width: -moz-calc(100% - 18px)!important; /** FF 4-15 **/
width: calc(100% - 18px)!important; /** FF 16+, IE 9+, and future other browsers **/
width: -webkit-calc(100% - 34px)!important; /** Chrome / Safari 6 **/
width: -moz-calc(100% - 34px)!important; /** FF 4-15 **/
width: calc(100% - 34px)!important; /** FF 16+, IE 9+, and future other browsers **/
display:block;
text-overflow:ellipsis;
overflow: hidden;
Expand Down Expand Up @@ -237,9 +237,9 @@ a.ui-iggrid-pagelink, a.ui-iggrid-pagelinkcurrent {line-height: 1.4em;}
.pointerevents .ui-iggrid-headercell-featureenabled .ui-iggrid-headertext
{

width: -webkit-calc(100% - 28px)!important; /** Chrome / Safari 6 **/
width: -moz-calc(100% - 28px)!important; /** FF 4-15 **/
width: calc(100% - 28px)!important; /** FF 16+, IE 9+, and future other browsers **/
width: -webkit-calc(100% - 34px)!important; /** Chrome / Safari 6 **/
width: -moz-calc(100% - 34px)!important; /** FF 4-15 **/
width: calc(100% - 34px)!important; /** FF 16+, IE 9+, and future other browsers **/
line-height: 1.8em;
}

Expand Down

0 comments on commit 4ba4346

Please sign in to comment.