[dpdk-dev] [PATCH 0/3] cross focus in NIC overview HTML table

Thomas Monjalon thomas.monjalon at 6wind.com
Sun Feb 26 17:25:29 CET 2017


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 <ferruh.yigit at intel.com>

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.


More information about the dev mailing list