Skip to content

Commit

Permalink
fix(UI): white background dragging connections inside folder on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio286 committed Dec 2, 2022
1 parent 669d7e8 commit dd971d7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/renderer/components/SettingBarConnectionsFolder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
11 changes: 11 additions & 0 deletions src/renderer/components/TheSettingBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit dd971d7

Please sign in to comment.