You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by vv...@apache.org on 2020/08/25 14:57:49 UTC

[kafka-site] branch asf-site updated: KAFKA-10406: Fix text wrapping in config tables (#295)

This is an automated email from the ASF dual-hosted git repository.

vvcephei pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/kafka-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new b626888  KAFKA-10406: Fix text wrapping in config tables (#295)
b626888 is described below

commit b626888e8a3e8b002baafd7f1d3e8ea3ac094d3e
Author: scott-confluent <66...@users.noreply.github.com>
AuthorDate: Tue Aug 25 07:57:39 2020 -0700

    KAFKA-10406: Fix text wrapping in config tables (#295)
    
    Reviewers: John Roesler <vv...@apache.org>
---
 css/styles.css | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/css/styles.css b/css/styles.css
index 28fb94b..3c8113a 100644
--- a/css/styles.css
+++ b/css/styles.css
@@ -329,7 +329,7 @@ ol.toc > li {
     hyphens: none;
 }
 
-table.docutils  {
+.docutils  {
     border-collapse: collapse;
     border-spacing: 0;
     empty-cells: show;
@@ -339,6 +339,11 @@ table.docutils  {
     line-height: 1.8;
 }
 
+.docutils.literal,
+.docutils.literal .pre {
+    overflow-wrap: break-word;
+}
+
 td {
     border: 1px solid #e1e4e5;
     margin: 0;