From 3522d451df27126684e64e415ae1b4894e153bfb Mon Sep 17 00:00:00 2001 From: Darshil Chanpura Date: Tue, 16 May 2017 08:56:54 +0000 Subject: [PATCH] gui: Added a CSS rule for out of sync items modal Removed text decoration on hover which was shown while hovering on span with eject icon. GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4135 --- gui/default/assets/css/overrides.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gui/default/assets/css/overrides.css b/gui/default/assets/css/overrides.css index 1174d76c5..2d965e0d3 100644 --- a/gui/default/assets/css/overrides.css +++ b/gui/default/assets/css/overrides.css @@ -100,6 +100,11 @@ ul+h5 { white-space: nowrap; } +/* Removing text decoration on anchor link hover pull request: #4135 */ +.table td.small-data span a:hover { + text-decoration: none; +} + table.table-condensed { table-layout: fixed; }