This commit is contained in:
CHEVALLIER Abel
2025-11-13 16:23:22 +01:00
parent de9c515a47
commit cb235644dc
34924 changed files with 3811102 additions and 0 deletions

1
node_modules/ng-zorro-antd/graph/style/entry.less generated vendored Normal file
View File

@@ -0,0 +1 @@
@import './index.less';

69
node_modules/ng-zorro-antd/graph/style/index.css generated vendored Normal file
View File

@@ -0,0 +1,69 @@
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
.nz-graph {
position: relative;
display: block;
width: 100%;
height: 100%;
background-color: #fff;
}
.nz-graph-nodes .nz-graph-node-rect {
fill: transparent;
stroke: #91d5ff;
stroke-width: 1px;
}
.nz-graph-nodes .nz-graph-node-rect:hover {
stroke: #1890ff;
}
.nz-graph-edges .nz-graph-edge path {
fill: none;
stroke: #91d5ff;
stroke-linecap: butt;
stroke-width: 1px;
}
.nz-graph-edges .nz-graph-edge path:hover {
stroke: #1890ff;
}
.nz-graph-edges .nz-graph-edge-text {
font-size: 12px;
fill: rgba(0, 0, 0, 0.85);
}
.nz-graph-edge-marker {
color: #91d5ff;
fill: #91d5ff;
}
.nz-graph-minimap {
position: absolute;
right: 0;
bottom: 0;
z-index: 99;
background-color: #fff;
border: 1px solid #d9d9d9;
transition: opacity 0.3s linear;
pointer-events: auto;
}
.nz-graph-minimap.hidden {
opacity: 0;
pointer-events: none;
}
.nz-graph-minimap canvas {
border: 1px solid #999;
}
.nz-graph-minimap rect {
cursor: move;
filter: url('#minimapDropShadow');
fill: #fff;
stroke: rgba(0, 0, 0, 0.45);
stroke-width: 1px;
fill-opacity: 0;
}
.nz-graph-minimap svg {
position: absolute;
width: 100%;
height: 100%;
}
.nz-graph-minimap .buffer,
.nz-graph-minimap .viewport {
display: block;
height: 100%;
}

98
node_modules/ng-zorro-antd/graph/style/index.less generated vendored Normal file
View File

@@ -0,0 +1,98 @@
@import '../../style/themes/index';
@import '../../style/mixins/index';
@graph-stroke-color: @primary-3;
@graph-focused-color: @primary-color;
@graph-stroke-width-base: 1px;
@graph-node-background-color: @primary-1;
@graph-prefix-cls: ~'nz-graph';
.@{graph-prefix-cls} {
position: relative;
display: block;
width: 100%;
height: 100%;
background-color: @component-background;
&-nodes {
.@{graph-prefix-cls}-node {
&-rect {
fill: transparent;
stroke: @graph-stroke-color;
stroke-width: @graph-stroke-width-base;
&:hover {
stroke: @graph-focused-color;
}
}
}
}
&-edges {
.@{graph-prefix-cls}-edge {
path {
fill: none;
stroke: @graph-stroke-color;
stroke-linecap: butt;
stroke-width: @graph-stroke-width-base;
&:hover {
stroke: @graph-focused-color;
}
}
&-text {
font-size: @font-size-sm;
fill: fade(@text-color, 85%);
}
}
}
&-edge-marker {
color: @graph-stroke-color;
fill: @graph-stroke-color;
}
&-minimap {
position: absolute;
right: 0;
bottom: 0;
z-index: 99;
background-color: @component-background;
border: @border-width-base @border-style-base @border-color-base;
transition: opacity 0.3s linear;
pointer-events: auto;
&.hidden {
opacity: 0;
pointer-events: none;
}
canvas {
border: 1px solid #999;
}
rect {
cursor: move;
filter: url('#minimapDropShadow');
fill: @component-background;
stroke: @text-color-secondary;
stroke-width: @border-width-base;
fill-opacity: 0;
}
svg {
position: absolute;
width: 100%;
height: 100%;
}
.buffer,
.viewport {
display: block;
height: 100%;
}
}
}

1
node_modules/ng-zorro-antd/graph/style/index.min.css generated vendored Normal file
View File

@@ -0,0 +1 @@
.nz-graph{position:relative;display:block;width:100%;height:100%;background-color:#fff}.nz-graph-nodes .nz-graph-node-rect{fill:transparent;stroke:#91d5ff;stroke-width:1px}.nz-graph-nodes .nz-graph-node-rect:hover{stroke:#1890ff}.nz-graph-edges .nz-graph-edge path{fill:none;stroke:#91d5ff;stroke-linecap:butt;stroke-width:1px}.nz-graph-edges .nz-graph-edge path:hover{stroke:#1890ff}.nz-graph-edges .nz-graph-edge-text{font-size:12px;fill:rgba(0,0,0,0.85)}.nz-graph-edge-marker{color:#91d5ff;fill:#91d5ff}.nz-graph-minimap{position:absolute;right:0;bottom:0;z-index:99;background-color:#fff;border:1px solid #d9d9d9;transition:opacity .3s linear;pointer-events:auto}.nz-graph-minimap.hidden{opacity:0;pointer-events:none}.nz-graph-minimap canvas{border:1px solid #999}.nz-graph-minimap rect{cursor:move;filter:url('#minimapDropShadow');fill:#fff;stroke:rgba(0,0,0,0.45);stroke-width:1px;fill-opacity:0}.nz-graph-minimap svg{position:absolute;width:100%;height:100%}.nz-graph-minimap .buffer,.nz-graph-minimap .viewport{display:block;height:100%}