diff mbox

[wwwdocs,3/3] projects/cxx-status.html -- introduce global CSS for tables

Message ID alpine.LSU.2.20.1604021839000.9804@anthias.pfeifer.com
State New
Headers show

Commit Message

Gerald Pfeifer April 2, 2016, 1:46 p.m. UTC
And with this, colors are back again, and we nearly are done.

Jason, I suggest to color the cells instead of just the font,
alas with a lighter color, and committed this per the patch
below.  

If you'd like to make this look exactly the same as it used to, 
we can of course.

Gerald


Move color styles for "supported" and "unsupported" to global
stylesheet.  Change from text colors to lighter background colors.
diff mbox

Patch

Index: gcc.css
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc.css,v
retrieving revision 1.35
diff -u -r1.35 gcc.css
--- gcc.css	2 Apr 2016 10:39:24 -0000	1.35
+++ gcc.css	2 Apr 2016 13:40:40 -0000
@@ -67,6 +67,9 @@ 
 /* C++ status tables. */
 table.cxxstatus th, td { border: 1px solid gray; }
 table.cxxstatus td:nth-child(3) { text-align:center; }
+.supported   { background-color: lightgreen; }
+.unsupported { background-color: lightsalmon; }
 
 /* Classpath versus libgcj merge status page. */
 
Index: projects/cxx-status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/cxx-status.html,v
retrieving revision 1.5
diff -u -r1.5 cxx-status.html
--- projects/cxx-status.html	2 Apr 2016 10:45:24 -0000	1.5
+++ projects/cxx-status.html	2 Apr 2016 13:40:41 -0000
@@ -4,8 +4,6 @@ 
     <style type="text/css">
       /* <![CDATA[*/
         tr.separator { background: #ffffcc}
-        .supported { color: green }
-        .unsupported { color: red }
       /* ]]> */
     </style>
 </head>