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.

28 lines
652 B

7 years ago
  1. table.treetable span.indenter {
  2. display: inline-block;
  3. margin: 0;
  4. padding: 0;
  5. text-align: right;
  6. /* Disable text selection of nodes (for better D&D UX) */
  7. user-select: none;
  8. -khtml-user-select: none;
  9. -moz-user-select: none;
  10. -o-user-select: none;
  11. -webkit-user-select: none;
  12. /* Force content-box box model for indenter (Bootstrap compatibility) */
  13. -webkit-box-sizing: content-box;
  14. -moz-box-sizing: content-box;
  15. box-sizing: content-box;
  16. width: 19px;
  17. }
  18. table.treetable span.indenter a {
  19. background-position: left center;
  20. background-repeat: no-repeat;
  21. display: inline-block;
  22. text-decoration: none;
  23. width: 19px;
  24. }