From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH 0/3] cross focus in NIC overview HTML table Date: Sun, 26 Feb 2017 17:25:29 +0100 Message-ID: <1510158.7DWr48y1vY@xps13> References: <1487625998-8040-1-git-send-email-thomas.monjalon@6wind.com> <4ab13054-d072-f0da-786e-481f132ab76c@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org To: Ferruh Yigit , john.mcnamara@intel.com Return-path: Received: from mail-wr0-f170.google.com (mail-wr0-f170.google.com [209.85.128.170]) by dpdk.org (Postfix) with ESMTP id 43C8A2C23 for ; Sun, 26 Feb 2017 17:25:33 +0100 (CET) Received: by mail-wr0-f170.google.com with SMTP id g10so38183869wrg.2 for ; Sun, 26 Feb 2017 08:25:33 -0800 (PST) In-Reply-To: <4ab13054-d072-f0da-786e-481f132ab76c@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 2017-02-23 11:00, Ferruh Yigit: > 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 Applied, see it online: http://dpdk.org/doc/guides/nics/overview.html#id1 > > 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. Yes I feel we need a CSS/Javascript expert to go further.