Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

78 Zeilen
2.5 KiB

  1. table.table thead>tr>th.sorting_asc,
  2. table.table thead>tr>th.sorting_desc,
  3. table.table thead>tr>th.sorting,
  4. table.table thead>tr>td.sorting_asc,
  5. table.table thead>tr>td.sorting_desc,
  6. table.table thead>tr>td.sorting {
  7. padding-right: 30px
  8. }
  9. table.table thead>tr>th:active,
  10. table.table thead>tr>td:active {
  11. outline: none
  12. }
  13. table.table thead .sorting,
  14. table.table thead .sorting_asc,
  15. table.table thead .sorting_desc,
  16. table.table thead .sorting_asc_disabled,
  17. table.table thead .sorting_desc_disabled {
  18. cursor: pointer;
  19. position: relative
  20. }
  21. table.table thead .sorting:before,
  22. table.table thead .sorting:after,
  23. table.table thead .sorting_asc:before,
  24. table.table thead .sorting_asc:after,
  25. table.table thead .sorting_desc:before,
  26. table.table thead .sorting_desc:after,
  27. table.table thead .sorting_asc_disabled:before,
  28. table.table thead .sorting_asc_disabled:after,
  29. table.table thead .sorting_desc_disabled:before,
  30. table.table thead .sorting_desc_disabled:after {
  31. position: absolute;
  32. bottom: 0.9em;
  33. display: block;
  34. opacity: 0.3
  35. }
  36. table.table-sm thead .sorting:before,
  37. table.table-sm thead .sorting:after,
  38. table.table-sm thead .sorting_asc:before,
  39. table.table-sm thead .sorting_asc:after,
  40. table.table-sm thead .sorting_desc:before,
  41. table.table-sm thead .sorting_desc:after,
  42. table.table-sm thead .sorting_asc_disabled:before,
  43. table.table-sm thead .sorting_asc_disabled:after,
  44. table.table-sm thead .sorting_desc_disabled:before,
  45. table.table-sm thead .sorting_desc_disabled:after {
  46. bottom: 0.3em;
  47. }
  48. table.table thead .sorting:before,
  49. table.table thead .sorting_asc:before,
  50. table.table thead .sorting_desc:before,
  51. table.table thead .sorting_asc_disabled:before,
  52. table.table thead .sorting_desc_disabled:before {
  53. right: 1em;
  54. content: "\2191"
  55. }
  56. table.table thead .sorting:after,
  57. table.table thead .sorting_asc:after,
  58. table.table thead .sorting_desc:after,
  59. table.table thead .sorting_asc_disabled:after,
  60. table.table thead .sorting_desc_disabled:after {
  61. right: 0.5em;
  62. content: "\2193"
  63. }
  64. table.table thead .sorting_asc:before,
  65. table.table thead .sorting_desc:after {
  66. opacity: 1
  67. }
  68. table.table thead .sorting_asc_disabled:before,
  69. table.table thead .sorting_desc_disabled:after {
  70. opacity: 0
  71. }