Return-Path: X-Original-To: apmail-climate-commits-archive@minotaur.apache.org Delivered-To: apmail-climate-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C75A710013 for ; Tue, 9 Jul 2013 21:21:12 +0000 (UTC) Received: (qmail 13483 invoked by uid 500); 9 Jul 2013 21:21:12 -0000 Delivered-To: apmail-climate-commits-archive@climate.apache.org Received: (qmail 13457 invoked by uid 500); 9 Jul 2013 21:21:12 -0000 Mailing-List: contact commits-help@climate.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@climate.incubator.apache.org Delivered-To: mailing list commits@climate.incubator.apache.org Received: (qmail 13450 invoked by uid 99); 9 Jul 2013 21:21:12 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jul 2013 21:21:12 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jul 2013 21:21:10 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id A0CE023888CD; Tue, 9 Jul 2013 21:20:49 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1501556 - /incubator/climate/trunk/rcmet/src/main/ui/app/css/app.css Date: Tue, 09 Jul 2013 21:20:49 -0000 To: commits@climate.incubator.apache.org From: joyce@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130709212049.A0CE023888CD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: joyce Date: Tue Jul 9 21:20:49 2013 New Revision: 1501556 URL: http://svn.apache.org/r1501556 Log: CLIMATE-182 - Fix grayed out modal buttons - Override the default .close class provided by bootstrap when inside of .modal-header and .modal-footer so the opacity can be customized without affecting other functionality. - Set .close buttons to have full opacity in the header and footer of modals. Modified: incubator/climate/trunk/rcmet/src/main/ui/app/css/app.css Modified: incubator/climate/trunk/rcmet/src/main/ui/app/css/app.css URL: http://svn.apache.org/viewvc/incubator/climate/trunk/rcmet/src/main/ui/app/css/app.css?rev=1501556&r1=1501555&r2=1501556&view=diff ============================================================================== --- incubator/climate/trunk/rcmet/src/main/ui/app/css/app.css (original) +++ incubator/climate/trunk/rcmet/src/main/ui/app/css/app.css Tue Jul 9 21:20:49 2013 @@ -54,6 +54,16 @@ ul .no-color-link:visited {color:#000000;} .no-color-link:active {color:#000000;} +/* Remove the grayed out close button in modal headers */ +.modal-header .close { + opacity: 1; +} + +/* Remove the grayed out close button in modal footers */ +.modal-footer .close { + opacity: 1; +} + /** * Timeline */