| Index: chrome/browser/resources/sync_internals/notifications.html
|
| diff --git a/chrome/browser/resources/sync_internals/notifications.html b/chrome/browser/resources/sync_internals/notifications.html
|
| index 67fc97b7a14a025de235888cbb434abab2a21518..3120361ca88c73f062d6ccf9e9aa5c93b214f62a 100644
|
| --- a/chrome/browser/resources/sync_internals/notifications.html
|
| +++ b/chrome/browser/resources/sync_internals/notifications.html
|
| @@ -38,19 +38,18 @@ document.addEventListener("DOMContentLoaded", onLoad, false);
|
| })();
|
| </script>
|
|
|
| -<div class="desc"><h2> Notifications </h2></div>
|
| +<style>
|
| +table#notificationCountsInfo tr:nth-child(odd) {
|
| + background: #eff3ff;
|
| +}
|
| +</style>
|
| +
|
| <p id='notificationsEnabledInfo'>
|
| Enabled: <span jscontent='notificationsEnabled'></span>
|
| </p>
|
| -
|
| -<table class='list' id='notificationCountsInfo'>
|
| +<table id='notificationCountsInfo'>
|
| <tr jsselect='notificationCounts'>
|
| - <td class='name'>
|
| - <div jscontent='modelType'></div>
|
| - </td>
|
| - <td class='number'>
|
| - <div jscontent='notificationCount'></div>
|
| - </td>
|
| + <td jscontent='modelType'/>
|
| + <td jscontent='notificationCount'/>
|
| </tr>
|
| </table>
|
| -
|
|
|