Tree_rtl.css 541 B

1234567891011121314151617
  1. /* Tree */
  2. .tundra .dijitTreeNodeRtl,
  3. .tundra .dijitTreeNodeRtl .dijitTreeExpandoLeaf {
  4. /* disable grid lines in RTL mode; too hard to support */
  5. background-image: none;
  6. }
  7. .tundra .dijitTreeNodeRtl .dijitTreeExpandoOpened {
  8. /* todo: get rid of transparent space in icon files,
  9. and just use background-placement (or margin maybe) to get desired alignment */
  10. background-image: url('images/treeExpand_minus_rtl.gif');
  11. }
  12. .tundra .dijitTreeNodeRtl .dijitTreeExpandoClosed {
  13. background-image: url('images/treeExpand_plus_rtl.gif');
  14. }