mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-08-31 04:09:44 +02:00
53 lines
1.3 KiB
CSS
53 lines
1.3 KiB
CSS
.mitch-d3-tree.boxed-tree .node {
|
|
/*
|
|
Offset the text so its right in the middle
|
|
This code is included due to d3plus not
|
|
centering vertically correctly for the textbox
|
|
*/
|
|
}
|
|
|
|
.mitch-d3-tree.boxed-tree .node.selected .body-group .body-box {
|
|
cursor: inherit;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.mitch-d3-tree.boxed-tree .node .d3plus-textBox, .mitch-d3-tree.boxed-tree .node .body-group .body-box, .mitch-d3-tree.boxed-tree .node .title-group .title-box {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mitch-d3-tree.boxed-tree .node .title-group .d3plus-textBox text {
|
|
transform: translateY(0.15em);
|
|
}
|
|
|
|
.mitch-d3-tree.circle-tree .node.selected circle {
|
|
cursor: inherit;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.mitch-d3-tree.circle-tree .node circle {
|
|
cursor: pointer;
|
|
r: 10;
|
|
}
|
|
|
|
.mitch-d3-tree.circle-tree .node text {
|
|
transition: 0.3s linear;
|
|
}
|
|
|
|
.mitch-d3-tree.circle-tree .node.childless text {
|
|
transform: translate(13px, 0.35em);
|
|
text-anchor: start;
|
|
}
|
|
|
|
.mitch-d3-tree.circle-tree .node.collapsed text,
|
|
.mitch-d3-tree.circle-tree .node.expanded text {
|
|
transform: translate(-13px, 0.35em);
|
|
text-anchor: end;
|
|
}
|
|
|
|
.mitch-d3-tree.circle-tree .node.middle.collapsed text,
|
|
.mitch-d3-tree.circle-tree .node.middle.expanded text {
|
|
transform: translate(-13px, -8px);
|
|
}
|
|
|
|
/*# sourceMappingURL=d3-mitch-tree.css.map */
|