svn commit: r1928590 - in apr/site/branches/new-logo: docs xdocs

[email protected]
Newsgroups gmane.comp.apache.apr.cvs
Message-ID <175819144014.3578962.6550339766241987400@svn02-us-east.apache.org>
Author: brane
Date: Thu Sep 18 10:30:39 2025
New Revision: 1928590

Log:
On the new-logo branch, colorize borders and make the versions table more readable.

Modified:
   apr/site/branches/new-logo/docs/style.css
   apr/site/branches/new-logo/docs/versioning.html
   apr/site/branches/new-logo/xdocs/versioning.xml

Modified: apr/site/branches/new-logo/docs/style.css
==============================================================================
--- apr/site/branches/new-logo/docs/style.css	Thu Sep 18 10:18:32 2025	(r1928589)
+++ apr/site/branches/new-logo/docs/style.css	Thu Sep 18 10:30:39 2025	(r1928590)
@@ -18,6 +18,7 @@
   --apr-bg-h2: var(--asf-color-lightblue);
   --apr-fg-h2: var(--apr-fg);
   --apr-bg-logo: var(--asf-color-navy);
+  --apr-fg-border: var(--asf-color-navy);
 
   /* Dimensions */
   --apr-site-nav-width: 15em;
@@ -54,11 +55,12 @@ a {
 }
 p.note {
   border-style: double;
+  border-color: var(--apr-fg-border);
   padding: 0.5em;
 }
 
 table, th, td {
-  border: 2px solid var(--apr-bg-h2);
+  border: 1px solid var(--apr-fg-border);
 }
 table {
   width: 100%;
@@ -74,8 +76,18 @@ th {
   text-align: left;
 }
 td {
-  padding: 0.25em;
-  padding-left: 0.5em;
+  padding: 0.25em 0.25em 0.25em 0.5em;
+}
+td.yesno {
+  border-right: none;
+  padding-right: 0px;
+}
+td.semver {
+  border-left: none;
+  padding-left: 0px;
+}
+td.semver:before {
+  content: '\2013\20';           /* n-dash, space */
 }
 td > ul {
   margin-block-start: 0px;

Modified: apr/site/branches/new-logo/docs/versioning.html
==============================================================================
--- apr/site/branches/new-logo/docs/versioning.html	Thu Sep 18 10:18:32 2025	(r1928589)
+++ apr/site/branches/new-logo/docs/versioning.html	Thu Sep 18 10:30:39 2025	(r1928590)
@@ -140,38 +140,38 @@ will not be able to successfully link ag
   <tr>
     <td>2.2.3</td>
     <td>2.2.4</td>
-    <td>Yes</td>
-    <td>Compatibility across patch versions is guaranteed.</td>
+    <td class="yesno">Yes</td>
+    <td class="semver">Compatibility across patch versions is guaranteed.</td>
   </tr>
   <tr>
     <td>2.2.3</td>
     <td>2.2.1</td>
-    <td>Yes</td>
-    <td>Compatibility across patch versions is guaranteed.</td>
+    <td class="yesno">Yes</td>
+    <td class="semver">Compatibility across patch versions is guaranteed.</td>
   </tr>
   <tr>
     <td>2.2.3</td>
     <td>2.3.1</td>
-    <td>Yes</td>
-    <td>Compatibility with later minor versions is guaranteed.</td>
+    <td class="yesno">Yes</td>
+    <td class="semver">Compatibility with later minor versions is guaranteed.</td>
   </tr>
   <tr>
     <td>2.2.3</td>
     <td>2.1.7</td>
-    <td>No</td>
-    <td>Compatibility with prior minor versions is not guaranteed.</td>
+    <td class="yesno">No</td>
+    <td class="semver">Compatibility with prior minor versions is not guaranteed.</td>
   </tr>
   <tr>
     <td>2.2.3</td>
     <td>3.0.0</td>
-    <td>No</td>
-    <td>Compatibility with different major versions is not guaranteed.</td>
+    <td class="yesno">No</td>
+    <td class="semver">Compatibility with different major versions is not guaranteed.</td>
   </tr>
   <tr>
     <td>2.2.3</td>
     <td>1.4.7</td>
-    <td>No</td>
-    <td>Compatibility with different major versions is not guaranteed.</td>
+    <td class="yesno">No</td>
+    <td class="semver">Compatibility with different major versions is not guaranteed.</td>
   </tr>
 </table>
 <p>Note: while some of the cells say "no", it is <em>possible</em> that

Modified: apr/site/branches/new-logo/xdocs/versioning.xml
==============================================================================
--- apr/site/branches/new-logo/xdocs/versioning.xml	Thu Sep 18 10:18:32 2025	(r1928589)
+++ apr/site/branches/new-logo/xdocs/versioning.xml	Thu Sep 18 10:30:39 2025	(r1928590)
@@ -90,38 +90,38 @@ will not be able to successfully link ag
   <tr>
     <td>2.2.3</td>
     <td>2.2.4</td>
-    <td>Yes</td>
-    <td>Compatibility across patch versions is guaranteed.</td>
+    <td class="yesno">Yes</td>
+    <td class="semver">Compatibility across patch versions is guaranteed.</td>
   </tr>
   <tr>
     <td>2.2.3</td>
     <td>2.2.1</td>
-    <td>Yes</td>
-    <td>Compatibility across patch versions is guaranteed.</td>
+    <td class="yesno">Yes</td>
+    <td class="semver">Compatibility across patch versions is guaranteed.</td>
   </tr>
   <tr>
     <td>2.2.3</td>
     <td>2.3.1</td>
-    <td>Yes</td>
-    <td>Compatibility with later minor versions is guaranteed.</td>
+    <td class="yesno">Yes</td>
+    <td class="semver">Compatibility with later minor versions is guaranteed.</td>
   </tr>
   <tr>
     <td>2.2.3</td>
     <td>2.1.7</td>
-    <td>No</td>
-    <td>Compatibility with prior minor versions is not guaranteed.</td>
+    <td class="yesno">No</td>
+    <td class="semver">Compatibility with prior minor versions is not guaranteed.</td>
   </tr>
   <tr>
     <td>2.2.3</td>
     <td>3.0.0</td>
-    <td>No</td>
-    <td>Compatibility with different major versions is not guaranteed.</td>
+    <td class="yesno">No</td>
+    <td class="semver">Compatibility with different major versions is not guaranteed.</td>
   </tr>
   <tr>
     <td>2.2.3</td>
     <td>1.4.7</td>
-    <td>No</td>
-    <td>Compatibility with different major versions is not guaranteed.</td>
+    <td class="yesno">No</td>
+    <td class="semver">Compatibility with different major versions is not guaranteed.</td>
   </tr>
 </table>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.