tabledrag.module.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /**
  2. * @file
  3. * Table drag behavior.
  4. *
  5. * @see tabledrag.js
  6. */
  7. body.drag {
  8. cursor: move;
  9. }
  10. tr.region-title {
  11. font-weight: 700;
  12. color: #0678be;
  13. font-size: 18px;
  14. line-height: 24px;
  15. }
  16. tr.region-message {
  17. color: #999;
  18. }
  19. tr.region-populated {
  20. display: none;
  21. }
  22. tr.add-new .tabledrag-changed {
  23. display: none;
  24. }
  25. .draggable a.tabledrag-handle {
  26. cursor: move;
  27. float: left;
  28. height: 24px;
  29. margin: 0 10px 0 0;
  30. overflow: hidden;
  31. text-decoration: none;
  32. }
  33. [dir="rtl"] .draggable a.tabledrag-handle {
  34. float: right;
  35. margin: 0 0 0 10px;
  36. }
  37. a.tabledrag-handle:hover {
  38. text-decoration: none;
  39. }
  40. a.tabledrag-handle .handle {
  41. background: url(../../../images/icons/787878/move.svg) no-repeat 4px 4px;
  42. height: 24px;
  43. margin: 0;
  44. padding: 0;
  45. width: 24px;
  46. }
  47. .tabledrag-toggle-weight-wrapper {
  48. text-align: right; /* LTR */
  49. font-size: 14px;
  50. float: none;
  51. }
  52. div.fieldset-wrapper .tabledrag-toggle-weight-wrapper {
  53. font-size: 12px;
  54. }
  55. @media only screen and (min-width: 1024px) {
  56. div.fieldset-wrapper .tabledrag-toggle-weight-wrapper {
  57. position: absolute;
  58. top: 12px;
  59. right: 0;
  60. }
  61. }
  62. div.fieldset-wrapper .tabledrag-toggle-weight-wrapper .link {
  63. font-weight: 400;
  64. }
  65. [dir="rtl"] .tabledrag-toggle-weight-wrapper {
  66. text-align: left;
  67. }
  68. .indentation {
  69. float: left; /* LTR */
  70. height: 1.7em;
  71. margin: -0.4em 0.2em -0.4em -0.4em; /* LTR */
  72. padding: 0.42em 0 0.42em 0.6em; /* LTR */
  73. width: 20px;
  74. }
  75. [dir="rtl"] .indentation {
  76. float: right;
  77. margin: -0.4em -0.4em -0.4em 0.2em;
  78. padding: 0.42em 0.6em 0.42em 0;
  79. }