Ext.lingo.JsonCheckBoxTree.css 961 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .x-tree-node-checkbox-all {
  2. padding:0px;
  3. margin:0px;
  4. width:16px;
  5. vertical-align:middle;
  6. background-position:center;
  7. background-repeat:no-repeat;
  8. background-image:url(checkboxchecked.gif);
  9. }
  10. .x-tree-node-checkbox-none {
  11. padding:0px;
  12. margin:0px;
  13. width:16px;
  14. vertical-align:middle;
  15. background-position:center;
  16. background-repeat:no-repeat;
  17. background-image:url(checkbox.gif);
  18. }
  19. .x-tree-node-checkbox-some {
  20. padding:0px;
  21. margin:0px;
  22. width:16px;
  23. vertical-align:middle;
  24. background-position:center;
  25. background-repeat:no-repeat;
  26. background-image:url(checkboxsomechecked.gif);
  27. }
  28. /* tree checkbox, height/width needed b/c of IE spacing weirdly, breaks lines */
  29. input.l-tcb {
  30. height:13px;
  31. width:13px;
  32. margin-left:2px
  33. }
  34. /* fix scrolling issue with treeobj in a contentpanel
  35. * and loss of icons when a node is expanded
  36. */
  37. .ext-ie .x-tree {
  38. position:static !important;
  39. }