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

Side by Side Diff: components/sync_driver/resources/sync_node_browser.css

Issue 2206453004: [Sync] chrome://sync-internals uses deprecated CSS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: [Sync] chrome://sync-internals uses deprecated CSS Created 4 years, 4 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
« no previous file with comments | « no previous file | components/sync_driver/resources/sync_node_browser.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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-browser-refresher { 5 #sync-node-browser-refresher {
6 border-bottom: 1px rgb(160,160,160) solid; 6 border-bottom: 1px rgb(160,160,160) solid;
7 } 7 }
8 8
9 #sync-node-browser-refresher > * { 9 #sync-node-browser-refresher > * {
10 display: inline-block; 10 display: inline-block;
11 } 11 }
12 12
13 #sync-node-browser-container { 13 #sync-node-browser-container {
14 display: -webkit-box; 14 display: flex;
15 height: 750px; 15 height: 750px;
16 } 16 }
17 17
18 #sync-node-tree-container { 18 #sync-node-tree-container {
19 -webkit-padding-start: 10px; 19 -webkit-padding-start: 10px;
20 box-sizing: border-box; 20 box-sizing: border-box;
21 height: 100%; 21 height: 100%;
22 /* min-width and max-width are used by the split pane. */ 22 /* min-width and max-width are used by the split pane. */
23 max-width: 50%; 23 max-width: 50%;
24 min-width: 50px; 24 min-width: 200px;
25 overflow: auto; 25 overflow: auto;
26 width: 200px; 26 width: 200px;
27 } 27 }
28 28
29 #sync-node-tree { 29 #sync-node-tree {
30 display: inline-block; 30 display: inline-block;
31 min-width: 100%; 31 min-width: 100%;
32 overflow: visible; /* let the container do the scrolling */ 32 overflow: visible; /* let the container do the scrolling */
33 } 33 }
34 34
35 /* TODO(akalin): Find a better icon to use for leaf nodes. */ 35 /* TODO(akalin): Find a better icon to use for leaf nodes. */
36 #sync-node-tree .leaf .tree-label { 36 #sync-node-tree .leaf .tree-label {
37 background-image: url(../../../ui/webui/resources/images/star_small.png); 37 background-image: url(../../../ui/webui/resources/images/star_small.png);
38 } 38 }
39 39
40 #sync-node-splitter { 40 #sync-node-splitter {
41 background-color: rgb(235, 239, 249); 41 background-color: rgb(235, 239, 249);
42 cursor: col-resize; 42 cursor: col-resize;
43 width: 5px; 43 min-width: 5px;
44 <if expr="is_win"> 44 <if expr="is_win">
45 /* TODO(akalin): Make the BMM also use this style. */ 45 /* TODO(akalin): Make the BMM also use this style. */
46 cursor: e-resize; 46 cursor: e-resize;
47 </if> 47 </if>
48 } 48 }
49 49
50 #sync-node-details-container { 50 #sync-node-details-container {
51 -webkit-box-flex: 1; 51 flex: 1;
52 height: 100%; 52 height: 100%;
53 overflow: auto; 53 overflow: auto;
54 visibility: hidden; /* Element is invisible until first refresh. */ 54 visibility: hidden; /* Element is invisible until first refresh. */
55 } 55 }
56 56
57 #node-details { 57 #node-details {
58 width: 100%; 58 flex-grow: 1;
59 } 59 }
60 60
61 #node-details td { 61 #node-details td {
62 vertical-align: top; 62 vertical-align: top;
63 white-space: nowrap; 63 white-space: nowrap;
64 } 64 }
65 65
66 #node-details tr:nth-child(odd) { 66 #node-details tr:nth-child(odd) {
67 background: rgb(239, 243, 255); 67 background: rgb(239, 243, 255);
68 } 68 }
OLDNEW
« no previous file with comments | « no previous file | components/sync_driver/resources/sync_node_browser.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698