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

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

Issue 9958101: [WebUI] Fix rest of CSS style nits in misc. dirs so I can turn on CSS checker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: estade review 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-status { 9 #sync-search-status {
10 color: #333; 10 color: #333;
(...skipping 13 matching lines...) Expand all
24 height: 100%; 24 height: 100%;
25 /* min-width and max-width are used by the split pane. */ 25 /* min-width and max-width are used by the split pane. */
26 max-width: 50%; 26 max-width: 50%;
27 min-width: 50px; 27 min-width: 50px;
28 overflow: auto; 28 overflow: auto;
29 padding: 5px; 29 padding: 5px;
30 width: 275px; 30 width: 275px;
31 } 31 }
32 32
33 #sync-results-splitter { 33 #sync-results-splitter {
34 background-color: #ebeff9; 34 background-color: rgb(235, 239, 249);
35 cursor: col-resize; 35 cursor: col-resize;
36 width: 5px;
37 <if expr="is_win"> 36 <if expr="is_win">
38 /* TODO(akalin): Make the BMM also use this style. */ 37 /* TODO(akalin): Make the BMM also use this style. */
39 cursor: e-resize; 38 cursor: e-resize;
40 </if> 39 </if>
40 width: 5px;
41 } 41 }
42 42
43 #sync-result-details-container { 43 #sync-result-details-container {
44 -webkit-box-flex: 1;
44 height: 100%; 45 height: 100%;
45 overflow: auto; 46 overflow: auto;
46 -webkit-box-flex: 1;
47
48 /* TODO(akalin): Figure out why this is needed, even with box-flex: 1. */ 47 /* TODO(akalin): Figure out why this is needed, even with box-flex: 1. */
49 width: 100%; 48 width: 100%;
50 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698