| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2016 The LUCI Authors. All rights reserved. | 2 Copyright 2016 The LUCI Authors. All rights reserved. |
| 3 Use of this source code is governed under the Apache License, Version 2.0 | 3 Use of this source code is governed under the Apache License, Version 2.0 |
| 4 that can be found in the LICENSE file. | 4 that can be found in the LICENSE file. |
| 5 | 5 |
| 6 This contains the shared styles for the "single page" look, e.g. bot-page. | 6 This contains the shared styles for the "single page" look, e.g. bot-page. |
| 7 To use, include this file and then | 7 To use, include this file and then |
| 8 | 8 |
| 9 <style include="single-page-style"> | 9 <style include="single-page-style"> |
| 10 | 10 |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 .failed_task { | 76 .failed_task { |
| 77 background-color: #ffdddd; | 77 background-color: #ffdddd; |
| 78 } | 78 } |
| 79 .dead, | 79 .dead, |
| 80 .bot_died { | 80 .bot_died { |
| 81 background-color: #cccccc; | 81 background-color: #cccccc; |
| 82 } | 82 } |
| 83 .exception { | 83 .exception { |
| 84 background-color: #edd2ff; | 84 background-color: #edd2ff; |
| 85 } | 85 } |
| 86 .pending { | 86 .pending_task { |
| 87 background-color: #fffc6c; | 87 background-color: #fffc6c; |
| 88 } | 88 } |
| 89 | 89 |
| 90 </style> | 90 </style> |
| 91 </template> | 91 </template> |
| 92 </dom-module> | 92 </dom-module> |
| OLD | NEW |