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

Side by Side Diff: appengine/trooper_o_matic/ui/tom-patch-summary.css

Issue 845963005: trooper-o-matic: Add patch attempt timeline view to CQ graphs (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@+addAlternateBuildViews
Patch Set: Review changes Created 5 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 Copyright 2014 The Chromium Authors. All rights reserved. 2 Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 */ 5 */
6 6
7 a { 7 a {
8 text-decoration: none; 8 text-decoration: none;
9 } 9 }
10 10
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 .build-bubble.running { 84 .build-bubble.running {
85 background: #ff7; 85 background: #ff7;
86 } 86 }
87 87
88 .build-bubble.passed { 88 .build-bubble.passed {
89 background: #9e6; 89 background: #9e6;
90 } 90 }
91 91
92 .build-bubble.failed { 92 .build-bubble.failed {
93 background: #e88; 93 background: #e88;
94 } 94 }
95
96 .attempt {
97 position: absolute;
98 top: 2px;
99 box-shadow: 0 1px 3px #888;
100 min-width: 5px;
101 padding: 5px;
102 padding-left: 0px;
103 color: black;
104 white-space: nowrap;
105 overflow: hidden;
106 }
107
108 .attempt:hover {
109 min-width: -webkit-fit-content;
110 min-width: auto;
111 }
112
113 .attempt.success-true {
114 background: #9e6;
115 }
116
117 .attempt.success-false {
118 background: #e88;
119 }
120
121 .attempt.success-null {
122 background: #ff7;
123 }
OLDNEW
« no previous file with comments | « appengine/trooper_o_matic/ui/tom-cq-graphs.html ('k') | appengine/trooper_o_matic/ui/tom-patch-summary.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698