update line height, fix icon bug

This commit is contained in:
Mutasem 2021-08-02 22:34:38 +02:00
parent d30e9b01c0
commit c4eff3c7e1
4 changed files with 7 additions and 7 deletions

View file

@ -184,6 +184,7 @@ export default mixins(externalHooks, nodeBase, nodeHelpers, workflowHelpers).ext
height: 100px; height: 100px;
.node-description { .node-description {
line-height: 1.5;
position: absolute; position: absolute;
bottom: -55px; bottom: -55px;
left: -50px; left: -50px;
@ -273,7 +274,7 @@ export default mixins(externalHooks, nodeBase, nodeHelpers, workflowHelpers).ext
.node-info-icon { .node-info-icon {
position: absolute; position: absolute;
top: -18px; top: -14px;
right: 12px; right: 12px;
z-index: 10; z-index: 10;

View file

@ -210,6 +210,7 @@ export default mixins(
} }
.webhook-wrapper { .webhook-wrapper {
line-height: 1.5;
position: relative; position: relative;
margin: 1em 0 0.5em 0; margin: 1em 0 0.5em 0;
background-color: #fff; background-color: #fff;

View file

@ -80,12 +80,7 @@ export default Vue
.parameter-info { .parameter-info {
background-color: #ffffffaa; background-color: #ffffffaa;
border-radius: 6px;
display: none; display: none;
padding: 4px;
position: absolute;
right: 0px;
top: 8px;
} }
.parameter-name { .parameter-name {
@ -93,7 +88,7 @@ export default Vue
&:hover { &:hover {
.parameter-info { .parameter-info {
display: inline; display: inline-block;
} }
} }

View file

@ -649,6 +649,7 @@ export default mixins(
left: 0; left: 0;
right: 0; right: 0;
overflow-y: auto; overflow-y: auto;
line-height: 1.5;
.binary-data-row { .binary-data-row {
display: inline-flex; display: inline-flex;
@ -713,6 +714,8 @@ export default mixins(
} }
.json-data { .json-data {
line-height: 1.5;
&.vjs-tree { &.vjs-tree {
color: $--custom-input-font; color: $--custom-input-font;
} }