2016-10-31 42 views

回答

2

NG-table.scss 套

.sort-indicator { 
    padding-right: 18px; 
    position: relative; 
    ... 
} 

眼見排序指標是一個跨越我的猜測是有人忘了補充

display: inline-block; 

所有你需要做的是添加規則

.ng-table th.sortable .sort-indicator { 
    display: inline-block; 
} 

在你的自定義CSS的某個地方,這將解決你的問題。

+0

是的,這很好,它完全對齊它,thx –

相關問題