Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(487)

Unified Diff: chrome/browser/resources/sync_internals/sync_index.html

Issue 6538047: [Sync] Clean up about:sync (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix HTML errors Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/sync_internals/sync_index.html
diff --git a/chrome/browser/resources/sync_internals/sync_index.html b/chrome/browser/resources/sync_internals/sync_index.html
index f765c350709801d2f5e38fa9cda5926840c1a686..100ead35a2786031e2917eed5b9f8a48a595a44c 100644
--- a/chrome/browser/resources/sync_internals/sync_index.html
+++ b/chrome/browser/resources/sync_internals/sync_index.html
@@ -5,13 +5,37 @@
chrome/test/functional/special_tabs.py. -->
<title>Sync Internals</title>
<script src="chrome_sync.js"></script>
-<!-- Used by about.html. -->
-<link rel="stylesheet" href="about.css" />
</head>
<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
-<include src="about.html" />
-<include src="notifications.html" />
-<include src="sync_node_browser.html" />
+
+<style>
+div.topLevel {
+ display: inline-block;
+ padding-right: 5em;
+ vertical-align: top;
+}
+
+h1.topLevel {
+ font-size: 150%;
+}
+</style>
+
+<!-- TODO(akalin): Add tab-style navigation. -->
+
+<div class="topLevel" id="about">
+ <h1 class="topLevel">About</h1>
+ <include src="about.html" />
+</div>
+<div class="topLevel" id="notifications">
+ <h1 class="topLevel">Notifications</h1>
+ <include src="notifications.html" />
+</div>
+<div class="topLevel" id="syncNodeBrowser">
+ <h1 class="topLevel">Node Browser</h1>
+ <include src="sync_node_browser.html" />
+</div>
+
<include src="sync_events.html" />
+
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698