From: John Haugabook <[email protected]>
Sorry, this is a follow-up to the May 8th, 2026 patch series, sending an updated
revision of the responsive-styling patch only. All other patches in that
series are unchanged.
What changed since the prior submission:
- The responsive section removed and added (cut/paste) 2 rules to last `@media
(max-width: 800px)` CSS query:
```
/* Cells: allow word breaking so long URLs in cells don't force the table
wide */
table td, table th
{
overflow-wrap: anywhere;
word-break: break-word;
}
/* Long URLs / unbroken strings should wrap rather than overflow */
p, li, dd, dt, td, th, figcaption, blockquote
{
overflow-wrap: anywhere;
word-break: break-word;
}
```
Previously this caused some section numbering to stack, or block-wrap the
numbering.
They were removed, and placed in the `@media (max-width: 800px)` CSS media
query. This
is to allow for responisve tables.
The HTML side of the patch (switching pages over to the shared
`head.html` include and adding the hamburger markup in `navbar.html`)
is unchanged from the prior submission.
This single patch supersedes the prior `0006-responsive-styling.patch`
in the May 8th series.
John Haugabook (1):
responsive: add responsive style section, update html to `head.html`
template
acronyms/index.html | 3 +-
contrib.html | 3 +-
contrib/dll.html | 3 +-
cygwin-api.html | 3 +-
cygwin-api/index.html | 3 +-
cygwin-ug-net.html | 3 +-
docs.html | 3 +-
donations.html | 3 +-
faq.html | 3 +-
git.html | 3 +-
goldstars/index.html | 3 +-
goldstars/src/index.html.tpl | 3 +-
head.html | 3 +
index.html | 3 +-
install.html | 3 +-
irc.html | 3 +-
licensing.html | 3 +-
links.html | 3 +-
lists.html | 3 +-
mirrors-report.html | 3 +-
mirrors.html | 3 +-
navbar.html | 7 +
news.html | 3 +-
package-server.html | 3 +-
package-upload.html | 3 +-
packages.html | 3 +-
packages/index.html | 3 +-
packages/package_docs.html | 3 +-
packages/package_list.html | 3 +-
packages/src_package_list.html | 3 +-
packaging-contributors-guide.html | 3 +-
packaging-hint-files.html | 3 +-
packaging-package-files.html | 3 +-
packaging/build.html | 3 +-
packaging/cygport_tips.html | 3 +-
packaging/key.html | 3 +-
packaging/repos.html | 3 +-
.../trusted-maintainer-policy-manual.html | 3 +-
problems.html | 3 +-
profiling/index.html | 1 +
setup-packaging-historical.html | 3 +-
snapshots/index.html | 3 +-
style.css | 249 ++++++++++++++++++
who.html | 3 +-
44 files changed, 300 insertions(+), 80 deletions(-)
create mode 100644 head.html
--
2.49.0.windows.1