From mboxrd@z Thu Jan 1 00:00:00 1970 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) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=1qmf05Dp+XOTtyU1fF6YmLyOsIrLQStzim9s8tq+Ix0=; b=lgReQvZ1UR7Q/bZ4/5LjKHAwutCnkefdCX2hcoItv4N2c2juUrx1mm3Fmgh+vHHai+ fvZPQGQz8UA6rDnXdK0x54cNqMm+fYnMrec9FAAH1cifBBfxTU1rwpYV+GP0yoRX3tQF Qs2pM5sGvyC+b8jeeyeZRg245DuqifBNJFTY2oTR2gv2oyMzwnaVuDMNw/yIpgAJIsAW ghXvGUds7rZlx43eTMvZwm9ULdmFfKPo6poSlYSaf25M6osLFl51/y7Ten0sd2Unl5ES 6auJbk72A1DvGU9nA1+53skLsg02uPAvHt5892ffHihLc4Y2kWMfks8tB2S9xtTq5d6Y lH1A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=1qmf05Dp+XOTtyU1fF6YmLyOsIrLQStzim9s8tq+Ix0=; b=QX1AHe853w4HnM3rbO5huQOixR8MgTGkhM2Ifr1nGTMJzIZBfIdTVjYsuKYhXIgbKO 74a2+UaWa3cr+vS+9x8O1PcE+qe5TliWy6T0vEkD2IJ1ia3WR/LNeilhXqUvjSrXON5B WdlANHoWdFnIj40iQKR6S6gWPuXFLg6VW4IQ2GPmQdmqhDHjgJeL7TkD55en40JePqV9 wGRyX3u8qi6KldMxRgvMPhxGVmVRcVc5NxK8qsVhmBF3n/BPbYHw7uBpZEHuOiNQ+LAX yQjIAcscQ44kvFNyr2VfbpLhKDAveJBy5Eu7CuPJzJJiYCi56cB03UnelYLMGsQRCDE0 ybRQ== X-Gm-Message-State: AMke39lRlEPIRUAMfzudfzj9UwL3JrJ9Vnz1yhmVCLv9Sxk7gIRtm9SkUhSAeXBiJwg1IN3J X-Received: by 10.223.146.34 with SMTP id 31mr10899745wrj.44.1488126332793; Sun, 26 Feb 2017 08:25:32 -0800 (PST) Received: from xps13.localnet (163.21.90.92.rev.sfr.net. [92.90.21.163]) by smtp.gmail.com with ESMTPSA id w204sm10730257wmd.17.2017.02.26.08.25.31 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 26 Feb 2017 08:25:31 -0800 (PST) From: Thomas Monjalon To: Ferruh Yigit , john.mcnamara@intel.com Cc: dev@dpdk.org Date: Sun, 26 Feb 2017 17:25:29 +0100 Message-ID: <1510158.7DWr48y1vY@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <4ab13054-d072-f0da-786e-481f132ab76c@intel.com> References: <1487625998-8040-1-git-send-email-thomas.monjalon@6wind.com> <4ab13054-d072-f0da-786e-481f132ab76c@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" 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: Sun, 26 Feb 2017 16:25:33 -0000 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.