Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Unified Diff: tryconsole/static/tryconsole.css

Issue 517046: Initial check-in of tryconsole. (Closed) Base URL: svn://chrome-svn/chrome/trunk/tools/
Patch Set: '' Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tryconsole/static/red.png ('k') | tryconsole/static/yellow.png » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « tryconsole/static/red.png ('k') | tryconsole/static/yellow.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698