This file is indexed.

/usr/share/xul-ext/form-history-control/chrome/skin/classic/treerows.css is in xul-ext-form-history-control 1.4.0.6-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
/* Default tree skin, suitable for standard OS color theme */
treechildren::-moz-tree-row(CustomDefault) {
  background-color: #F0F0F0;
}
treechildren::-moz-tree-row(CustomDefault, odd) {
  background-color: #F6F6F6;
}
treechildren::-moz-tree-row(CustomDefault, selected) {
  background-color: #C0C0C0;
}
treechildren::-moz-tree-row(CustomDefault, odd, selected) {
  background-color: #BABABA;
}
treechildren::-moz-tree-row(CustomDefault, hover) {
  background-color: #D3E8ED;
}
treechildren::-moz-tree-row(CustomDefault, hover, selected) {
  background-color: #8AA8B8;
}


/* Dark tree skin, suitable for dark (light text on dark BG) OS theme */
treechildren::-moz-tree-row(CustomDark) {
  background-color: #515151;
}
treechildren::-moz-tree-row(CustomDark, odd) {
  background-color: #565656;
}
treechildren::-moz-tree-row(CustomDark, selected) {
  background-color: #808080;
}
treechildren::-moz-tree-row(CustomDark, odd, selected) {
  background-color: #7A7A7A;
}
treechildren::-moz-tree-row(CustomDark, hover) {
  background-color: #63787D;
}
treechildren::-moz-tree-row(CustomDark, hover, selected) {
  background-color: #6A8898;
}