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

Side by Side Diff: chrome/browser/resources/sync_internals/sync_search.css

Issue 138273009: Quick searches for sync-internals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@submitsearchsync
Patch Set: Consolidated both patchsets Created 6 years, 11 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
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 #sync-search-query { 5 #sync-search-query {
6 width: 16em; 6 width: 16em;
7 } 7 }
8 8
9 #sync-search-query[error] { 9 #sync-search-query[error] {
10 background-color: rgb(255,170,170); 10 background-color: rgb(255,170,170);
11 } 11 }
12 12
13 .sync-search-quicklink {
14 background-color: rgb(239,243,255);
15 padding-left: 10px;
16 padding-right: 10px;
17 }
18
13 #sync-search-status { 19 #sync-search-status {
14 color: rgb(51,51,51); 20 color: rgb(51,51,51);
15 font-style: italic; 21 font-style: italic;
16 } 22 }
17 23
18 #sync-results-container { 24 #sync-results-container {
19 display: -webkit-box; 25 display: -webkit-box;
20 /* Should be > #sync-page's min-height. */ 26 /* Should be > #sync-page's min-height. */
21 /* TODO(akalin): Find a less hacky way to do this. */ 27 /* TODO(akalin): Find a less hacky way to do this. */
22 height: 750px; 28 height: 750px;
(...skipping 21 matching lines...) Expand all
44 width: 5px; 50 width: 5px;
45 } 51 }
46 52
47 #sync-result-details-container { 53 #sync-result-details-container {
48 -webkit-box-flex: 1; 54 -webkit-box-flex: 1;
49 height: 100%; 55 height: 100%;
50 overflow: auto; 56 overflow: auto;
51 /* TODO(akalin): Figure out why this is needed, even with box-flex: 1. */ 57 /* TODO(akalin): Figure out why this is needed, even with box-flex: 1. */
52 width: 100%; 58 width: 100%;
53 } 59 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/sync_internals/search.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