summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/devtools/front_end/audits/auditResultTree.css
blob: c2a5fd41f602a38f6de0bf23294400634e0b41f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * Copyright 2015 The Chromium Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

.severity {
    background-image: url(Images/toolbarButtonGlyphs.png);
    background-size: 352px 168px;
    display: inline-block;
    width: 10px;
    height: 10px;
    position: relative;
    top: 1px;
    margin-right: 4px;
}

li {
    -webkit-user-select: text;
}

@media (-webkit-min-device-pixel-ratio: 1.5) {
.severity {
    background-image: url(Images/toolbarButtonGlyphs_2x.png);
}
} /* media */

.severity.severe {
    background-position: -224px -96px;
}

.severity.warning {
    background-position: -246px -96px;
}

.severity.info {
    background-position: -235px -96px;
}
.audit-result {
    font-weight: bold;
}