| 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 25 matching lines...) Expand all Loading... |
| 36 overflow: hidden; | 36 overflow: hidden; |
| 37 } | 37 } |
| 38 | 38 |
| 39 .scripts-debug-toolbar-drawer { | 39 .scripts-debug-toolbar-drawer { |
| 40 flex: 0 0 52px; | 40 flex: 0 0 52px; |
| 41 -webkit-transition: margin-top 0.1s ease-in-out; | 41 -webkit-transition: margin-top 0.1s ease-in-out; |
| 42 margin-top: -26px; | 42 margin-top: -26px; |
| 43 padding-top: 25px; | 43 padding-top: 25px; |
| 44 background-color: white; | 44 background-color: white; |
| 45 overflow: hidden; | 45 overflow: hidden; |
| 46 white-space: nowrap; |
| 46 } | 47 } |
| 47 | 48 |
| 48 .scripts-debug-toolbar-drawer.expanded { | 49 .scripts-debug-toolbar-drawer.expanded { |
| 49 margin-top: 0; | 50 margin-top: 0; |
| 50 } | 51 } |
| 51 | 52 |
| 52 .scripts-debug-toolbar-drawer > label { | 53 .scripts-debug-toolbar-drawer > label { |
| 53 display: flex; | 54 display: flex; |
| 54 padding-left: 3px; | 55 padding-left: 3px; |
| 55 height: 28px; | 56 height: 28px; |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 } | 202 } |
| 202 | 203 |
| 203 .scope-chain-sidebar-pane-section { | 204 .scope-chain-sidebar-pane-section { |
| 204 padding: 2px 4px 2px 4px; | 205 padding: 2px 4px 2px 4px; |
| 205 flex: none; | 206 flex: none; |
| 206 } | 207 } |
| 207 | 208 |
| 208 .event-listeners-sidebar-pane .toolbar { | 209 .event-listeners-sidebar-pane .toolbar { |
| 209 border-bottom: 1px solid #eee; | 210 border-bottom: 1px solid #eee; |
| 210 } | 211 } |
| OLD | NEW |