| 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 17 matching lines...) Expand all Loading... |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 .sidebar-hidden-override { | 30 .sidebar-hidden-override { |
| 31 display: none !important; | 31 display: none !important; |
| 32 } | 32 } |
| 33 | 33 |
| 34 .expandable-view-title { | 34 .expandable-view-title { |
| 35 display: flex; | 35 display: flex; |
| 36 align-items: center; | 36 align-items: center; |
| 37 background-color: #eee; | 37 background-color: #eee; |
| 38 height: 20px; | 38 height: 26px; |
| 39 padding: 0 5px; | 39 padding: 0 5px; |
| 40 border-top: 1px solid #dadada; | 40 border-top: 1px solid #dadada; |
| 41 white-space: nowrap; | 41 white-space: nowrap; |
| 42 overflow: hidden; | 42 overflow: hidden; |
| 43 position: relative; | 43 position: relative; |
| 44 border-bottom: 1px solid transparent; |
| 44 } | 45 } |
| 45 | 46 |
| 46 .expandable-view-title.expanded, | 47 .expandable-view-title.expanded, |
| 47 .expandable-view-title:last-child { | 48 .expandable-view-title:last-child { |
| 48 border-bottom: 1px solid #ddd; | 49 border-bottom: 1px solid #ddd; |
| 49 } | 50 } |
| 50 | 51 |
| 51 .expandable-view-title::before { | 52 .expandable-view-title::before { |
| 52 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); | 53 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); |
| 53 -webkit-mask-size: 352px 168px; | 54 -webkit-mask-size: 352px 168px; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 71 -webkit-mask-position: -4px -96px; | 72 -webkit-mask-position: -4px -96px; |
| 72 } | 73 } |
| 73 | 74 |
| 74 .expandable-view-title.expanded::before { | 75 .expandable-view-title.expanded::before { |
| 75 -webkit-mask-position: -20px -96px; | 76 -webkit-mask-position: -20px -96px; |
| 76 } | 77 } |
| 77 | 78 |
| 78 .expandable-view-title > .toolbar { | 79 .expandable-view-title > .toolbar { |
| 79 position: absolute; | 80 position: absolute; |
| 80 right: 0; | 81 right: 0; |
| 81 top: -3px; | 82 top: 0; |
| 82 } | 83 } |
| 83 | 84 |
| 84 .sidebar-pane-container .toolbar { | 85 .sidebar-pane-container .toolbar { |
| 85 border-bottom: 1px solid #eee; | 86 border-bottom: 1px solid #eee; |
| 86 } | 87 } |
| 87 | 88 |
| 88 .sidebar-pane-container .toolbar > * { | 89 .sidebar-pane-container .toolbar > * { |
| 89 pointer-events: auto; | 90 pointer-events: auto; |
| 90 } | 91 } |
| OLD | NEW |