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

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

Issue 9836100: Add full text regex searching to chrome://sync (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typo Created 8 years, 8 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
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: 20em; 6 width: 20em;
7 } 7 }
8 8
9 #sync-search-query[error] {
10 background-color: rgb(255,170,170);
11 }
12
9 #sync-search-status { 13 #sync-search-status {
10 color: #333; 14 color: rgb(51,51,51);
11 font-style: italic; 15 font-style: italic;
12 } 16 }
13 17
14 #sync-results-container { 18 #sync-results-container {
15 display: -webkit-box; 19 display: -webkit-box;
16 /* Should be > #sync-page's min-height. */ 20 /* Should be > #sync-page's min-height. */
17 /* TODO(akalin): Find a less hacky way to do this. */ 21 /* TODO(akalin): Find a less hacky way to do this. */
18 height: 750px; 22 height: 750px;
19 } 23 }
20 24
(...skipping 19 matching lines...) Expand all
40 width: 5px; 44 width: 5px;
41 } 45 }
42 46
43 #sync-result-details-container { 47 #sync-result-details-container {
44 -webkit-box-flex: 1; 48 -webkit-box-flex: 1;
45 height: 100%; 49 height: 100%;
46 overflow: auto; 50 overflow: auto;
47 /* TODO(akalin): Figure out why this is needed, even with box-flex: 1. */ 51 /* TODO(akalin): Figure out why this is needed, even with box-flex: 1. */
48 width: 100%; 52 width: 100%;
49 } 53 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/sync_internals/chrome_sync.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