| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |