This file is indexed.

/usr/share/pyshared/mdp/hinet/hinet.css is in python-mdp 3.3-1.

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
/*
CSS for hinet representation.

Warning: In nested tables the top table css overwrites the nested css if
   they are specified like 'table.flow td' (i.e. all td's below this table).
   So be careful about hiding/overriding nested td's.

The tables "nodestruct" are used to separate the dimension values from 
the actual node text.
*/

table.flow {
    border-collapse: separate;
    padding: 3px;
    border: 3px double;
    border-color: #003399;
}

table.flow table {
    width: 100%;
    padding: 0 3px;
    border-color: #003399; 
}

table.flow td {
    padding: 1px;
    border-style: none;
}

table.layer {
    border-collapse: separate;
    border: 2px dashed;
}

table.flownode {
    border-collapse: separate;
    border: 1px dotted;
}

table.nodestruct {
    border-style: none;
}

table.node {
    border-collapse: separate;
    border: 1px solid;
    border-spacing: 2px;
}

td.nodename {
    font-size: normal;
    text-align: center;
}

td.nodeparams {
    font-size: xx-small;
    text-align: left;
}

td.dim {
    font-size: xx-small;
    text-align: center;
    color: #008ADC;
}

span.memorycolor {
    color: #CCBB77;
}