mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-23 17:08:41 -06:00
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)
|
## v3.1.1 (FUTURE)
|
||||||
|
|
||||||
|
### Enhancements
|
||||||
|
|
||||||
|
* [#8047](https://github.com/netbox-community/netbox/issues/8047) - Display sorting indicator in table column headers
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
* [#5869](https://github.com/netbox-community/netbox/issues/5869) - Fix permissions evaluation under available prefix/IP REST API endpoints
|
* [#5869](https://github.com/netbox-community/netbox/issues/5869) - Fix permissions evaluation under available prefix/IP REST API endpoints
|
||||||
|
BIN
netbox/project-static/dist/netbox-dark.css
vendored
BIN
netbox/project-static/dist/netbox-dark.css
vendored
Binary file not shown.
BIN
netbox/project-static/dist/netbox-light.css
vendored
BIN
netbox/project-static/dist/netbox-light.css
vendored
Binary file not shown.
BIN
netbox/project-static/dist/netbox-print.css
vendored
BIN
netbox/project-static/dist/netbox-print.css
vendored
Binary file not shown.
@ -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) > * > * {
|
&.table > :not(caption) > * > * {
|
||||||
padding-right: $table-cell-padding-x-sm !important;
|
padding-right: $table-cell-padding-x-sm !important;
|
||||||
padding-left: $table-cell-padding-x-sm !important;
|
padding-left: $table-cell-padding-x-sm !important;
|
||||||
|
Loading…
Reference in New Issue
Block a user