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

Side by Side Diff: milo/appengine/frontend/static/buildbot/css/default.css

Issue 2254993002: Milo: Add task expired as a failure status (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-go@master
Patch Set: Retrain, remove build-hang test case Created 4 years, 4 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 /* Copyright 2015 The LUCI Authors. All rights reserved. 1 /* Copyright 2015 The LUCI Authors. All rights reserved.
2 * Use of this source code is governed under the Apache License, Version 2.0 2 * Use of this source code is governed under the Apache License, Version 2.0
3 * that can be found in the LICENSE file. 3 * that can be found in the LICENSE file.
4 */ 4 */
5 5
6 body.interface { 6 body.interface {
7 margin-left: 30px; 7 margin-left: 30px;
8 margin-right: 30px; 8 margin-right: 30px;
9 margin-top: 20px; 9 margin-top: 20px;
10 margin-bottom: 50px; 10 margin-bottom: 50px;
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 background-color: #fa3; 439 background-color: #fa3;
440 border-color: #C29D46; 440 border-color: #C29D46;
441 } 441 }
442 442
443 .status-InfraFailure { 443 .status-InfraFailure {
444 color: #FFFFFF; 444 color: #FFFFFF;
445 background-color: #c6c; 445 background-color: #c6c;
446 border-color: #ACA0B3; 446 border-color: #ACA0B3;
447 } 447 }
448 448
449 .status-Expired, .expired {
450 color: #FFFFFF;
451 background-color: #ac39ac;
452 border-color: #ACA0B3;
453 }
454
449 .warnings { 455 .warnings {
450 color: #FFFFFF; 456 color: #FFFFFF;
451 background-color: #fa3; 457 background-color: #fa3;
452 border-color: #C29D46; 458 border-color: #C29D46;
453 } 459 }
454 460
455 .skipped { 461 .skipped {
456 color: #000; 462 color: #000;
457 background: #AADDEE; 463 background: #AADDEE;
458 border-color: #AADDEE; 464 border-color: #AADDEE;
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
704 display: inline; 710 display: inline;
705 } 711 }
706 712
707 div.step-text:first-child { 713 div.step-text:first-child {
708 display: inline; 714 display: inline;
709 } 715 }
710 716
711 .verbosity-Hidden.default { 717 .verbosity-Hidden.default {
712 display: none; 718 display: none;
713 } 719 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698