consolidated commits from master branch:fce1287
luci-app-bmx7: show mDNS menu if available3e259f8
luci-app-bmx7: fix bmx7-info script's "$info" calla7d7f4b
luci-app-bmx7: fix bmx7-info script's indentation9345df9
luci-app-bmx7: update version, dependencies and maintainera1e1020
luci-app-bmx7: refactory, multiple fixes and add topology graph Signed-off-by: Daniel Golle <daniel@makrotopia.org>
59 lines
1 KiB
CSS
59 lines
1 KiB
CSS
.njg-overlay{
|
|
background: #fbfbfb;
|
|
border-radius: 2px;
|
|
border: 1px solid #ccc;
|
|
color: #6d6357;
|
|
font-family: Arial, sans-serif;
|
|
font-family: sans-serif;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
height: auto;
|
|
max-width: 400px;
|
|
min-width: 200px;
|
|
padding: 0 15px;
|
|
right: 10px;
|
|
top: 10px;
|
|
width: auto;
|
|
}
|
|
|
|
.njg-metadata{
|
|
background: #fbfbfb;
|
|
border-radius: 2px;
|
|
border: 1px solid #ccc;
|
|
color: #6d6357;
|
|
display: none;
|
|
font-family: Arial, sans-serif;
|
|
font-family: sans-serif;
|
|
font-size: 14px;
|
|
height: auto;
|
|
left: 10px;
|
|
max-width: 500px;
|
|
min-width: 200px;
|
|
padding: 0 15px;
|
|
top: 10px;
|
|
width: auto;
|
|
}
|
|
|
|
.njg-node{
|
|
stroke-opacity: 0.5;
|
|
stroke-width: 7px;
|
|
stroke: #fff;
|
|
}
|
|
|
|
.njg-node:hover,
|
|
.njg-node.njg-open {
|
|
stroke: rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.njg-link{
|
|
cursor: pointer;
|
|
stroke: #999;
|
|
stroke-width: 2;
|
|
stroke-opacity: 0.25;
|
|
}
|
|
|
|
.njg-link:hover,
|
|
.njg-link.njg-open{
|
|
stroke-width: 4 !important;
|
|
stroke-opacity: 0.5;
|
|
}
|