Closes #8047: Display sorting indicator in table column headers
This commit is contained in:
parent
7922d3909a
commit
5b0c79629e
|
|
@ -2,6 +2,10 @@
|
|||
|
||||
## v3.1.1 (FUTURE)
|
||||
|
||||
### Enhancements
|
||||
|
||||
* [#8047](https://github.com/netbox-community/netbox/issues/8047) - Display sorting indicator in table column headers
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* [#5869](https://github.com/netbox-community/netbox/issues/5869) - Fix permissions evaluation under available prefix/IP REST API endpoints
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -235,6 +235,16 @@ table {
|
|||
}
|
||||
}
|
||||
|
||||
th.asc a::after {
|
||||
content: "\f0140";
|
||||
font-family: 'Material Design Icons';
|
||||
}
|
||||
|
||||
th.desc a::after {
|
||||
content: "\f0143";
|
||||
font-family: 'Material Design Icons';
|
||||
}
|
||||
|
||||
&.table > :not(caption) > * > * {
|
||||
padding-right: $table-cell-padding-x-sm !important;
|
||||
padding-left: $table-cell-padding-x-sm !important;
|
||||
|
|
|
|||
Loading…
Reference in New Issue