fix(UI): white background dragging connections inside folder on Linux

This commit is contained in:
Fabio Di Stasio 2022-12-02 09:38:40 +01:00
parent 669d7e8d4d
commit dd971d70e0
2 changed files with 19 additions and 0 deletions

View File

@ -258,6 +258,14 @@ emit('folder-sort');// To apply changes on component key change
max-height: initial;
background: transparent;
&.ghost {
background: $bg-color-light-dark;
&.selected::before {
height: 0;
position: absolute;
}
}
&.selected {
opacity: 1;

View File

@ -191,6 +191,17 @@ if (!connectionsArr.value.length)
li {
margin: 0;
background: $bg-color-light-dark;
&.ghost {
border-radius: $border-radius;
.settingbar-element {
&.selected::before {
height: 0;
width: 0;
}
}
}
}
.settingbar-element {