| OLD | NEW |
| 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 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 background-color: #fa3; | 446 background-color: #fa3; |
| 447 border-color: #C29D46; | 447 border-color: #C29D46; |
| 448 } | 448 } |
| 449 | 449 |
| 450 .status-InfraFailure { | 450 .status-InfraFailure { |
| 451 color: #FFFFFF; | 451 color: #FFFFFF; |
| 452 background-color: #c6c; | 452 background-color: #c6c; |
| 453 border-color: #ACA0B3; | 453 border-color: #ACA0B3; |
| 454 } | 454 } |
| 455 | 455 |
| 456 .status-Expired, .expired { |
| 457 color: #FFFFFF; |
| 458 background-color: #ac39ac; |
| 459 border-color: #ACA0B3; |
| 460 } |
| 461 |
| 456 .warnings { | 462 .warnings { |
| 457 color: #FFFFFF; | 463 color: #FFFFFF; |
| 458 background-color: #fa3; | 464 background-color: #fa3; |
| 459 border-color: #C29D46; | 465 border-color: #C29D46; |
| 460 } | 466 } |
| 461 | 467 |
| 462 .skipped { | 468 .skipped { |
| 463 color: #000; | 469 color: #000; |
| 464 background: #AADDEE; | 470 background: #AADDEE; |
| 465 border-color: #AADDEE; | 471 border-color: #AADDEE; |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 display: inline; | 717 display: inline; |
| 712 } | 718 } |
| 713 | 719 |
| 714 div.step-text:first-child { | 720 div.step-text:first-child { |
| 715 display: inline; | 721 display: inline; |
| 716 } | 722 } |
| 717 | 723 |
| 718 .verbosity-Hidden.default { | 724 .verbosity-Hidden.default { |
| 719 display: none; | 725 display: none; |
| 720 } | 726 } |
| OLD | NEW |