Knot node switch pin

This commit is contained in:
barsdeveloper
2022-11-13 20:50:14 +01:00
parent 5d3a614d78
commit 92e4735d47
21 changed files with 315 additions and 121 deletions

View File

@@ -1,4 +1,5 @@
@use "style.scss";
@use "ueb-knot.scss";
@use "ueb-link.scss";
@use "ueb-node.scss";
@use "ueb-pin.scss";

20
scss/ueb-knot.scss Normal file
View File

@@ -0,0 +1,20 @@
ueb-node[data-type="/Script/BlueprintGraph.K2Node_Knot"] {
box-shadow: none;
}
ueb-node[data-type="/Script/BlueprintGraph.K2Node_Knot"] ueb-pin {
min-height: 0;
}
ueb-node[data-type="/Script/BlueprintGraph.K2Node_Knot"] ueb-pin[data-direction="input"] {
display: none;
}
ueb-node[data-type="/Script/BlueprintGraph.K2Node_Knot"] .ueb-node-border {
padding: 8px 18px;
background: none !important;
}
ueb-node[data-type="/Script/BlueprintGraph.K2Node_Knot"][data-selected="true"] .ueb-node-border {
box-shadow: inset 0 0 0px 6px #d29e07;
}

View File

@@ -49,7 +49,7 @@ ueb-blueprint[data-scrolling="false"][data-selecting="false"] .ueb-pin-wrapper:h
text-align: right;
}
ueb-pin[data-type="exec"] .ueb-pin-icon {
ueb-pin[data-type="exec"] .ueb-pin-icon-exec {
--ueb-pin-color: white;
width: 15px;
height: 15px;
@@ -62,12 +62,6 @@ ueb-pin[data-type="exec"] .ueb-pin-icon {
color: var(--ueb-pin-color);
}
.ueb-pin-icon svg {
display: block;
width: 100%;
height: 100%;
}
ueb-pin[data-linked="true"] .ueb-pin-tofill {
fill: currentColor;
}
@@ -77,10 +71,6 @@ ueb-pin[data-linked="true"] .ueb-pin-tofill {
vertical-align: middle;
}
ueb-pin[data-type="exec"] .ueb-pin-name {
display: none;
}
.ueb-zoom--6 .ueb-pin-content {
visibility: hidden;
}