| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 } | 277 } |
| 278 | 278 |
| 279 #counter-values-bar { | 279 #counter-values-bar { |
| 280 flex: 0 0 20px; | 280 flex: 0 0 20px; |
| 281 border-top: solid 1px lightgray; | 281 border-top: solid 1px lightgray; |
| 282 width: 100%; | 282 width: 100%; |
| 283 overflow: hidden; | 283 overflow: hidden; |
| 284 line-height: 18px; | 284 line-height: 18px; |
| 285 } | 285 } |
| 286 | 286 |
| 287 .image-preview-container { | |
| 288 background: transparent; | |
| 289 text-align: left; | |
| 290 border-spacing: 0; | |
| 291 margin: 4px; | |
| 292 } | |
| 293 | |
| 294 .image-preview-container img { | |
| 295 max-width: 100px; | |
| 296 max-height: 100px; | |
| 297 background-image: url(Images/checker.png); | |
| 298 -webkit-user-select: text; | |
| 299 -webkit-user-drag: auto; | |
| 300 } | |
| 301 | |
| 302 .image-container { | |
| 303 padding: 0; | |
| 304 } | |
| 305 | |
| 306 .timeline-filters-header { | 287 .timeline-filters-header { |
| 307 overflow: hidden; | 288 overflow: hidden; |
| 308 flex: none; | 289 flex: none; |
| 309 } | 290 } |
| 310 | 291 |
| 311 .timeline-details { | 292 .timeline-details { |
| 312 vertical-align: top; | 293 vertical-align: top; |
| 313 } | 294 } |
| 314 | 295 |
| 315 .timeline-details-title { | 296 .timeline-details-title { |
| (...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 692 | 673 |
| 693 .timeline-landing-warning-close { | 674 .timeline-landing-warning-close { |
| 694 float: right; | 675 float: right; |
| 695 margin-top: -10px; | 676 margin-top: -10px; |
| 696 margin-right: -13px; | 677 margin-right: -13px; |
| 697 } | 678 } |
| 698 | 679 |
| 699 .timeline-landing-warning span[is=ui-icon] { | 680 .timeline-landing-warning span[is=ui-icon] { |
| 700 margin: -8px; | 681 margin: -8px; |
| 701 } | 682 } |
| OLD | NEW |