| 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 This template contains HTML for the following things: | 8 This template contains HTML for the following things: |
| 9 - A form for creating a new bug for an alert. | 9 - A form for creating a new bug for an alert. |
| 10 - A form for choosing an existing bug number for an alert. | 10 - A form for choosing an existing bug number for an alert. |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 } | 82 } |
| 83 | 83 |
| 84 .bug-closed { | 84 .bug-closed { |
| 85 text-decoration: line-through; | 85 text-decoration: line-through; |
| 86 } | 86 } |
| 87 | 87 |
| 88 input[type=text] { | 88 input[type=text] { |
| 89 background-color: #fff; | 89 background-color: #fff; |
| 90 border: 1px solid #d9d9d9; | 90 border: 1px solid #d9d9d9; |
| 91 border-top: 1px solid #c0c0c0; | 91 border-top: 1px solid #c0c0c0; |
| 92 -webkit-border-radius: 1px; | 92 border-radius: 1px; |
| 93 border-radius: 1px; | 93 border-radius: 1px; |
| 94 box-sizing: border-box; | 94 box-sizing: border-box; |
| 95 color: #333; | 95 color: #333; |
| 96 height: 29px; | 96 height: 29px; |
| 97 line-height: 27px; | 97 line-height: 27px; |
| 98 padding-left: 8px; | 98 padding-left: 8px; |
| 99 vertical-align: top; | 99 vertical-align: top; |
| 100 } | 100 } |
| 101 | 101 |
| 102 input[type=checkbox], input[type=radio], .fakecheckbox, .fakeradio { | 102 input[type=checkbox], input[type=radio], .fakecheckbox, .fakeradio { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 } | 138 } |
| 139 | 139 |
| 140 button, input[type=submit] { | 140 button, input[type=submit] { |
| 141 border-radius: 2px; | 141 border-radius: 2px; |
| 142 font-size: 11px; | 142 font-size: 11px; |
| 143 font-weight: bold; | 143 font-weight: bold; |
| 144 height: 27px; | 144 height: 27px; |
| 145 line-height: 27px; | 145 line-height: 27px; |
| 146 min-width: 54px; | 146 min-width: 54px; |
| 147 padding: 0px 8px; | 147 padding: 0px 8px; |
| 148 -webkit-user-select: none; | 148 user-select: none; |
| 149 } | 149 } |
| 150 | 150 |
| 151 popup-tooltip { | 151 popup-tooltip { |
| 152 white-space: normal; | 152 white-space: normal; |
| 153 } | 153 } |
| 154 | 154 |
| 155 </style> | 155 </style> |
| 156 </head> | 156 </head> |
| 157 <body> | 157 <body> |
| 158 {% if error %} | 158 {% if error %} |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 'issue_id': '{{issue_id}}', | 262 'issue_id': '{{issue_id}}', |
| 263 }; | 263 }; |
| 264 window.opener.postMessage(JSON.stringify(data), '*'); | 264 window.opener.postMessage(JSON.stringify(data), '*'); |
| 265 window.close(); | 265 window.close(); |
| 266 } | 266 } |
| 267 window.addEventListener('DOMContentLoaded', postClose, false); | 267 window.addEventListener('DOMContentLoaded', postClose, false); |
| 268 </script> | 268 </script> |
| 269 {% endif %} | 269 {% endif %} |
| 270 </body> | 270 </body> |
| 271 </html> | 271 </html> |
| OLD | NEW |