BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tables.scss 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * Sortable tables
  3. */
  4. $bmp: "/static/common/symbols/table-order.png";
  5. $nrsr: no-repeat scroll right;
  6. @mixin bitmap($px) {
  7. background: url($bmp) $nrsr $px transparent;
  8. }
  9. .headerSort {
  10. cursor: pointer;
  11. }
  12. .headerSort span {
  13. @include bitmap(-38px);
  14. padding: 0px 20px 0 0;
  15. }
  16. .headerSortDown span {
  17. @include bitmap(4px);
  18. }
  19. .headerSortUp span {
  20. @include bitmap(-79px);
  21. }
  22. .headerSort.sorter-false,
  23. .headerSort.sorter-false span {
  24. background-image: none;
  25. cursor: default;
  26. }
  27. /* Generic */
  28. #sortable {
  29. list-style-type: none;
  30. margin: 0;
  31. padding: 0;
  32. width: 50%;
  33. li {
  34. padding: 0px;
  35. font-size: 1.2em;
  36. height: 1.5em;
  37. }
  38. }
  39. /* Drag and drop controls */
  40. .drag_drop_save {
  41. padding: 6px 0;
  42. overflow: hidden;
  43. }
  44. #manage_collage_table.ui-sortable .drag {
  45. cursor: n-resize;
  46. }
  47. #manage_collage_table.ui-sortable .ui-sortable-helper.drag {
  48. cursor: grabbing;
  49. cursor: -moz-grabbing;
  50. cursor: -webkit-grabbing;
  51. }
  52. #manage_collage_table .ui-sortable-helper td,
  53. #manage_collage_table .ui-sortable-placeholder {
  54. border: 0;
  55. }
  56. /* API keys */
  57. #acc_api_keys_tr {
  58. table {
  59. display: inline-block !important;
  60. }
  61. }