Skip to content

Commit

Permalink
commit with tag nightly-24.11.18
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Nov 18, 2024
1 parent 6204662 commit 42a9e42
Show file tree
Hide file tree
Showing 20 changed files with 9,872 additions and 369 deletions.
Binary file modified dist/dist.zip
Binary file not shown.
121 changes: 120 additions & 1 deletion dist/html-static/css/cy-style-dark.json
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,129 @@
"style": {
"width": "8",
"height": "8",
"background-image": "images/clab-bridge-light-grey.png",
"background-image": "images/clab-bridge-light-blue.png",
"background-fit": "cover"
}
},

{
"selector": "node[topoViewerRole=\"pe\"][editor=\"true\"]",
"style": {
"width": "14",
"height": "14",
"background-image": "images/clab-pe-dark-blue.png",
"background-fit": "cover",
"border-width": "0.5px",
"border-color": "#32CD32"
}
},
{
"selector": "node[topoViewerRole=\"p\"][editor=\"true\"]",
"style": {
"width": "14",
"height": "14",
"background-image": "images/clab-pe-dark-blue.png",
"background-fit": "cover",
"border-width": "0.5px",
"border-color": "#32CD32"
}
},
{
"selector": "node[topoViewerRole=\"controller\"][editor=\"true\"]",
"style": {
"width": "14",
"height": "14",
"background-image": "images/clab-controller-light-blue.png",
"background-fit": "cover",
"border-width": "0.5px",
"border-color": "#32CD32"
}
},
{
"selector": "node[topoViewerRole=\"pon\"][editor=\"true\"]",
"style": {
"width": "12",
"height": "12",
"background-image": "images/clab-pon-dark-blue.png",
"background-fit": "cover",
"border-width": "0.5px",
"border-color": "#32CD32"
}
},
{
"selector": "node[topoViewerRole=\"dcgw\"][editor=\"true\"]",
"style": {
"width": "12",
"height": "12",
"background-image": "images/clab-dcgw-dark-blue.png",
"background-fit": "cover",
"border-width": "0.5px",
"border-color": "#32CD32"
}
},
{
"selector": "node[topoViewerRole=\"leaf\"][editor=\"true\"]",
"style": {
"background-image": "images/clab-leaf-light-blue.png",
"background-fit": "cover",
"border-width": "0.5px",
"border-color": "#32CD32"
}
},
{
"selector": "node[topoViewerRole=\"rgw\"][editor=\"true\"]",
"style": {
"background-image": "images/clab-rgw-light-blue.png",
"background-fit": "cover",
"border-width": "0.5px",
"border-color": "#32CD32"
}
},
{
"selector": "node[topoViewerRole=\"super-spine\"][editor=\"true\"]",
"style": {
"width": "12",
"height": "12",
"background-image": "images/clab-spine-dark-blue.png",
"background-fit": "cover",
"border-width": "0.5px",
"border-color": "#32CD32"
}
},
{
"selector": "node[topoViewerRole=\"spine\"][editor=\"true\"]",
"style": {
"width": "12",
"height": "12",
"background-image": "images/clab-spine-light-blue.png",
"background-fit": "cover",
"border-width": "0.5px",
"border-color": "#32CD32"
}
},
{
"selector": "node[topoViewerRole=\"server\"][editor=\"true\"]",
"style": {
"width": "12",
"height": "12",
"background-image": "images/clab-server-dark-blue.png",
"background-fit": "cover",
"border-width": "0.5px",
"border-color": "#32CD32"
}
},
{
"selector": "node[topoViewerRole=\"bridge\"][editor=\"true\"]",
"style": {
"width": "8",
"height": "8",
"background-image": "images/clab-bridge-light-blue.png",
"background-fit": "cover",
"border-width": "0.5px",
"border-color": "#32CD32"
}
},

{
"selector": "edge",
"style": {
Expand Down
20 changes: 20 additions & 0 deletions dist/html-static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,26 @@ body {
position: fixed;
}

#panel-node-editor {
bottom: 10px;
left: 40px;
width: 340px;
max-height: 700px;
overflow-y: auto;
overflow-x: hidden;
position: fixed;
}

#panel-node-kind-dropdown-content {
max-height: 120px; /* Adjust height to show about 5 items */
overflow-y: auto; /* Enables vertical scrolling */
}

#panel-node-topoviewerrole-dropdown-content {
max-height: 120px; /* Adjust height to show about 5 items */
overflow-y: auto; /* Enables vertical scrolling */
}

#panel-link {
top: 85px;
right: 40px;
Expand Down
Loading

0 comments on commit 42a9e42

Please sign in to comment.