This file is indexed.

/usr/share/maas/web/static/css/components/table_list.css is in maas-region-controller-min 1.5+bzr2252-0ubuntu1.

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
76
77
78
79
80
81
82
83
84
table.list {
    border-collapse: separate;
    margin-bottom: 10px;
    }

table.list th {
    padding: 5px;
    }

table.list tr.odd {
    background-color: #f2f2f2;
    }

table.list td {
    padding: 7px 5px;
    border-width: 1px 0;
    border-style: solid;
    border-color: transparent;
    }

table.list.clickable td:first-child {
    border-left-width: 1px;
    -moz-border-radius: 4px 0 0 4px;
    -webkit-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
    }

table.list.clickable td:last-child {
    border-right-width: 1px;
    -moz-border-radius: 0 4px 4px 0;
    -webkit-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
    }

table.list.clickable tr:hover td {
    border-color: #dd4814;
    cursor: pointer;
    }

table.list .icon-controls {
    vertical-align: top;
    text-align: right;
    }

table.list tr.warning {
    background-color: #ecd7a9;
    }

.sort-none,
.sort-asc,
.sort-desc {
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 16px;
    }

.sort-asc {
    background-image: url('../?img/sort_ascending.png');
    }

.sort-desc {
    background-image: url('../?img/sort_descending.png');
    }

/* ul list */
ul.list {
    list-style: none;
    padding: 0;
    margin: 0;
    }

ul.list li {
    padding: 2px 0;
    }

ul.list .icon {
    padding: 2px 0 0 0;
    }

.bulk-actions {
    right: 0;
    position: absolute;
    top: 0;
    }