| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 background-color: rgb(255, 255, 194); | 91 background-color: rgb(255, 255, 194); |
| 92 height: 18px; | 92 height: 18px; |
| 93 left: 0; | 93 left: 0; |
| 94 margin-top: -16px; | 94 margin-top: -16px; |
| 95 position: absolute; | 95 position: absolute; |
| 96 right: 0; | 96 right: 0; |
| 97 z-index: -1; | 97 z-index: -1; |
| 98 } | 98 } |
| 99 | 99 |
| 100 .event-listener-breakpoints { | 100 .event-listener-breakpoints { |
| 101 margin-top: 0; | 101 margin: 0; |
| 102 padding: 2px 6px; | 102 padding: 2px 6px; |
| 103 list-style: none; | 103 list-style: none; |
| 104 min-height: 18px; | 104 min-height: 18px; |
| 105 } | 105 } |
| 106 | 106 |
| 107 .event-listener-breakpoints ol { | 107 .event-listener-breakpoints ol { |
| 108 display: none; | 108 display: none; |
| 109 margin: 0; | 109 margin: 0; |
| 110 -webkit-padding-start: 12px; | 110 -webkit-padding-start: 12px; |
| 111 list-style: none; | 111 list-style: none; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 } | 167 } |
| 168 | 168 |
| 169 .dom-breakpoints-list > li { | 169 .dom-breakpoints-list > li { |
| 170 display: flex; | 170 display: flex; |
| 171 } | 171 } |
| 172 | 172 |
| 173 .dom-breakpoints-list .dom-breakpoint > div { | 173 .dom-breakpoints-list .dom-breakpoint > div { |
| 174 overflow: hidden; | 174 overflow: hidden; |
| 175 text-overflow: ellipsis; | 175 text-overflow: ellipsis; |
| 176 } | 176 } |
| OLD | NEW |