From patchwork Tue Feb 20 17:30:38 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 35311 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4BBB41B172; Tue, 20 Feb 2018 18:31:08 +0100 (CET) Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id 960CB1B03C; Tue, 20 Feb 2018 18:31:06 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 29C09218EB; Tue, 20 Feb 2018 12:31:06 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Tue, 20 Feb 2018 12:31:06 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:date:from:in-reply-to:message-id:references:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=mesmtp; bh=vk+8HHXpkCrIxq wcmq1qNrttRrMpTlX+nTr2HVx7pGM=; b=niLV73MOEFI26b4eEgNBj/eZepUiW2 fYFkAR+5YezjbToi5Sg8bPbvsFTHObWNJurbNxg1qjdiW2eray1BSOuBiQs8VyAs M4EWTPXFQYKzvCSWffpduBf9jmS6vtsvH7dZ2jM/vrpjjODbNvINggmZeInmiHiB Ll03bBl3dK/Bg= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm2; bh=vk+8HHXpkCrIxqwcmq1qNrttRrMpTlX+nTr2HVx7pGM=; b=kzDFQ/xC 8FNbTkau7ycEsEEoufBUfL5EFrmPH6AWwovku2NR91YV5AFWNtZaTt1bIevb0XaD S694OPFYve3QE8F9hazYPy9C/ro2vXIp5D7wykBIQn/WC+P9iH5cky9mx9KVPDOj /OTiL/QCVQPQJO5qjupm+ptSLeUAlxTjL5quTTNcTFi53FrcPRRUCFUMntoma8Zu GCTaH4281k2tyFYpprHg1oZuTylVf49nfLDwySaif8fSlL3Mcjovu6X6zB4SKbKK W3s4SvuwqGwUFEIL6TG2WwZr6OtKfjRSHWByViKo6uF9qW2Sl2ZOwvTv3zV62kMp xP8+A7azPDenBw== X-ME-Sender: Received: from xps.monjalon.net (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 26FA57E1F4; Tue, 20 Feb 2018 12:31:05 -0500 (EST) From: Thomas Monjalon To: john.mcnamara@intel.com, marko.kovacevic@intel.com Cc: matan@mellanox.com, dev@dpdk.org, stable@dpdk.org Date: Tue, 20 Feb 2018 18:30:38 +0100 Message-Id: <20180220173039.27266-2-thomas@monjalon.net> X-Mailer: git-send-email 2.15.1 In-Reply-To: <20180220173039.27266-1-thomas@monjalon.net> References: <20180220173039.27266-1-thomas@monjalon.net> Subject: [dpdk-dev] [PATCH 1/2] doc: reduce features tables column width 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The font size of the header row is reduced in order to shrink the column size of the tables. It is required for the NICs features table which is too large to fit in the page width. Cc: stable@dpdk.org Signed-off-by: Thomas Monjalon --- doc/guides/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/conf.py b/doc/guides/conf.py index cf06f2572..fc766890f 100644 --- a/doc/guides/conf.py +++ b/doc/guides/conf.py @@ -310,7 +310,7 @@ def print_table_css(outfile, table_id): text-align: center; } table#idx th { - font-size: 80%; + font-size: 72%; white-space: pre-wrap; vertical-align: top; padding: 0.5em 0;