jquery.treetable.css 652 B

12345678910111213141516171819202122232425262728
  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. }