Re: svn commit: r1936515 - subversion/site/staging/docs/release-notes
Branko Čibej <[email protected]>
| Newsgroups | gmane.comp.version-control.subversion.devel |
|---|---|
| Organization | The Apache Software Foundation |
| Message-ID | <[email protected]> |
On 23. 7. 2026 10:59, [email protected] wrote: > Author: dsahlberg > Date: Thu Jul 23 08:59:43 2026 > New Revision: 1936515 > > Log: > In site/staging: > > * docs/release-notes/1.15.html > (#build-system-comparison): Try to add a horizontal scrollbar to the table > instead of resizing the whole page on narrow-width screens. > > Modified: > subversion/site/staging/docs/release-notes/1.15.html > > Modified: subversion/site/staging/docs/release-notes/1.15.html > ============================================================================== > --- subversion/site/staging/docs/release-notes/1.15.html Thu Jul 23 08:30:15 2026 (r1936514) > +++ subversion/site/staging/docs/release-notes/1.15.html Thu Jul 23 08:59:43 2026 (r1936515) > @@ -882,7 +882,7 @@ and vcproj build systems as of the 1.15. > > <details><summary>Build System Comparison</summary> > > -<table border="1"> > +<table border="1" style="display: block; max-width: fit-content; margin: 0 auto; overflow-x: auto; white-space: nowrap"> Ideally all of the "style" attribute should be defined in CSS. It's quite frowned upon to inline style like this. Give the table a class, then maybe the alignment can be solved in CSS, too. -- Brane