From 662216651019160429721a5c8db647bb13c82a1b Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sat, 24 Aug 2024 22:29:54 -0700 Subject: [PATCH] GUACAMOLE-1866: Only show recent connection removal "X" when hovering connection. --- guacamole/src/main/frontend/src/app/home/styles/home.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/guacamole/src/main/frontend/src/app/home/styles/home.css b/guacamole/src/main/frontend/src/app/home/styles/home.css index 3c1cfe69d..5a0d9d216 100644 --- a/guacamole/src/main/frontend/src/app/home/styles/home.css +++ b/guacamole/src/main/frontend/src/app/home/styles/home.css @@ -82,6 +82,14 @@ a.home-connection, .empty.balancer a.home-connection-group { box-shadow: none; } +.recent-connections .connection .remove-recent { + visibility: hidden; +} + +.recent-connections .connection:hover .remove-recent { + visibility: visible; +} + .recent-connections .connection .remove-recent::after { content: ''; display: block;