| 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 body { | 5 body { |
| 6 position: relative; | 6 position: relative; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #main-content { | 9 #main-content { |
| 10 bottom: 0; | 10 bottom: 0; |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 url(../../../../ui/resources/default_200_percent/close_2_pressed.png) | 296 url(../../../../ui/resources/default_200_percent/close_2_pressed.png) |
| 297 2x); | 297 2x); |
| 298 } | 298 } |
| 299 | 299 |
| 300 list .static-text { | 300 list .static-text { |
| 301 overflow: hidden; | 301 overflow: hidden; |
| 302 text-overflow: ellipsis; | 302 text-overflow: ellipsis; |
| 303 white-space: nowrap; | 303 white-space: nowrap; |
| 304 } | 304 } |
| 305 | 305 |
| 306 list .overruled .static-text { |
| 307 text-decoration: line-through; |
| 308 } |
| 309 |
| 306 list[type='text'][inlineeditable] input { | 310 list[type='text'][inlineeditable] input { |
| 307 box-sizing: border-box; | 311 box-sizing: border-box; |
| 308 margin: 0; | 312 margin: 0; |
| 309 width: 100%; | 313 width: 100%; |
| 310 } | 314 } |
| 311 | 315 |
| 312 list > :not([editing]) [displaymode='edit'] { | 316 list > :not([editing]) [displaymode='edit'] { |
| 313 display: none; | 317 display: none; |
| 314 } | 318 } |
| 315 | 319 |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 .standalone-action-link { | 449 .standalone-action-link { |
| 446 padding: 0; | 450 padding: 0; |
| 447 } | 451 } |
| 448 | 452 |
| 449 :-webkit-any(.checkbox, .radio) label ~ a { | 453 :-webkit-any(.checkbox, .radio) label ~ a { |
| 450 display: inline-block; | 454 display: inline-block; |
| 451 /* Matches padding of -webkit-any(.checkbox, .radio) */ | 455 /* Matches padding of -webkit-any(.checkbox, .radio) */ |
| 452 padding-bottom: 7px; | 456 padding-bottom: 7px; |
| 453 vertical-align: bottom; | 457 vertical-align: bottom; |
| 454 } | 458 } |
| OLD | NEW |