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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 /*
2 Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file.
5 */
6
7 #sync-search-query {
8 width: 20em;
9 }
10
11 #sync-search-status {
12 color: #333;
13 font-style: italic;
14 }
15
16 #sync-results-container {
17 display: -webkit-box;
18 /* Should be > #sync-page's min-height. */
19 /* TODO(akalin): Find a less hacky way to do this. */
20 height: 750px;
21 }
22
23 #sync-results-list {
24 height: 100%;
25 width: 275px;
26 /* min-width and max-width are used by the split pane. */
27 min-width: 50px;
28 max-width: 50%;
29 overflow: auto;
30 box-sizing: border-box;
31 padding: 5px;
32 -webkit-padding-start: 10px;
33 }
34
35 #sync-results-splitter {
36 width: 5px;
37 background-color: #ebeff9;
38 cursor: col-resize;
39 }
40
41 /* Platform annotations are set in sync_node_browser.js. */
42 /* TODO(akalin): Make the BMM also use this style. */
43 html[os=win] #sync-results-splitter {
44 cursor: e-resize;
45 }
46
47 #sync-result-details-container {
48 height: 100%;
49 overflow: auto;
50 -webkit-box-flex: 1;
51
52 /* TODO(akalin): Figure out why this is needed, even with box-flex: 1. */
53 width: 100%;
54 }
OLDNEW
« 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