Links improved, refactoring

This commit is contained in:
barsdeveloper
2022-02-27 11:54:40 +01:00
parent d2f7de4f88
commit 96f0d593e7
23 changed files with 554 additions and 299 deletions

View File

@@ -1,6 +1,8 @@
.ueb {
$ueb-node-value-color : white;
--ueb-node-value-color: #{$ueb-node-value-color};
$ueb-node-value-color : white;
$ueb-node-value-dim-color : #afafaf;
--ueb-node-value-color : #{$ueb-node-value-color};
--ueb-node-value-dim-color: #{$ueb-node-value-dim-color};
}
.ueb-node-value-boolean {

View File

@@ -462,4 +462,17 @@ ueb-link svg path {
ueb-link svg path:hover {
stroke-width: 5;
}
ueb-link-message {
display : block;
position : absolute;
left : calc(var(--ueb-start-percentage) + 15px);
bottom : -42px;
border : 1px solid #000;
padding : 4px 8px;
border-radius: 2px;
background : linear-gradient(to bottom, #2a2a2a 0, #151515 50%, #2a2a2a 100%);
color : var(--ueb-node-value-dim-color);
white-space : nowrap;
}