Miles Libbey created TS-3373:
--------------------------------
Summary: Table formatting hides large amounts of text
Key: TS-3373
URL: https://issues.apache.org/jira/browse/TS-3373
Project: Traffic Server
Issue Type: Bug
Components: Documentation
Reporter: Miles Libbey
In the documentation, we have many instances of tables containing descriptive
text. The Sphinx theme forces the text to be on a single line, and makes the
user horizontally scroll to see the sentence:
https://docs.trafficserver.apache.org/en/latest/arch/cache/ram-cache.en.html
https://docs.trafficserver.apache.org/en/latest/admin/working-log-files.en.html#squid-log-file-format
etc
I believe the offending CSS is:
.wy-table-responsive table td, .wy-table-responsive table th {
white-space: nowrap;
}
(overriding this would be something like
.wy-table-responsive table td, .wy-table-responsive table th {
white-space: initial;
}
though depending how its implemented, might need the !important rule:
.wy-table-responsive table td, .wy-table-responsive table th {
white-space: initial !important;
}
)
I don't get how we can set custom styles in our current documentation structure.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)