From patchwork Sat Apr 2 13:46:32 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerald Pfeifer X-Patchwork-Id: 605413 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3qcfgG17pxz9s6r for ; Sun, 3 Apr 2016 00:46:48 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=QPYWz8xw; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:in-reply-to:message-id:references:mime-version :content-type; q=dns; s=default; b=hDbCC59rfScOrdgZDok3leFRr5tLb nVleJlNepyAi+abe0c2RqQmw8KAsqQ0kaW3eYxPkesLLP8+lgx5/bIYfRxkLs00M FJMcAHTAzFhHijtpnJQ+JkoLd1O5PTXCUivr2cqJTEwl2vrJJPYNSizmJMArZ9me MZKH2SxxSR+Yi8= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:in-reply-to:message-id:references:mime-version :content-type; s=default; bh=NWUicsu5ZKGHOjXxYoZE0ujZvMs=; b=QPY Wz8xwTYeWANSbHAx2Qz+LYlhLGHpOwYPcn9L+8aLJlGgXIcDPaUn9ipKZTHre40C K0S098sYRTwktiKyh0dx7m4sXCneOWwhmUPt43M93B+HZQbxFEQLe37M4SkorTkI YAzZ2ED7gvyqCp/V4z6AhXl4dlotp8lgxxGiSNQ0= Received: (qmail 25485 invoked by alias); 2 Apr 2016 13:46:42 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 25468 invoked by uid 89); 2 Apr 2016 13:46:41 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=1.6 required=5.0 tests=BAYES_50, KAM_ASCII_DIVIDERS, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=no version=3.3.2 spammy=gray, cells, tablecxxstatus, versus X-HELO: ainaz.pair.com Received: from ainaz.pair.com (HELO ainaz.pair.com) (209.68.2.66) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Sat, 02 Apr 2016 13:46:40 +0000 Received: from anthias (unknown [27.114.165.254]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ainaz.pair.com (Postfix) with ESMTPSA id EAFF63F423; Sat, 2 Apr 2016 09:46:36 -0400 (EDT) Date: Sat, 2 Apr 2016 18:46:32 +0500 (MVT) From: Gerald Pfeifer To: gcc-patches@gcc.gnu.org, Jason Merrill Subject: [wwwdocs] [3/3] projects/cxx-status.html -- introduce global CSS for tables In-Reply-To: Message-ID: References: MIME-Version: 1.0 X-IsSubscribed: yes 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 @@