doc: set alignments in NIC overview table
authorThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 18 Apr 2016 12:28:25 +0000 (14:28 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Sun, 26 Feb 2017 16:19:44 +0000 (17:19 +0100)
Some CSS alignments were not explicitly set.
The pointer is also set to default for the table.

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
Acked-by: John McNamara <john.mcnamara@intel.com>
doc/guides/nics/overview.rst

index 2c7f5eb..3b733f7 100644 (file)
@@ -53,10 +53,15 @@ Most of these differences are summarized below.
 .. raw:: html
 
    <style>
+      table#id1 {
+         cursor: default;
+      }
+      table#id1 th, table#id1 td {
+         text-align: center;
+      }
       table#id1 th {
          font-size: 80%;
          white-space: pre-wrap;
-         text-align: center;
          vertical-align: top;
          padding: 2px;
       }
@@ -69,6 +74,7 @@ Most of these differences are summarized below.
       }
       table#id1 td:first-child {
          padding-left: 1em;
+         text-align: left;
       }
    </style>