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; |
36 } | 37 } |
37 | 38 |
38 #breakpoint-condition-input { | 39 #breakpoint-condition-input { |
39 display: block; | 40 display: block; |
40 margin-left: 0; | 41 margin-left: 0; |
41 margin-right: 0; | 42 margin-right: 0; |
42 outline: none !important; | 43 outline: none !important; |
43 border: 1px solid rgb(66%, 66%, 66%); | 44 border: 1px solid rgb(66%, 66%, 66%); |
44 } | 45 } |
45 | 46 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 height: 16px; | 102 height: 16px; |
102 } | 103 } |
103 | 104 |
104 .event-listener-breakpoints .checkbox-elem { | 105 .event-listener-breakpoints .checkbox-elem { |
105 float: left; | 106 float: left; |
106 top: -2px; | 107 top: -2px; |
107 position: relative; | 108 position: relative; |
108 left: -1px; | 109 left: -1px; |
109 font-size: 10px; | 110 font-size: 10px; |
110 } | 111 } |
OLD | NEW |