This file is indexed.

/usr/share/mopidy/mopidy/frontends/http/data/mopidy.css is in mopidy 0.17.0-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
html {
    background: #e8ecef;
    color: #555;
    font-family: "Droid Serif", "Georgia", "Times New Roman", "Palatino",
    "Hoefler Text", "Baskerville", serif;
    font-size: 150%;
    line-height: 1.4em;
}
body {
    max-width: 20em;
    margin: 0 auto;
}
div.box {
    background: white;
    border-radius: 5px;
    box-shadow: 5px 5px 5px #d8dcdf;
    margin: 2em 0;
    padding: 1em;
}
div.box.focus {
    background: #465158;
    color: #e8ecef;
}
div.icon {
    float: right;
}
h1, h2 {
    font-family: "Ubuntu", "Arial", "Helvetica", "Lucida Grande",
    "Verdana", "Gill Sans", sans-serif;
    line-height: 1.1em;
}
h2 {
    margin: 0.2em 0 0;
}
p.next {
    text-align: right;
}
a {
    color: #555;
    text-decoration: none;
    border-bottom: 1px dotted;
}
img {
    border: 0;
}
code, pre {
    font-family: "Droid Sans Mono", Menlo, Courier New, Courier, Mono, monospace;
    font-size: 9pt;
    line-height: 1.2em;
    padding: 0.5em 1em;
    margin: 1em 0;
    white-space: pre;
    overflow: auto;
}
.box code,
.box pre {
    background: #e8ecef;
    color: #555;
}
.box a {
    color: #465158;
}
.box a:hover {
    opacity: 0.8;
}
.box.focus a {
    color: #e8ecef;
}
.center {
    text-align: center;
}
#ws-console {
    height: 200px;
    overflow: auto;
}