| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 overflow: hidden; | 42 overflow: hidden; |
| 43 position: relative; | 43 position: relative; |
| 44 border-bottom: 1px solid transparent; | 44 border-bottom: 1px solid transparent; |
| 45 } | 45 } |
| 46 | 46 |
| 47 .expandable-view-title.expanded, | 47 .expandable-view-title.expanded, |
| 48 .expandable-view-title:last-child { | 48 .expandable-view-title:last-child { |
| 49 border-bottom: 1px solid #ddd; | 49 border-bottom: 1px solid #ddd; |
| 50 } | 50 } |
| 51 | 51 |
| 52 .expandable-view-title:not(.expanded) .toolbar { |
| 53 display: none; |
| 54 } |
| 55 |
| 52 .expandable-view-title::before { | 56 .expandable-view-title::before { |
| 53 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); | 57 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); |
| 54 -webkit-mask-size: 352px 168px; | 58 -webkit-mask-size: 352px 168px; |
| 55 background-color: #888; | 59 background-color: #888; |
| 56 float: left; | 60 float: left; |
| 57 width: 11px; | 61 width: 11px; |
| 58 height: 11px; | 62 height: 11px; |
| 59 margin-right: 2px; | 63 margin-right: 2px; |
| 60 content: "a"; | 64 content: "a"; |
| 61 color: transparent; | 65 color: transparent; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 82 top: 0; | 86 top: 0; |
| 83 } | 87 } |
| 84 | 88 |
| 85 .sidebar-pane-container .toolbar { | 89 .sidebar-pane-container .toolbar { |
| 86 border-bottom: 1px solid #eee; | 90 border-bottom: 1px solid #eee; |
| 87 } | 91 } |
| 88 | 92 |
| 89 .sidebar-pane-container .toolbar > * { | 93 .sidebar-pane-container .toolbar > * { |
| 90 pointer-events: auto; | 94 pointer-events: auto; |
| 91 } | 95 } |
| OLD | NEW |