| 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 background-image: -webkit-image-set( | 199 background-image: -webkit-image-set( |
| 200 url(../../../../app/theme/default_100_percent/mac/bookmark_bar_folder.png)
1x, | 200 url(../../../../app/theme/default_100_percent/mac/bookmark_bar_folder.png)
1x, |
| 201 url(../../../../app/theme/default_200_percent/mac/bookmark_bar_folder.png)
2x); | 201 url(../../../../app/theme/default_200_percent/mac/bookmark_bar_folder.png)
2x); |
| 202 } | 202 } |
| 203 </if> | 203 </if> |
| 204 | 204 |
| 205 .main { | 205 .main { |
| 206 border-top: 1px solid rgb(156, 194, 239); | 206 border-top: 1px solid rgb(156, 194, 239); |
| 207 display: flex; | 207 display: flex; |
| 208 flex: 1; | 208 flex: 1; |
| 209 min-height: 0; |
| 209 } | 210 } |
| 210 | 211 |
| 211 .pane, | 212 .pane, |
| 212 .splitter { | 213 .splitter { |
| 213 display: flex; | 214 display: flex; |
| 214 flex-direction: column; | 215 flex-direction: column; |
| 215 } | 216 } |
| 216 | 217 |
| 217 .pane > :first-child, | 218 .pane > :first-child, |
| 218 .splitter > :first-child { | 219 .splitter > :first-child { |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 | 376 |
| 376 list [editing] input, | 377 list [editing] input, |
| 377 .tree-item [editing] input { | 378 .tree-item [editing] input { |
| 378 padding: 3px 0; | 379 padding: 3px 0; |
| 379 } | 380 } |
| 380 | 381 |
| 381 .tree-row .expand-icon { | 382 .tree-row .expand-icon { |
| 382 top: 6px; | 383 top: 6px; |
| 383 } | 384 } |
| 384 } | 385 } |
| OLD | NEW |