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]

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


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; }
 


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