| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright 2016 The Chromium Authors. All rights reserved. | 3 Copyright 2016 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 <!-- | 7 <!-- |
| 8 The bisect-form element includes the form for all of the different stages of | 8 The bisect-form element includes the form for all of the different stages of |
| 9 the bisect process after the user clicks on the bisect button. | 9 the bisect process after the user clicks on the bisect button. |
| 10 --> | 10 --> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 padding-bottom: 10px; | 23 padding-bottom: 10px; |
| 24 } | 24 } |
| 25 | 25 |
| 26 #loading { | 26 #loading { |
| 27 background-color: white; | 27 background-color: white; |
| 28 height: 100%; | 28 height: 100%; |
| 29 width: 100%; | 29 width: 100%; |
| 30 position: absolute; | 30 position: absolute; |
| 31 left: 0; | 31 left: 0; |
| 32 top: 0; | 32 top: 0; |
| 33 display: -webkit-flex; | |
| 34 display: flex; | 33 display: flex; |
| 35 -webkit-align-items: center; | |
| 36 align-items: center; | 34 align-items: center; |
| 37 justify-content: center; | 35 justify-content: center; |
| 38 -webkit-justify-content: center; | |
| 39 } | 36 } |
| 40 | 37 |
| 41 select, input[type=text], input[type=number] { | 38 select, input[type=text], input[type=number] { |
| 42 border-radius: 1px; | 39 border-radius: 1px; |
| 43 border: 1px solid #d9d9d9; | 40 border: 1px solid #d9d9d9; |
| 44 border-top: 1px solid #c0c0c0; | 41 border-top: 1px solid #c0c0c0; |
| 45 font-size: 13px; | 42 font-size: 13px; |
| 46 height: 25px; /* 29 px total height incl padding + border */ | 43 height: 25px; /* 29 px total height incl padding + border */ |
| 47 width: 300px; | 44 width: 300px; |
| 48 padding: 1px 2px; | 45 padding: 1px 2px; |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 close() { | 348 close() { |
| 352 this.$.container.close(); | 349 this.$.container.close(); |
| 353 }, | 350 }, |
| 354 isNotReturnCode(bisectMode) { | 351 isNotReturnCode(bisectMode) { |
| 355 return bisectMode != 'return_code'; | 352 return bisectMode != 'return_code'; |
| 356 } | 353 } |
| 357 }); | 354 }); |
| 358 })(); | 355 })(); |
| 359 </script> | 356 </script> |
| 360 </dom-module> | 357 </dom-module> |
| OLD | NEW |