| 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 11 matching lines...) Expand all Loading... |
| 22 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 22 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 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 .sidebar-pane { | 30 .sidebar-pane { |
| 31 position: relative; | 31 position: relative; |
| 32 flex: auto; |
| 32 } | 33 } |
| 33 | 34 |
| 34 .sidebar-pane > .body { | 35 .sidebar-pane > .body { |
| 35 position: relative; | 36 position: relative; |
| 36 display: none; | 37 display: none; |
| 37 overflow-y: auto; | 38 overflow-y: auto; |
| 38 overflow-x: hidden; | 39 overflow-x: hidden; |
| 39 } | 40 } |
| 40 | 41 |
| 41 .sidebar-pane > .body .info { | 42 .sidebar-pane > .body .info { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 53 | 54 |
| 54 .sidebar-pane.visible > .body { | 55 .sidebar-pane.visible > .body { |
| 55 display: block; | 56 display: block; |
| 56 } | 57 } |
| 57 | 58 |
| 58 .sidebar-pane .section .properties { | 59 .sidebar-pane .section .properties { |
| 59 padding-left: 16px; | 60 padding-left: 16px; |
| 60 } | 61 } |
| 61 | 62 |
| 62 .sidebar-tabbed-pane .tabbed-pane-header { | 63 .sidebar-tabbed-pane .tabbed-pane-header { |
| 63 background-image: -webkit-linear-gradient(rgb(243,243,243), rgb(235,235,235)
); | |
| 64 border-bottom: 1px solid rgb(202, 202, 202); | 64 border-bottom: 1px solid rgb(202, 202, 202); |
| 65 background-color: rgb(236, 236, 236); |
| 65 } | 66 } |
| 66 | 67 |
| 67 .sidebar-pane-stack > .sidebar-pane.visible:nth-last-of-type(1) { | 68 .sidebar-pane-stack > .sidebar-pane.visible:nth-last-of-type(1) { |
| 68 border-bottom: 1px solid rgb(189, 189, 189); | 69 border-bottom: 1px solid rgb(189, 189, 189); |
| 69 } | 70 } |
| 70 | 71 |
| 71 .sidebar-pane-title { | 72 .sidebar-pane-title { |
| 72 position: relative; | 73 position: relative; |
| 73 background: rgb(230, 230, 230); | 74 background: rgb(240, 240, 240); |
| 74 height: 20px; | 75 height: 20px; |
| 75 padding: 0 5px; | 76 padding: 0 5px; |
| 76 border-top: 1px solid rgb(189, 189, 189); | 77 border-top: 1px solid rgb(189, 189, 189); |
| 77 border-bottom: 1px solid rgb(189, 189, 189); | 78 border-bottom: 1px solid rgb(189, 189, 189); |
| 78 line-height: 18px; | 79 line-height: 18px; |
| 79 background-origin: padding; | 80 background-origin: padding; |
| 80 background-clip: padding; | 81 background-clip: padding; |
| 81 margin-top: -1px; | 82 margin-top: -1px; |
| 82 } | 83 } |
| 83 | 84 |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 | 176 |
| 176 .sidebar-pane-subtitle input, | 177 .sidebar-pane-subtitle input, |
| 177 .section > .header input[type=checkbox] { | 178 .section > .header input[type=checkbox] { |
| 178 height: 1em; | 179 height: 1em; |
| 179 width: 1em; | 180 width: 1em; |
| 180 margin-left: 0; | 181 margin-left: 0; |
| 181 margin-top: 0; | 182 margin-top: 0; |
| 182 margin-bottom: 0.25em; | 183 margin-bottom: 0.25em; |
| 183 vertical-align: bottom; | 184 vertical-align: bottom; |
| 184 } | 185 } |
| OLD | NEW |