OLD | NEW |
---|---|
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 The Chromium Authors. All rights reserved. |
kinuko
2013/04/23 06:29:30
nit: '(c) 2013'
calvinlo
2013/04/23 06:48:29
Another reviewer sent me this link: https://groups
kinuko
2013/04/23 07:04:09
Oh, ok I didn't know that. Thx for the link!
| |
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 th, | 5 th, |
6 td { | 6 td { |
7 padding-left: 0.5em; | 7 padding-left: 0.5em; |
8 padding-right: 0.5em; | 8 padding-right: 0.5em; |
9 text-align: center; | 9 text-align: center; |
10 } | 10 } |
11 | 11 |
12 #tree-view-container { | |
13 float: left; | |
14 min-width: 15em; | |
15 width: 20%; | |
16 } | |
17 | |
18 tr:nth-child(odd) { | 12 tr:nth-child(odd) { |
19 background: rgb(238, 238, 255); | 13 background: rgb(238, 238, 255); |
20 } | 14 } |
21 | 15 |
22 .tree-item:not([may-have-children]) > .tree-row > .tree-label { | 16 .tree-item:not([may-have-children]) > .tree-row > .tree-label { |
23 background-image: url('../../../../ui/webui/resources/images/icon_file.png'); | 17 background-image: url('../../../../ui/webui/resources/images/icon_file.png'); |
24 } | 18 } |
OLD | NEW |