tables.css.scss 692 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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-striped > tbody > tr.hl {
  20. &:nth-child(odd) {
  21. > td, > th {
  22. background-color: #ffeecc;
  23. }
  24. }
  25. &:nth-child(even) {
  26. > td, > th {
  27. background-color: #f9e8c6;
  28. }
  29. }
  30. }
  31. table.events {
  32. .payload {
  33. color: #999;
  34. font-size: 12px;
  35. //text-align: center;
  36. font-family: monospace;
  37. }
  38. }