We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0c5b7e commit ca47b8aCopy full SHA for ca47b8a
src/less/header.less
@@ -79,6 +79,11 @@
79
.sortable {
80
cursor: pointer;
81
}
82
+
83
+ // Moves the sort priority number closer to the icon
84
+ .ui-grid-sort-priority-number {
85
+ margin-left: -8px;
86
+ }
87
88
89
// Make vertical bar in header row fill the height of the cell completely
src/templates/ui-grid/uiGridHeaderCell.html
@@ -22,8 +22,11 @@
22
ng-class="{ 'ui-grid-icon-up-dir': col.sort.direction == asc, 'ui-grid-icon-down-dir': col.sort.direction == desc, 'ui-grid-icon-blank': !col.sort.direction }"
23
title="{{col.sort.priority ? i18n.headerCell.priority + ' ' + col.sort.priority : null}}"
24
aria-hidden="true">
25
-
26
</i>
+ <sub
27
+ class="ui-grid-sort-priority-number">
28
+ {{col.sort.priority + 1}}
29
+ </sub>
30
</span>
31
</div>
32
0 commit comments