better ssh connection list management - fixes #1351

This commit is contained in:
Eugene Pankov
2021-04-25 21:06:23 +02:00
parent d32e31d45e
commit 3c6374be19
12 changed files with 111 additions and 38 deletions

View File

@@ -17,6 +17,10 @@ body {
}
.btn {
display: inline-flex;
align-items: center;
flex-wrap: nowrap;
& > svg {
pointer-events: none;
}
@@ -104,3 +108,14 @@ ngb-typeahead-window {
max-height: 60vh;
overflow: auto;
}
.hover-reveal {
opacity: 0;
.hover-reveal-parent:hover &,
*:hover > &,
&:hover {
opacity: 1;
}
}