| 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 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 } | 453 } |
| 454 | 454 |
| 455 .animations-controls > .playback-label { | 455 .animations-controls > .playback-label { |
| 456 width: 35px; | 456 width: 35px; |
| 457 } | 457 } |
| 458 | 458 |
| 459 .styles-selector { | 459 .styles-selector { |
| 460 cursor: text; | 460 cursor: text; |
| 461 } | 461 } |
| 462 | 462 |
| 463 .event-listener-tree li { | |
| 464 padding: 2px 0 0 5px; | |
| 465 } | |
| 466 | |
| 467 .event-listener-tree { | |
| 468 margin-top: 5px; | |
| 469 } | |
| 470 | |
| 471 .event-listener-tree > li { | |
| 472 border-top: 1px solid rgb(231, 231, 231); | |
| 473 } | |
| 474 | |
| 475 .event-listener-tree > li:first-of-type { | |
| 476 border-top: none; | |
| 477 } | |
| 478 | |
| 479 .event-listener-tree { | |
| 480 padding-left: 0 !important; | |
| 481 } | |
| 482 | |
| 483 .event-listener-tree li.parent::before { | |
| 484 top: 0 !important; | |
| 485 } | |
| 486 | |
| 487 .event-listener-tree .name { | |
| 488 color: rgb(136, 19, 145); | |
| 489 } | |
| 490 | |
| 491 .event-listener-tree-subtitle { | |
| 492 float: right; | |
| 493 } | |
| 494 | |
| 495 .image-preview-container { | 463 .image-preview-container { |
| 496 background: transparent; | 464 background: transparent; |
| 497 text-align: center; | 465 text-align: center; |
| 498 } | 466 } |
| 499 | 467 |
| 500 .image-preview-container img { | 468 .image-preview-container img { |
| 501 margin: 2px auto; | 469 margin: 2px auto; |
| 502 max-width: 100px; | 470 max-width: 100px; |
| 503 max-height: 100px; | 471 max-height: 100px; |
| 504 background-image: url(Images/checker.png); | 472 background-image: url(Images/checker.png); |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 .style-properties li.editing { | 714 .style-properties li.editing { |
| 747 margin-left: 10px; | 715 margin-left: 10px; |
| 748 text-overflow: clip; | 716 text-overflow: clip; |
| 749 } | 717 } |
| 750 | 718 |
| 751 .style-properties li.editing-sub-part { | 719 .style-properties li.editing-sub-part { |
| 752 padding: 3px 6px 8px 18px; | 720 padding: 3px 6px 8px 18px; |
| 753 margin: -1px -6px -8px -6px; | 721 margin: -1px -6px -8px -6px; |
| 754 text-overflow: clip; | 722 text-overflow: clip; |
| 755 } | 723 } |
| OLD | NEW |