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.
17 lines
541 B
17 lines
541 B
/* Tree */ |
|
|
|
.tundra .dijitTreeNodeRtl, |
|
.tundra .dijitTreeNodeRtl .dijitTreeExpandoLeaf { |
|
/* disable grid lines in RTL mode; too hard to support */ |
|
background-image: none; |
|
} |
|
|
|
.tundra .dijitTreeNodeRtl .dijitTreeExpandoOpened { |
|
/* todo: get rid of transparent space in icon files, |
|
and just use background-placement (or margin maybe) to get desired alignment */ |
|
background-image: url('images/treeExpand_minus_rtl.gif'); |
|
} |
|
|
|
.tundra .dijitTreeNodeRtl .dijitTreeExpandoClosed { |
|
background-image: url('images/treeExpand_plus_rtl.gif'); |
|
}
|
|
|