From 36b8498f5ab4bf5d23673dd15e7a46283506a8a0 Mon Sep 17 00:00:00 2001 From: Oliver Gorwits Date: Sun, 22 Jan 2012 17:20:54 +0000 Subject: [PATCH] fix sweep icon height to fill field space --- Netdisco/public/css/style.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Netdisco/public/css/style.css b/Netdisco/public/css/style.css index 004ac7c2..da023bcb 100644 --- a/Netdisco/public/css/style.css +++ b/Netdisco/public/css/style.css @@ -199,7 +199,12 @@ h3.device_label { /* little sweep brush inside of port filter input field */ .field_clear_icon { position: absolute; - margin-left: 137px; - margin-top: 6px; + margin-left: 132px; z-index: 1; } + +/* make the sweep icon fill the height of the input field +so that its tooltip takes prescedence over the field tooltip */ +.field_clear_icon > img { + padding: 6px; +}