OLD | NEW |
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 <include src="../search_header.css"> | 5 <include src="../search_header.css"> |
6 | 6 |
7 html, | 7 html, |
8 body { | 8 body { |
9 cursor: default; | 9 cursor: default; |
10 height: 100%; | 10 height: 100%; |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 #list, | 253 #list, |
254 #tree-container { | 254 #tree-container { |
255 flex: 1; | 255 flex: 1; |
256 } | 256 } |
257 | 257 |
258 #tree, | 258 #tree, |
259 #list { | 259 #list { |
260 -webkit-padding-end: 5px; | 260 -webkit-padding-end: 5px; |
261 box-sizing: border-box; | 261 box-sizing: border-box; |
262 display: inline-block; | 262 display: inline-block; |
263 margin-bottom: 5px; | |
264 margin-top: 5px; | |
265 min-width: 100%; | 263 min-width: 100%; |
| 264 padding-bottom: 5px; |
| 265 padding-top: 5px; |
266 } | 266 } |
267 | 267 |
268 #tree { | 268 #tree { |
269 /* Only pad the tree as the splitter adds a lot of whitespace for the list. */ | 269 /* Only pad the tree as the splitter adds a lot of whitespace for the list. */ |
270 -webkit-padding-start: 10px; | 270 -webkit-padding-start: 10px; |
271 } | 271 } |
272 | 272 |
273 .tree-item > .tree-row { | 273 .tree-item > .tree-row { |
274 line-height: 20px; | 274 line-height: 20px; |
275 } | 275 } |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 | 372 |
373 list [editing] input, | 373 list [editing] input, |
374 .tree-item [editing] input { | 374 .tree-item [editing] input { |
375 padding: 3px 0; | 375 padding: 3px 0; |
376 } | 376 } |
377 | 377 |
378 .tree-row .expand-icon { | 378 .tree-row .expand-icon { |
379 top: 6px; | 379 top: 6px; |
380 } | 380 } |
381 } | 381 } |
OLD | NEW |