Author: dsahlberg
Date: Sat Jul 25 15:38:25 2026
New Revision: 1936584
Log:
In site/staging:
Make tables overflow and have a horisontal scrollbar on narrow-screen devices.
* docs/release-notes/1.15.html
(#build-system-comparison): Remove explicit style from table and move it...
* style/site.css
(@media screen and (max-width: 815px)): ... here, apply to all tables.
Modified:
subversion/site/staging/docs/release-notes/1.15.html
subversion/site/staging/style/site.css
Modified: subversion/site/staging/docs/release-notes/1.15.html
==============================================================================
--- subversion/site/staging/docs/release-notes/1.15.html Sat Jul 25
15:24:33 2026 (r1936583)
+++ subversion/site/staging/docs/release-notes/1.15.html Sat Jul 25
15:38:25 2026 (r1936584)
@@ -882,7 +882,7 @@ and vcproj build systems as of the 1.15.
<details><summary>Build System Comparison</summary>
-<table style="display: block; max-width: fit-content; margin: 0 auto;
overflow-x: auto; white-space: nowrap">
+<table>
<tr>
<th>Category</th>
<th>Feature</th>
Modified: subversion/site/staging/style/site.css
==============================================================================
--- subversion/site/staging/style/site.css Sat Jul 25 15:24:33 2026
(r1936583)
+++ subversion/site/staging/style/site.css Sat Jul 25 15:38:25 2026
(r1936584)
@@ -13,6 +13,7 @@ img {
border: 0;
}
table {
+ margin-left: 0;
border: 0;
border-collapse: collapse;
}
@@ -135,6 +136,12 @@ pre {
height: 80px;
}
@media screen and (max-width: 815px) {
+ table {
+ display: block;
+ max-width: fit-content;
+ overflow-x: auto;
+ white-space: nowrap;
+ }
#site-nav {
width: 100%;
border-top: solid 10px rgb(147,176,218); /* #93b0da */