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

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

Issue 9923005: [WebUI] Fix rest of CSS style nits so I can turn on CSS checker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: padding fixes, remove a no-op change 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-node-main { 5 #sync-node-main {
6 display: -webkit-box; 6 display: -webkit-box;
7 /* Should be > #sync-page's min-height. */ 7 /* Should be > #sync-page's min-height. */
8 /* TODO(akalin): Find a less hacky way to do this. */ 8 /* TODO(akalin): Find a less hacky way to do this. */
9 height: 750px; 9 height: 750px;
10 } 10 }
(...skipping 15 matching lines...) Expand all
26 min-width: 100%; 26 min-width: 100%;
27 overflow: visible; /* let the container do the scrolling */ 27 overflow: visible; /* let the container do the scrolling */
28 } 28 }
29 29
30 /* TODO(akalin): Find a better icon to use for leaf nodes. */ 30 /* TODO(akalin): Find a better icon to use for leaf nodes. */
31 #sync-node-tree .leaf .tree-label { 31 #sync-node-tree .leaf .tree-label {
32 background-image: url('../shared/images/star_small.png'); 32 background-image: url('../shared/images/star_small.png');
33 } 33 }
34 34
35 #sync-node-splitter { 35 #sync-node-splitter {
36 background-color: #ebeff9; 36 background-color: rgb(235, 239, 249);
37 cursor: col-resize; 37 cursor: col-resize;
38 width: 5px; 38 width: 5px;
39 <if expr="is_win"> 39 <if expr="is_win">
40 /* TODO(akalin): Make the BMM also use this style. */ 40 /* TODO(akalin): Make the BMM also use this style. */
41 cursor: e-resize; 41 cursor: e-resize;
42 </if> 42 </if>
43 } 43 }
44 44
45 #sync-node-browser-container { 45 #sync-node-browser-container {
46 -webkit-box-flex: 1; 46 -webkit-box-flex: 1;
47 height: 100%; 47 height: 100%;
48 overflow: auto; 48 overflow: auto;
49 } 49 }
50 50
51 #node-browser { 51 #node-browser {
52 width: 100%; 52 width: 100%;
53 } 53 }
54 54
55 #node-browser td { 55 #node-browser td {
56 vertical-align: top; 56 vertical-align: top;
57 } 57 }
58 58
59 #node-browser tr:nth-child(odd) { 59 #node-browser tr:nth-child(odd) {
60 background: #eff3ff; 60 background: rgb(239, 243, 255);
61 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698