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 15 matching lines...) Expand all Loading... |
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
28 */ | 28 */ |
29 | 29 |
30 .sidebar-pane > .body .breakpoint-condition { | 30 .sidebar-pane > .body .breakpoint-condition { |
31 display: block; | 31 display: block; |
32 margin-top: 4px; | 32 margin-top: 4px; |
33 margin-bottom: 4px; | 33 margin-bottom: 4px; |
34 margin-left: 23px; | 34 margin-left: 23px; |
35 margin-right: 8px; | 35 margin-right: 8px; |
36 overflow: hidden; | |
37 } | 36 } |
38 | 37 |
39 #breakpoint-condition-input { | 38 #breakpoint-condition-input { |
40 display: block; | 39 display: block; |
41 margin-left: 0; | 40 margin-left: 0; |
42 margin-right: 0; | 41 margin-right: 0; |
43 outline: none !important; | 42 outline: none !important; |
44 border: 1px solid rgb(66%, 66%, 66%); | 43 border: 1px solid rgb(66%, 66%, 66%); |
45 } | 44 } |
46 | 45 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 height: 16px; | 101 height: 16px; |
103 } | 102 } |
104 | 103 |
105 .event-listener-breakpoints .checkbox-elem { | 104 .event-listener-breakpoints .checkbox-elem { |
106 float: left; | 105 float: left; |
107 top: -2px; | 106 top: -2px; |
108 position: relative; | 107 position: relative; |
109 left: -1px; | 108 left: -1px; |
110 font-size: 10px; | 109 font-size: 10px; |
111 } | 110 } |
OLD | NEW |