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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 background-position: -23px 0; | 156 background-position: -23px 0; |
157 } | 157 } |
158 | 158 |
159 .sidebar-pane-toolbar > .pane-title-button:active, | 159 .sidebar-pane-toolbar > .pane-title-button:active, |
160 .sidebar-pane-toolbar > .pane-title-button.toggled { | 160 .sidebar-pane-toolbar > .pane-title-button.toggled { |
161 background-position: -46px 0; | 161 background-position: -46px 0; |
162 } | 162 } |
163 | 163 |
164 .sidebar-pane-toolbar > .pane-title-button.add { | 164 .sidebar-pane-toolbar > .pane-title-button.add { |
165 background-image: url(Images/paneAddButtons.png); | 165 background-image: url(Images/paneAddButtons.png); |
| 166 position: relative; |
| 167 } |
| 168 |
| 169 .sidebar-pane-toolbar > .pane-title-button.add .long-click-glyph { |
| 170 background-color: rgba(135, 135, 135, 1); |
| 171 -webkit-mask-image: url(Images/statusbarButtonGlyphs.png); |
| 172 -webkit-mask-position: -298px -53px; |
| 173 -webkit-mask-size: 320px 144px; |
166 } | 174 } |
167 | 175 |
168 .sidebar-pane-toolbar > .pane-title-button.element-state { | 176 .sidebar-pane-toolbar > .pane-title-button.element-state { |
169 background-image: url(Images/paneElementStateButtons.png); | 177 background-image: url(Images/paneElementStateButtons.png); |
170 } | 178 } |
171 | 179 |
172 .sidebar-pane-toolbar > .pane-title-button.refresh { | 180 .sidebar-pane-toolbar > .pane-title-button.refresh { |
173 background-image: url(Images/paneRefreshButtons.png); | 181 background-image: url(Images/paneRefreshButtons.png); |
174 } | 182 } |
175 | 183 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 visibility: hidden; | 215 visibility: hidden; |
208 } | 216 } |
209 | 217 |
210 .styles-section.matched-styles:not(.read-only):hover .sidebar-pane-button-new-ru
le { | 218 .styles-section.matched-styles:not(.read-only):hover .sidebar-pane-button-new-ru
le { |
211 visibility: visible; | 219 visibility: visible; |
212 } | 220 } |
213 | 221 |
214 .sidebar-pane-button-new-rule:hover { | 222 .sidebar-pane-button-new-rule:hover { |
215 background-position: -23px 0; | 223 background-position: -23px 0; |
216 } | 224 } |
OLD | NEW |