| 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 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 .global-animations-toolbar { | 708 .global-animations-toolbar { |
| 709 position: absolute; | 709 position: absolute; |
| 710 top: 0; | 710 top: 0; |
| 711 width: 100%; | 711 width: 100%; |
| 712 background-color: #eee; | 712 background-color: #eee; |
| 713 border-bottom: 1px solid rgb(163, 163, 163); | 713 border-bottom: 1px solid rgb(163, 163, 163); |
| 714 padding-left: 10px; | 714 padding-left: 10px; |
| 715 } | 715 } |
| 716 | 716 |
| 717 label.checkbox-with-label { | 717 label.checkbox-with-label { |
| 718 display: flex; | |
| 719 -webkit-user-select: none; | 718 -webkit-user-select: none; |
| 720 } | 719 } |
| 721 | 720 |
| 721 label.checkbox-with-label > .dt-checkbox-text { |
| 722 margin-top: 1px; |
| 723 } |
| 724 |
| 722 .events-pane .section:not(:first-of-type) { | 725 .events-pane .section:not(:first-of-type) { |
| 723 border-top: 1px solid rgb(231, 231, 231); | 726 border-top: 1px solid rgb(231, 231, 231); |
| 724 } | 727 } |
| 725 | 728 |
| 726 .event-bar .header .title { | 729 .event-bar .header .title { |
| 727 font-weight: normal; | 730 font-weight: normal; |
| 728 word-wrap: break-word; | 731 word-wrap: break-word; |
| 729 white-space: normal; | 732 white-space: normal; |
| 730 line-height: 18px; | 733 line-height: 18px; |
| 731 } | 734 } |
| 732 | 735 |
| 733 .events-pane .section { | 736 .events-pane .section { |
| 734 margin: 0; | 737 margin: 0; |
| 735 } | 738 } |
| 736 | 739 |
| 737 .event-bar .event-properties { | 740 .event-bar .event-properties { |
| 738 padding-left: 16px; | 741 padding-left: 16px; |
| 739 } | 742 } |
| OLD | NEW |