Fix scrolling scale, other knot style fixes

This commit is contained in:
barsdeveloper
2023-01-21 15:51:47 +01:00
parent efe560adda
commit a17bbeb2de
15 changed files with 238 additions and 84 deletions

View File

@@ -31,8 +31,6 @@ ueb-node[data-advanced-display="Hidden"] ueb-pin[data-advanced-view="true"] {
.ueb-pin-wrapper {
display: inline-block;
margin: 4px 0 0 0;
padding: 2px 2px;
&>* {
display: inline-block;
@@ -40,6 +38,15 @@ ueb-node[data-advanced-display="Hidden"] ueb-pin[data-advanced-view="true"] {
}
}
.ueb-node-top .ueb-pin-wrapper {
padding: 2px 4px 2px 10px;
}
.ueb-node-content .ueb-pin-wrapper {
margin: 4px 0 0 0;
padding: 2px 2px;
}
ueb-blueprint[data-scrolling="false"][data-selecting="false"] .ueb-pin-wrapper:hover {
background: var(--ueb-pin-background);
cursor: crosshair;
@@ -60,6 +67,11 @@ ueb-blueprint[data-scrolling="false"][data-selecting="false"] .ueb-pin-wrapper:h
text-align: left;
}
.ueb-node-style-event ueb-pin[data-type="delegate"] .ueb-pin-icon {
width: 11px;
height: 11px;
}
.ueb-node-inputs .ueb-pin-icon {
margin-right: 4px;
}
@@ -68,6 +80,11 @@ ueb-blueprint[data-scrolling="false"][data-selecting="false"] .ueb-pin-wrapper:h
margin-left: 4px;
}
ueb-node.ueb-node-style-minimal .ueb-pin-wrapper,
ueb-node.ueb-node-style-minimal .ueb-pin-icon {
display: block;
}
.ueb-pin-icon>svg {
vertical-align: top;
}
@@ -181,7 +198,3 @@ ueb-pin[data-type="/Script/CoreUObject.LinearColor"] .ueb-pin-input {
background: #575757;
}
}
ueb-blueprint[data-scrolling="false"][data-selecting="false"] .ueb-node-wrapper {
cursor: move;
}