OLD | NEW |
1 /* | 1 /* |
2 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. | 4 found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
| 7 body { |
| 8 /* Remove body margin as the general tabpanels do not have outer border. */ |
| 9 margin: 0; |
| 10 } |
| 11 |
7 th, td { | 12 th, td { |
8 padding-left: 0.5em; | 13 padding-left: 0.5em; |
9 padding-right: 0.5em; | 14 padding-right: 0.5em; |
10 text-align: center; | 15 text-align: center; |
11 } | 16 } |
12 | 17 |
13 #tree-view-container { | 18 #tree-view-container { |
14 float: left; | 19 float: left; |
15 min-width: 15em; | 20 min-width: 15em; |
16 width: 20%; | 21 width: 20%; |
17 } | 22 } |
18 | 23 |
19 tr:nth-child(odd) { | 24 tr:nth-child(odd) { |
20 background: #eeeeff; | 25 background: #eeeeff; |
21 } | 26 } |
22 | 27 |
23 .tree-item:not([may-have-children]) > .tree-row > .tree-label { | 28 .tree-item:not([may-have-children]) > .tree-row > .tree-label { |
24 background-image: url("../shared/images/icon_file.png"); | 29 background-image: url("../shared/images/icon_file.png"); |
25 } | 30 } |
OLD | NEW |