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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 text-align: center; | 191 text-align: center; |
192 font-style: italic; | 192 font-style: italic; |
193 padding: 4px; | 193 padding: 4px; |
194 color: #888; | 194 color: #888; |
195 background-color: #FFFFC2; | 195 background-color: #FFFFC2; |
196 } | 196 } |
197 | 197 |
198 .sidebar-pane-button-new-rule { | 198 .sidebar-pane-button-new-rule { |
199 background-image: url(Images/paneAddButtons.png); | 199 background-image: url(Images/paneAddButtons.png); |
200 background-position: 0 0; | 200 background-position: 0 0; |
| 201 position: absolute; |
201 height: 16px; | 202 height: 16px; |
202 width: 22px; | 203 width: 22px; |
203 float: right; | 204 right: 0px; |
204 visibility: hidden; | 205 bottom: 1px; |
205 } | 206 } |
206 | 207 |
207 .styles-section.matched-styles:not(.read-only):hover .sidebar-pane-button-new-ru
le { | 208 .styles-section.matched-styles:not(.read-only):hover .sidebar-pane-button-new-ru
le { |
208 visibility: visible; | 209 visibility: visible; |
209 } | 210 } |
210 | 211 |
211 .sidebar-pane-button-new-rule:hover { | 212 .sidebar-pane-button-new-rule:hover { |
212 background-position: -23px 0; | 213 background-position: -23px 0; |
213 } | 214 } |
OLD | NEW |