OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2009 Google Inc. All rights reserved. | 3 * Copyright (C) 2009 Google Inc. All rights reserved. |
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 are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 margin-left: -28px; | 149 margin-left: -28px; |
150 margin-top: 3px; | 150 margin-top: 3px; |
151 } | 151 } |
152 | 152 |
153 @media (-webkit-min-device-pixel-ratio: 1.5) { | 153 @media (-webkit-min-device-pixel-ratio: 1.5) { |
154 .audit-result-view .severity-severe, | 154 .audit-result-view .severity-severe, |
155 .audit-result-view .severity-warning, | 155 .audit-result-view .severity-warning, |
156 .audit-result-view .severity-info { | 156 .audit-result-view .severity-info { |
157 background-image: url(Images/statusbarButtonGlyphs2x.png); | 157 background-image: url(Images/statusbarButtonGlyphs2x.png); |
158 } | 158 } |
159 } | 159 } /* media */ |
160 | 160 |
161 .audit-result-view .severity-severe { | 161 .audit-result-view .severity-severe { |
162 background-position: -224px -96px; | 162 background-position: -224px -96px; |
163 } | 163 } |
164 | 164 |
165 .audit-result-view .severity-warning { | 165 .audit-result-view .severity-warning { |
166 background-position: -246px -96px; | 166 background-position: -246px -96px; |
167 } | 167 } |
168 | 168 |
169 .audit-result-view .severity-info { | 169 .audit-result-view .severity-info { |
(...skipping 13 matching lines...) Expand all Loading... |
183 margin-left: 3px; | 183 margin-left: 3px; |
184 margin-right: 4px; | 184 margin-right: 4px; |
185 position: relative; | 185 position: relative; |
186 top: 2px; | 186 top: 2px; |
187 } | 187 } |
188 | 188 |
189 @media (-webkit-min-device-pixel-ratio: 1.5) { | 189 @media (-webkit-min-device-pixel-ratio: 1.5) { |
190 .audit-result-tree li.parent::before { | 190 .audit-result-tree li.parent::before { |
191 background-image: url(Images/statusbarButtonGlyphs2x.png); | 191 background-image: url(Images/statusbarButtonGlyphs2x.png); |
192 } | 192 } |
193 } | 193 } /* media */ |
194 | 194 |
195 .audit-result-tree li.parent::before { | 195 .audit-result-tree li.parent::before { |
196 background-position: -4px -96px; | 196 background-position: -4px -96px; |
197 } | 197 } |
198 | 198 |
199 .audit-result-tree li.parent.expanded::before { | 199 .audit-result-tree li.parent.expanded::before { |
200 background-position: -20px -96px; | 200 background-position: -20px -96px; |
201 } | 201 } |
202 | 202 |
203 .audit-result-tree { | 203 .audit-result-tree { |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 font-weight: bold; | 256 font-weight: bold; |
257 } | 257 } |
258 | 258 |
259 .audit-launcher-view .progress-bar-container { | 259 .audit-launcher-view .progress-bar-container { |
260 display: inline-block; | 260 display: inline-block; |
261 } | 261 } |
262 | 262 |
263 .audit-launcher-view .progress-bar-container .progress-bar-stop-button { | 263 .audit-launcher-view .progress-bar-container .progress-bar-stop-button { |
264 display: none; | 264 display: none; |
265 } | 265 } |
OLD | NEW |