| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 The Chromium Authors. All rights reserved. | 2 * Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 .severity { | 7 .severity { |
| 8 background-image: url(Images/toolbarButtonGlyphs.png); | 8 background-image: url(Images/toolbarButtonGlyphs.png); |
| 9 background-size: 352px 168px; | 9 background-size: 352px 168px; |
| 10 display: inline-block; | 10 display: inline-block; |
| 11 width: 10px; | 11 width: 11px; |
| 12 height: 10px; | 12 height: 11px; |
| 13 position: relative; | 13 position: relative; |
| 14 top: 1px; | 14 top: 1px; |
| 15 margin-right: 4px; | 15 margin-right: 4px; |
| 16 } | 16 } |
| 17 | 17 |
| 18 li { | 18 li { |
| 19 -webkit-user-select: text; | 19 -webkit-user-select: text; |
| 20 } | 20 } |
| 21 | 21 |
| 22 @media (-webkit-min-device-pixel-ratio: 1.5) { | 22 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 23 .severity { | 23 .severity { |
| 24 background-image: url(Images/toolbarButtonGlyphs_2x.png); | 24 background-image: url(Images/toolbarButtonGlyphs_2x.png); |
| 25 } | 25 } |
| 26 } /* media */ | 26 } /* media */ |
| 27 | 27 |
| 28 .severity.severe { | 28 .severity.severe { |
| 29 background-position: -224px -96px; | 29 background-position: -224px -96px; |
| 30 } | 30 } |
| 31 | 31 |
| 32 .severity.warning { | 32 .severity.warning { |
| 33 background-position: -246px -96px; | 33 background-position: -246px -96px; |
| 34 } | 34 } |
| 35 | 35 |
| 36 .severity.info { | 36 .severity.info { |
| 37 background-position: -235px -96px; | 37 background-position: -235px -96px; |
| 38 } | 38 } |
| 39 .audit-result { | 39 .audit-result { |
| 40 font-weight: bold; | 40 font-weight: bold; |
| 41 } | 41 } |
| OLD | NEW |