12345678910111213141516171819202122232425262728293031 |
- // Sortable table headers
- .table th a.selected {
- position: relative;
- text-decoration: underline;
- &.asc:after, &.desc:after {
- text-decoration: none;
- position: absolute;
- top: 0;
- right: -1em;
- font-family: FontAwesome;
- }
- &.asc:after {
- content: '\f0de'; //fa-sort-asc
- }
- &.desc:after {
- content: '\f0dd'; //fa-sort-desc
- }
- }
- table.events {
- .payload {
- color: #999;
- font-size: 12px;
- //text-align: center;
- font-family: monospace;
- }
- }
|