Chromium Code Reviews| 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 13 matching lines...) Expand all Loading... | |
| 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 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: #eee; | 34 background-color: #f3f3f3; |
| 35 border-bottom: 1px solid #ddd; | 35 border-bottom: 1px solid #ddd; |
| 36 height: 23px; | |
| 37 } | 36 } |
| 38 | 37 |
| 39 .material .scripts-debug-toolbar { | 38 .material .scripts-debug-toolbar { |
| 40 height: 28px; | 39 height: 28px; |
|
dgozman
2015/06/11 16:14:12
You've removed material from inspectorViewToolbar,
pfeldman
2015/06/11 16:38:07
Done.
| |
| 41 overflow: hidden; | 40 overflow: hidden; |
| 42 } | 41 } |
| 43 | 42 |
| 44 .scripts-debug-toolbar { | 43 .scripts-debug-toolbar { |
| 45 margin-top: -1px; | |
| 46 height: 24px; | |
| 47 overflow: hidden; | 44 overflow: hidden; |
|
dgozman
2015/06/11 16:14:12
merge into first rule
pfeldman
2015/06/11 16:38:07
Done.
| |
| 48 } | 45 } |
| 49 | 46 |
| 50 .scripts-debug-toolbar-drawer { | 47 .scripts-debug-toolbar-drawer { |
| 51 flex: 0 0 46px; | 48 flex: 0 0 52px; |
| 52 -webkit-transition: margin-top 0.1s ease-in-out; | 49 -webkit-transition: margin-top 0.1s ease-in-out; |
| 53 margin-top: -23px; | 50 margin-top: -26px; |
| 54 padding-top: 22px; | 51 padding-top: 25px; |
| 55 border-bottom: 1px solid rgb(202, 202, 202); | |
| 56 background-color: white; | 52 background-color: white; |
| 57 overflow: hidden; | 53 overflow: hidden; |
| 58 } | 54 } |
| 59 | 55 |
| 60 .material .scripts-debug-toolbar-drawer { | 56 .material .scripts-debug-toolbar-drawer { |
| 61 flex: 0 0 54px; | 57 flex: 0 0 54px; |
| 62 margin-top: -27px; | 58 margin-top: -27px; |
| 63 padding-top: 26px; | 59 padding-top: 26px; |
| 64 } | 60 } |
| 65 | 61 |
| 66 .scripts-debug-toolbar-drawer.expanded { | 62 .scripts-debug-toolbar-drawer.expanded { |
| 67 margin-top: 0; | 63 margin-top: 0; |
| 68 } | 64 } |
| 69 | 65 |
| 70 .scripts-debug-toolbar-drawer > label { | 66 .scripts-debug-toolbar-drawer > label { |
| 71 display: flex; | 67 display: flex; |
| 72 padding-left: 3px; | 68 padding-left: 3px; |
| 73 border-top: 1px solid rgb(196,196,196); | 69 height: 28px; |
| 74 height: 24px; | |
| 75 } | 70 } |
| 76 | 71 |
| 77 .sources-editor-tabstrip-left { | 72 .sources-editor-tabstrip-left { |
| 78 width: 22px; | 73 width: 22px; |
| 79 } | 74 } |
| 80 | 75 |
| 81 .sources-editor-tabstrip-right { | 76 .sources-editor-tabstrip-right { |
| 82 width: 36px; | 77 width: 36px; |
| 83 } | 78 } |
| 84 | 79 |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 258 | 253 |
| 259 .scope-chain-sidebar-pane-section-title { | 254 .scope-chain-sidebar-pane-section-title { |
| 260 font-weight: normal; | 255 font-weight: normal; |
| 261 word-wrap: break-word; | 256 word-wrap: break-word; |
| 262 white-space: normal; | 257 white-space: normal; |
| 263 } | 258 } |
| 264 | 259 |
| 265 .scope-chain-sidebar-pane-section { | 260 .scope-chain-sidebar-pane-section { |
| 266 padding: 2px 4px 2px 4px; | 261 padding: 2px 4px 2px 4px; |
| 267 } | 262 } |
| OLD | NEW |