You are here

jquery.treetable.css in Token 8

table.treetable span.indenter {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-align: right;

  /* Disable text selection of nodes (for better D&D UX) */
  user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -webkit-user-select: none;

  /* Force content-box box model for indenter (Bootstrap compatibility) */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;

  width: 19px;
}

table.treetable span.indenter a {
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  text-decoration: none;
  width: 19px;
}

File

css/jquery.treetable.css
View source
  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. }