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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 vertical-align: bottom; | 187 vertical-align: bottom; |
188 } | 188 } |
189 | 189 |
190 .hidden-placards-message { | 190 .hidden-placards-message { |
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 |
| 198 .sidebar-pane-button-new-rule { |
| 199 background-image: url(Images/paneAddButtons.png); |
| 200 background-position: 0 0; |
| 201 height: 16px; |
| 202 width: 22px; |
| 203 float: right; |
| 204 visibility: hidden; |
| 205 } |
| 206 |
| 207 .styles-section.matched-styles:not(.read-only):hover .sidebar-pane-button-new-ru
le { |
| 208 visibility: visible; |
| 209 } |
| 210 |
| 211 .sidebar-pane-button-new-rule:hover { |
| 212 background-position: -23px 0; |
| 213 } |
OLD | NEW |