| 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 html, | 5 html, |
| 6 body { | 6 body { |
| 7 cursor: default; | 7 cursor: default; |
| 8 height: 100%; | 8 height: 100%; |
| 9 margin: 0; | 9 margin: 0; |
| 10 overflow: hidden; | 10 overflow: hidden; |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 header { | 252 header { |
| 253 align-items: center; | 253 align-items: center; |
| 254 display: flex; | 254 display: flex; |
| 255 min-width: 400px; | 255 min-width: 400px; |
| 256 padding: 0 12px; | 256 padding: 0 12px; |
| 257 } | 257 } |
| 258 | 258 |
| 259 header h2 { | 259 header h2 { |
| 260 flex: 1; | 260 flex: 1; |
| 261 font-weight: normal; | 261 font-weight: normal; |
| 262 line-height: 1; /* TODO(dbeam): include chrome_shared.css on this page. */ |
| 262 } | 263 } |
| 263 | 264 |
| 264 header form { | 265 header form { |
| 265 flex: none; | 266 flex: none; |
| 266 } | 267 } |
| 267 | 268 |
| 268 .tree-row.drag-on, | 269 .tree-row.drag-on, |
| 269 .drag-on { | 270 .drag-on { |
| 270 background-color: hsla(214, 91%, 85%, .5); | 271 background-color: hsla(214, 91%, 85%, .5); |
| 271 border: 1px solid hsl(214, 91%, 85%); | 272 border: 1px solid hsl(214, 91%, 85%); |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 | 350 |
| 350 list [editing] input, | 351 list [editing] input, |
| 351 .tree-item [editing] input { | 352 .tree-item [editing] input { |
| 352 padding: 3px 0; | 353 padding: 3px 0; |
| 353 } | 354 } |
| 354 | 355 |
| 355 .tree-row .expand-icon { | 356 .tree-row .expand-icon { |
| 356 top: 6px; | 357 top: 6px; |
| 357 } | 358 } |
| 358 } | 359 } |
| OLD | NEW |