mirror of
https://github.com/apache/superset.git
synced 2026-04-21 09:04:38 +00:00
44 lines
469 B
CSS
44 lines
469 B
CSS
text {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.grandparent text {
|
|
font-weight: bold;
|
|
}
|
|
|
|
rect {
|
|
fill: none;
|
|
stroke: #fff;
|
|
}
|
|
|
|
rect.parent,
|
|
.grandparent rect {
|
|
stroke-width: 2px;
|
|
}
|
|
|
|
rect.parent {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.grandparent rect {
|
|
fill: #eee;
|
|
}
|
|
|
|
.grandparent:hover rect {
|
|
fill: #aaa;
|
|
}
|
|
|
|
.children rect.parent,
|
|
.grandparent rect {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.children rect.parent {
|
|
fill: #bbb;
|
|
fill-opacity: .5;
|
|
}
|
|
|
|
.children:hover rect.child {
|
|
fill: #bbb;
|
|
}
|