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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 content: "a"; | 103 content: "a"; |
104 color: transparent; | 104 color: transparent; |
105 position: relative; | 105 position: relative; |
106 top: 3px; | 106 top: 3px; |
107 } | 107 } |
108 | 108 |
109 @media (-webkit-min-device-pixel-ratio: 1.5) { | 109 @media (-webkit-min-device-pixel-ratio: 1.5) { |
110 .sidebar-pane-title::before { | 110 .sidebar-pane-title::before { |
111 background-image: url(Images/statusbarButtonGlyphs2x.png); | 111 background-image: url(Images/statusbarButtonGlyphs2x.png); |
112 } | 112 } |
113 } | 113 } /* media */ |
114 | 114 |
115 .sidebar-pane-title::before { | 115 .sidebar-pane-title::before { |
116 background-position: -4px -96px; | 116 background-position: -4px -96px; |
117 } | 117 } |
118 | 118 |
119 .sidebar-pane-title.expanded::before { | 119 .sidebar-pane-title.expanded::before { |
120 background-position: -20px -96px; | 120 background-position: -20px -96px; |
121 } | 121 } |
122 | 122 |
123 .sidebar-pane-toolbar { | 123 .sidebar-pane-toolbar { |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 .sidebar-pane-subtitle input, | 181 .sidebar-pane-subtitle input, |
182 .section > .header input[type=checkbox] { | 182 .section > .header input[type=checkbox] { |
183 font-size: inherit; | 183 font-size: inherit; |
184 height: 1em; | 184 height: 1em; |
185 width: 1em; | 185 width: 1em; |
186 margin-left: 0; | 186 margin-left: 0; |
187 margin-top: 0; | 187 margin-top: 0; |
188 margin-bottom: 0.25em; | 188 margin-bottom: 0.25em; |
189 vertical-align: bottom; | 189 vertical-align: bottom; |
190 } | 190 } |
OLD | NEW |