This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


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.

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>


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]