| 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 14 matching lines...) Expand all Loading... |
| 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 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 .scripts-debug-toolbar { | 30 .scripts-debug-toolbar { |
| 31 position: absolute; | 31 position: absolute; |
| 32 top: 0; | 32 top: 0; |
| 33 width: 100%; | 33 width: 100%; |
| 34 background-color: #f3f3f3; | 34 background-color: #f3f3f3; |
| 35 border-bottom: 1px solid #ddd; | 35 border-bottom: 1px solid #ccc; |
| 36 overflow: hidden; | 36 overflow: hidden; |
| 37 } | 37 } |
| 38 | 38 |
| 39 .scripts-debug-toolbar-drawer { | 39 .scripts-debug-toolbar-drawer { |
| 40 flex: 0 0 53px; | 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 } | 46 } |
| 47 | 47 |
| 48 .material .scripts-debug-toolbar-drawer { | 48 .material .scripts-debug-toolbar-drawer { |
| 49 flex: 0 0 54px; | 49 flex: 0 0 54px; |
| 50 margin-top: -27px; | 50 margin-top: -27px; |
| 51 padding-top: 26px; | 51 padding-top: 26px; |
| 52 } | 52 } |
| 53 | 53 |
| 54 .scripts-debug-toolbar-drawer.expanded { | 54 .scripts-debug-toolbar-drawer.expanded { |
| 55 margin-top: 0; | 55 margin-top: 0; |
| 56 } | 56 } |
| 57 | 57 |
| 58 .scripts-debug-toolbar-drawer > label { | 58 .scripts-debug-toolbar-drawer > label { |
| 59 display: flex; | 59 display: flex; |
| 60 padding-left: 3px; | 60 padding-left: 3px; |
| 61 height: 28px; | 61 height: 28px; |
| 62 border-bottom: 1px solid #dadada; | |
| 63 } | 62 } |
| 64 | 63 |
| 65 .sources-editor-tabstrip-left { | 64 .sources-editor-tabstrip-left { |
| 66 width: 22px; | 65 width: 22px; |
| 67 } | 66 } |
| 68 | 67 |
| 69 .sources-editor-tabstrip-right { | 68 .sources-editor-tabstrip-right { |
| 70 width: 36px; | 69 width: 36px; |
| 71 } | 70 } |
| 72 | 71 |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 | 245 |
| 247 .scope-chain-sidebar-pane-section-title { | 246 .scope-chain-sidebar-pane-section-title { |
| 248 font-weight: normal; | 247 font-weight: normal; |
| 249 word-wrap: break-word; | 248 word-wrap: break-word; |
| 250 white-space: normal; | 249 white-space: normal; |
| 251 } | 250 } |
| 252 | 251 |
| 253 .scope-chain-sidebar-pane-section { | 252 .scope-chain-sidebar-pane-section { |
| 254 padding: 2px 4px 2px 4px; | 253 padding: 2px 4px 2px 4px; |
| 255 } | 254 } |
| OLD | NEW |