All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] cross focus in NIC overview HTML table
@ 2017-02-20 21:26 Thomas Monjalon
  2017-02-20 21:26 ` [PATCH 1/3] doc: set alignments in NIC overview table Thomas Monjalon
                   ` (3 more replies)
  0 siblings, 4 replies; 11+ messages in thread
From: Thomas Monjalon @ 2017-02-20 21:26 UTC (permalink / raw)
  To: dev

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

 doc/guides/nics/overview.rst | 33 ++++++++++++++++++++++++++++++++-
 1 file changed, 32 insertions(+), 1 deletion(-)


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.

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2017-02-26 16:25 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-20 21:26 [PATCH 0/3] cross focus in NIC overview HTML table Thomas Monjalon
2017-02-20 21:26 ` [PATCH 1/3] doc: set alignments in NIC overview table Thomas Monjalon
2017-02-23 12:47   ` Mcnamara, John
2017-02-23 12:51   ` Mcnamara, John
2017-02-24 13:16     ` Thomas Monjalon
2017-02-20 21:26 ` [PATCH 2/3] doc: highlight pointed row " Thomas Monjalon
2017-02-23 12:47   ` Mcnamara, John
2017-02-20 21:26 ` [PATCH 3/3] doc: highlight pointed column " Thomas Monjalon
2017-02-23 12:48   ` Mcnamara, John
2017-02-23 11:00 ` [PATCH 0/3] cross focus in NIC overview HTML table Ferruh Yigit
2017-02-26 16:25   ` Thomas Monjalon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.