This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [wwwdocs] [1/3] projects/cxx-status.html -- introduce global CSS for tables
- From: Gerald Pfeifer <gerald at pfeifer dot com>
- To: gcc-patches at gcc dot gnu dot org
- Cc: Jason Merrill <jason at redhat dot com>
- Date: Tue, 5 Apr 2016 21:23:05 +0500 (MVT)
- Subject: Re: [wwwdocs] [1/3] projects/cxx-status.html -- introduce global CSS for tables
- Authentication-results: sourceware.org; auth=none
- References: <alpine dot LSU dot 2 dot 20 dot 1604021441201 dot 9804 at anthias dot pfeifer dot com>
On Sat, 2 Apr 2016, Gerald Pfeifer wrote:
> Index: gcc.css
> ===================================================================
:
> +/* C++ status tables. */
> +table.cxxstatus th, td { border: 1px solid gray; }
Intuition is not always a good guide. The above applied this
style to all <td> elements. Fixed thusly.
Gerald
Index: gcc.css
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc.css,v
retrieving revision 1.37
diff -u -r1.37 gcc.css
--- gcc.css 4 Apr 2016 04:50:04 -0000 1.37
+++ gcc.css 5 Apr 2016 16:18:29 -0000
@@ -65,7 +65,7 @@
blockquote.mail div:nth-child(2) { border-left: solid blue; padding-left: 4pt; }
/* C++ status tables. */
-table.cxxstatus th, td { border: 1px solid gray; }
+table.cxxstatus th, table.cxxstatus td { border: 1px solid gray; }
table.cxxstatus td:nth-child(3) { text-align:center; }
table.cxxstatus tr.separator { background: #f2f2f9; }