From patchwork Fri Aug 19 04:21:14 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3532 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id DC03D23E54 for ; Fri, 19 Aug 2011 04:21:17 +0000 (UTC) Received: from mail-yx0-f180.google.com (mail-yx0-f180.google.com [209.85.213.180]) by fiordland.canonical.com (Postfix) with ESMTP id 8E1D9A183CE for ; Fri, 19 Aug 2011 04:21:17 +0000 (UTC) Received: by yxi11 with SMTP id 11so2806568yxi.11 for ; Thu, 18 Aug 2011 21:21:17 -0700 (PDT) Received: by 10.151.21.21 with SMTP id y21mr1594373ybi.447.1313727676942; Thu, 18 Aug 2011 21:21:16 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.150.157.17 with SMTP id f17cs81944ybe; Thu, 18 Aug 2011 21:21:16 -0700 (PDT) Received: by 10.216.179.193 with SMTP id h43mr24922wem.110.1313727675426; Thu, 18 Aug 2011 21:21:15 -0700 (PDT) Received: from indium.canonical.com (indium.canonical.com [91.189.90.7]) by mx.google.com with ESMTPS id z44si5464438wec.12.2011.08.18.21.21.14 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 18 Aug 2011 21:21:15 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) client-ip=91.189.90.7; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) smtp.mail=bounces@canonical.com Received: from ackee.canonical.com ([91.189.89.26]) by indium.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1QuGa2-0000M5-4S for ; Fri, 19 Aug 2011 04:21:14 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id 13FEEE0444 for ; Fri, 19 Aug 2011 04:21:14 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-server X-Launchpad-Branch: ~linaro-validation/lava-server/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 223 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-server/trunk] Rev 223: Provide a more useful footer Message-Id: <20110819042114.16581.66070.launchpad@ackee.canonical.com> Date: Fri, 19 Aug 2011 04:21:14 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13697"; Instance="initZopeless config overlay" X-Launchpad-Hash: 18e0c6aaa7c80f43afc5dc493f8a221545e84645 ------------------------------------------------------------ revno: 223 committer: Zygmunt Krynicki branch nick: pristine timestamp: Sat 2011-08-13 02:26:55 +0200 message: Provide a more useful footer This new footer has five sections: * report a bug * documentation * source code * web standards * licensing and copyright. Each section acts like an accordion would but with a nicer UI. modified: lava_server/htdocs/css/default.css lava_server/templates/layouts/content.html --- lp:lava-server https://code.launchpad.net/~linaro-validation/lava-server/trunk You are subscribed to branch lp:lava-server. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-server/trunk/+edit-subscription === modified file 'lava_server/htdocs/css/default.css' --- lava_server/htdocs/css/default.css 2011-07-25 23:18:01 +0000 +++ lava_server/htdocs/css/default.css 2011-08-13 00:26:55 +0000 @@ -158,38 +158,41 @@ /* Footer */ #lava-server-footer { -} - -/* Copyright */ -#lava-server-copyright-trigger, -#lava-server-copyright { + clear: both; margin: 1ex; - font-family: Ubuntu Condensed, Helvetica Neue, Verdana, sans-serif; - text-align: center; -} - -#lava-server-copyright-trigger span { color: #999; - border-radius: 6pt; +} + +#lava-server-topics { + text-align: justify; + font-family: Ubuntu Condensed, Helvetica Neue, Verdana, sans-serif; + font-size: 11pt; + border-left: 1px solid #08C; +} + +#lava-server-topics a { + color: inherit !important; +} + +#lava-server-topics dt { + border-radius: 0 6pt 6pt 0; + cursor: pointer; padding: 2pt 5pt; - cursor: pointer; + margin: 1ex 0 0 0; } -#lava-server-copyright-trigger span:hover { +#lava-server-topics dt:hover { color: white; background-color: #08C; } -#lava-server-copyright { - clear: both; - color: #666; - margin: auto; - text-align: justify; - width: 800px; -} - -#lava-server-copyright a { - color: inherit !important; +#lava-server-topics dd { + padding: 0; + margin: 1em auto; + font-family: Ubuntu, Helvetica Neue, Verdana, sans-serif; + position: relative; + width: 50%; + color: #333; } /* Text listings */ === modified file 'lava_server/templates/layouts/content.html' --- lava_server/templates/layouts/content.html 2011-07-25 23:18:01 +0000 +++ lava_server/templates/layouts/content.html 2011-08-13 00:26:55 +0000 @@ -81,32 +81,49 @@ - - - - - - {% endblock body %}