| Index: tryconsole/static/tryconsole.css
|
| ===================================================================
|
| --- tryconsole/static/tryconsole.css (revision 0)
|
| +++ tryconsole/static/tryconsole.css (revision 0)
|
| @@ -0,0 +1,114 @@
|
| +/*
|
| + * Copyright (c) 2009-2010 The Chromium Authors. All rights reserved.
|
| + * Use of this source code is governed by a BSD-style license that can be
|
| + * found in the LICENSE file.
|
| + */
|
| +
|
| +/* Keep all links blue */
|
| +a:link {
|
| + color: blue;
|
| +}
|
| +a:visited {
|
| + color: blue;
|
| +}
|
| +
|
| +/* Make graphs 400x200 */
|
| +img.graph {
|
| + width: 400px
|
| + height: 200px
|
| +}
|
| +
|
| +/* Turn off borders on all images by default */
|
| +img {
|
| + border-style: none;
|
| +}
|
| +
|
| +/* Format each job into a grouping of several builds. */
|
| +dl.job
|
| +{
|
| + margin: 2em 0;
|
| + padding: 0;
|
| +}
|
| +.job dt
|
| +{
|
| + background-color: #777777;
|
| + border-left: 1px solid #131210;
|
| + border-right: 1px solid #131210;
|
| + border-top: 1px solid #131210;
|
| + color: #000000;
|
| + padding: .5em .5em;
|
| +}
|
| +.job dd
|
| +{
|
| + background: #ffffff;
|
| + border-bottom: 1px solid #131210;
|
| + border-left: 1px solid #131210;
|
| + border-right: 1px solid #131210;
|
| + margin: 0 0 1em 0;
|
| + padding: 0em 1em;
|
| +}
|
| +
|
| +/* Format each build result into a row of grid cells. */
|
| +dl.build
|
| +{
|
| + margin: 0;
|
| + padding: 0;
|
| +}
|
| +.build dt
|
| +{
|
| + background-color: #ffffff;
|
| + border-left: none;
|
| + border-right: none;
|
| + border-top: none;
|
| + color: #000000;
|
| + font-weight: normal;
|
| + padding: 0em 0em;
|
| + text-align: left;
|
| +}
|
| +.build dd
|
| +{
|
| + background: #ffffff;
|
| + border-bottom: none;
|
| + border-left: none;
|
| + border-right: none;
|
| + margin: 0em 0em 1em 1em;
|
| + padding: 0em 0em;
|
| + text-align: left;
|
| +}
|
| +
|
| +/* Color the background of build step body based on build result. */
|
| +dd.success
|
| +{
|
| + background: #77ff77;
|
| +}
|
| +dd.running
|
| +{
|
| + background: #ffff77;
|
| +}
|
| +dd.failure
|
| +{
|
| + background: #ff7777;
|
| +}
|
| +dd.exception
|
| +{
|
| + background: #ff77ff;
|
| +}
|
| +
|
| +/* Color the background of build step titles based on build result. */
|
| +dt.success
|
| +{
|
| + background: #77ff77;
|
| +}
|
| +dt.running
|
| +{
|
| + background: #ffff77;
|
| +}
|
| +dt.failure
|
| +{
|
| + background: #ff7777;
|
| +}
|
| +dt.exception
|
| +{
|
| + background: #ff77ff;
|
| +}
|
| +
|
|
|
| Property changes on: tryconsole/static/tryconsole.css
|
| ___________________________________________________________________
|
| Added: svn:mergeinfo
|
|
|
|
|