| OLD | NEW |
| 1 <script src="chrome://sync-internals/about.js"></script> | 1 <script src="chrome://sync-internals/about.js"></script> |
| 2 | 2 |
| 3 <style> | 3 <style> |
| 4 div#aboutInfo { | 4 div#aboutInfo { |
| 5 -webkit-columns: 3; | 5 -webkit-columns: 3; |
| 6 } | 6 } |
| 7 | 7 |
| 8 div#aboutInfo h2 { | 8 div#aboutInfo h2 { |
| 9 color: #4a8ee6; | 9 color: #4a8ee6; |
| 10 font-size: 100%; | 10 font-size: 100%; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 -webkit-animation-name: highlight1; | 63 -webkit-animation-name: highlight1; |
| 64 -webkit-animation-duration: 3s; | 64 -webkit-animation-duration: 3s; |
| 65 -webkit-animation-timing-function: linear; | 65 -webkit-animation-timing-function: linear; |
| 66 } | 66 } |
| 67 | 67 |
| 68 table.aboutDetails tr[highlighted]:nth-child(odd) { | 68 table.aboutDetails tr[highlighted]:nth-child(odd) { |
| 69 -webkit-animation-name: highlight2; | 69 -webkit-animation-name: highlight2; |
| 70 -webkit-animation-duration: 3s; | 70 -webkit-animation-duration: 3s; |
| 71 -webkit-animation-timing-function: linear; | 71 -webkit-animation-timing-function: linear; |
| 72 } | 72 } |
| 73 |
| 74 table.aboutDetails tr.uninitialized { |
| 75 color: #7f7f7f; |
| 76 } |
| 77 |
| 73 </style> | 78 </style> |
| 74 | 79 |
| 75 <div id='aboutInfo'> | 80 <div id='aboutInfo'> |
| 76 <div class="section" jsselect="details"> | 81 <div class="section" jsselect="details"> |
| 77 <h2 jscontent="title"></h2> | 82 <h2 jscontent="title"></h2> |
| 78 <table class="aboutDetails"> | 83 <table class="aboutDetails"> |
| 79 <tr jsselect="data" jseval='highlightIfChanged(this, this.children[1].inne
rText, stat_value)'> | 84 <tr jsselect="data" |
| 85 jsvalues="class:$this.is_valid ? '' : 'uninitialized'" |
| 86 jseval='highlightIfChanged(this, this.children[1].innerText, stat_va
lue)'> |
| 80 <td class="detail" jscontent="stat_name" width=50%></td> | 87 <td class="detail" jscontent="stat_name" width=50%></td> |
| 81 <td class="value" jscontent="stat_value" width=50%></td> | 88 <td class="value" jscontent="stat_value" width=50%></td> |
| 82 </tr> | 89 </tr> |
| 83 </table> | 90 </table> |
| 84 </div> | 91 </div> |
| 85 | 92 |
| 86 <div class="section"> | 93 <div class="section"> |
| 87 <h2>Type Info</h2> | 94 <h2>Type Info</h2> |
| 88 <table id="typeInfo"> | 95 <table id="typeInfo"> |
| 89 <tr jsselect="type_status" jsvalues="class:$this.status"> | 96 <tr jsselect="type_status" jsvalues="class:$this.status"> |
| 90 <td jscontent="name"/> | 97 <td jscontent="name" width=50% /> |
| 91 <td jscontent="value"/> | 98 <td jscontent="value" width=50% /> |
| 92 </tr> | 99 </tr> |
| 93 </table> | 100 </table> |
| 94 </div> | 101 </div> |
| 95 | 102 |
| 96 <div class="section" jsdisplay="unrecoverable_error_detected"> | 103 <div class="section" jsdisplay="unrecoverable_error_detected"> |
| 97 <p> | 104 <p> |
| 98 <span class="err" jscontent="unrecoverable_error_message"></span> | 105 <span class="err" jscontent="unrecoverable_error_message"></span> |
| 99 </p> | 106 </p> |
| 100 </div> | 107 </div> |
| 101 | 108 |
| 102 <div class="section" jsdisplay="actionable_error_detected"> | 109 <div class="section" jsdisplay="actionable_error_detected"> |
| 103 <p jsdisplay="actionable_error_detected"> | 110 <p> |
| 104 <h2 jsdisplay="actionable_error_detected">Actionable Error</h2> | 111 <h2>Actionable Error</h2> |
| 105 <table id="actionableError"> | 112 <table id="actionableError"> |
| 106 <tr jsselect="actionable_error"> | 113 <tr jsselect="actionable_error"> |
| 107 <td jscontent="stat_name"/> | 114 <td jscontent="stat_name"/> |
| 108 <td jscontent="stat_value"/> | 115 <td jscontent="stat_value"/> |
| 109 </tr> | 116 </tr> |
| 110 </table> | 117 </table> |
| 111 </p> | 118 </p> |
| 112 </div> | 119 </div> |
| 113 </div> | 120 </div> |
| OLD | NEW |