| 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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 overflow: hidden; | 443 overflow: hidden; |
| 444 white-space: nowrap; | 444 white-space: nowrap; |
| 445 text-overflow: ellipsis; | 445 text-overflow: ellipsis; |
| 446 } | 446 } |
| 447 | 447 |
| 448 .timeline-flamechart { | 448 .timeline-flamechart { |
| 449 overflow: hidden; | 449 overflow: hidden; |
| 450 } | 450 } |
| 451 | 451 |
| 452 .timeline-flamechart-resizer { | 452 .timeline-flamechart-resizer { |
| 453 height: 7px; | 453 height: 8px; |
| 454 background-color: #f3f3f3; | 454 background-color: #f3f3f3; |
| 455 border-top: #a3a3a3 1px solid; | 455 border: 1px #a3a3a3; |
| 456 border-style: solid none; |
| 456 display: flex; | 457 display: flex; |
| 457 flex-direction: row; | 458 flex-direction: row; |
| 458 align-items: flex-end; | 459 align-items: flex-end; |
| 459 justify-content: center; | 460 justify-content: center; |
| 460 } | 461 } |
| 461 | 462 |
| 463 .timeline-network-resizer-disabled > .timeline-flamechart-resizer { |
| 464 display: none; |
| 465 } |
| 466 |
| 462 .timeline-flamechart-resizer:after { | 467 .timeline-flamechart-resizer:after { |
| 463 content: "..."; | 468 content: "..."; |
| 464 font-size: 14px; | 469 font-size: 14px; |
| 465 margin-bottom: -1px; | 470 margin-bottom: -1px; |
| 466 } | 471 } |
| 467 | 472 |
| 468 .timeline-status-pane.full-widget-dimmed-banner { | 473 .timeline-status-pane.full-widget-dimmed-banner { |
| 469 text-align: left !important; | 474 text-align: left !important; |
| 470 } | 475 } |
| 471 | 476 |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 670 | 675 |
| 671 .timeline-landing-warning-close { | 676 .timeline-landing-warning-close { |
| 672 float: right; | 677 float: right; |
| 673 margin-top: -10px; | 678 margin-top: -10px; |
| 674 margin-right: -13px; | 679 margin-right: -13px; |
| 675 } | 680 } |
| 676 | 681 |
| 677 .timeline-landing-warning span[is=ui-icon] { | 682 .timeline-landing-warning span[is=ui-icon] { |
| 678 margin: -8px; | 683 margin: -8px; |
| 679 } | 684 } |
| OLD | NEW |