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

Unified Diff: chrome/browser/resources/sync_internals/sync_search.css

Issue 7055023: [Sync] Implement search frontend in chrome://sync-internals. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: diff against right branch Created 9 years, 7 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_search.css
diff --git a/chrome/browser/resources/sync_internals/sync_search.css b/chrome/browser/resources/sync_internals/sync_search.css
new file mode 100644
index 0000000000000000000000000000000000000000..17b458ee5df5716f34c0feb464df47f84c84710f
--- /dev/null
+++ b/chrome/browser/resources/sync_internals/sync_search.css
@@ -0,0 +1,54 @@
+/*
+Copyright (c) 2011 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+*/
+
+#sync-search-query {
+ width: 20em;
+}
+
+#sync-search-status {
+ color: #333;
+ font-style: italic;
+}
+
+#sync-results-container {
+ display: -webkit-box;
+ /* Should be > #sync-page's min-height. */
+ /* TODO(akalin): Find a less hacky way to do this. */
+ height: 750px;
+}
+
+#sync-results-list {
+ height: 100%;
+ width: 275px;
+ /* min-width and max-width are used by the split pane. */
+ min-width: 50px;
+ max-width: 50%;
+ overflow: auto;
+ box-sizing: border-box;
+ padding: 5px;
+ -webkit-padding-start: 10px;
+}
+
+#sync-results-splitter {
+ width: 5px;
+ background-color: #ebeff9;
+ cursor: col-resize;
+}
+
+/* Platform annotations are set in sync_node_browser.js. */
+/* TODO(akalin): Make the BMM also use this style. */
+html[os=win] #sync-results-splitter {
+ cursor: e-resize;
+}
+
+#sync-result-details-container {
+ height: 100%;
+ overflow: auto;
+ -webkit-box-flex: 1;
+
+ /* TODO(akalin): Figure out why this is needed, even with box-flex: 1. */
+ width: 100%;
+}
« no previous file with comments | « chrome/browser/resources/sync_internals/sync_node_browser.js ('k') | chrome/browser/resources/sync_internals/sync_search.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698