From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 527E75598 for ; Thu, 23 Feb 2017 12:00:43 +0100 (CET) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Feb 2017 03:00:42 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.35,197,1484035200"; d="scan'208";a="228773610" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.137]) ([10.237.220.137]) by fmsmga004.fm.intel.com with ESMTP; 23 Feb 2017 03:00:41 -0800 To: Thomas Monjalon , dev@dpdk.org References: <1487625998-8040-1-git-send-email-thomas.monjalon@6wind.com> From: Ferruh Yigit Message-ID: <4ab13054-d072-f0da-786e-481f132ab76c@intel.com> Date: Thu, 23 Feb 2017 11:00:40 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.7.1 MIME-Version: 1.0 In-Reply-To: <1487625998-8040-1-git-send-email-thomas.monjalon@6wind.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH 0/3] cross focus in NIC overview HTML table X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Feb 2017 11:00:43 -0000 On 2/20/2017 9:26 PM, Thomas Monjalon wrote: > In order to make the NIC overview easier to read > (http://dpdk.org/doc/guides/nics/overview.html) > the row and column pointed by the mouse are highlighted. > > Thomas Monjalon (3): > doc: set alignments in NIC overview table > doc: highlight pointed row in NIC overview table > doc: highlight pointed column in NIC overview table Series Acked-by: Ferruh Yigit <...> > A next step could be to highlight every implemented features when > pointing a driver, or every drivers implenting a pointed feature. > The latter could be done by this patch: > > table#id1 th:not(:first-child):hover::after, > - table#id1 td:not(:first-child):hover::after { > + table#id1 td:not(:first-child):hover::after, > + table#id1 td:first-child:hover ~ td:not(:empty)::after { > content: ''; > height: 6000px; > top: -3000px; > > Unfortunately, I cannot make it work, probably because the cells are not > really empty. A javascript function could help to trim the cells. > Any help to implement this next step would be welcome. Overall I agree that some readability improvements would be good for NIC overview table.