tables.css.scss 492 B

12345678910111213141516171819202122232425262728293031
  1. // Sortable table headers
  2. .table th a.selected {
  3. position: relative;
  4. text-decoration: underline;
  5. &.asc:after, &.desc:after {
  6. text-decoration: none;
  7. position: absolute;
  8. top: 0;
  9. right: -1em;
  10. font-family: FontAwesome;
  11. }
  12. &.asc:after {
  13. content: '\f0de'; //fa-sort-asc
  14. }
  15. &.desc:after {
  16. content: '\f0dd'; //fa-sort-desc
  17. }
  18. }
  19. table.events {
  20. .payload {
  21. color: #999;
  22. font-size: 12px;
  23. //text-align: center;
  24. font-family: monospace;
  25. }
  26. }