This file is indexed.

/usr/share/xul-ext/automatic-save-folder/skin/style.css is in xul-ext-automatic-save-folder 1.0.4-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
76
77
78
79
80
81
82
83
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

  /* Toolbar buttons */

#asf-toolbar-icon-preferences
{
  list-style-image: url("chrome://asf/skin/asf-icon_24x24.png");
}

toolbar[iconsize="small"] #asf-toolbar-icon-preferences, #asf-menu-preferences
{
  list-style-image: url("chrome://asf/skin/asf-icon_16x16.png");
}

  /* options */
  
#tooltip_domainTestOrder description {
  font-weight: bold;
  margin-bottom: 0px;
}

  /* Filter tree */

treechildren::-moz-tree-checkbox
{
  /* unchecked checkbox treecells */
  list-style-image: url("chrome://asf/skin/off.png");
}
treechildren::-moz-tree-checkbox(checked)
{
  /* checked checkbox treecells*/
  list-style-image: url("chrome://asf/skin/on.png");
}
treechildren::-moz-tree-checkbox(disabled)
{
  /* disabled checkbox treecells */
  list-style-image: none;
}

  /* filtered row color */
treechildren::-moz-tree-row(FilterTestPass)
{
  background-color: #CDFFB5;
}

treechildren::-moz-tree-row(FilterTestFail)
{
  background-color: #F9CBCB;
}

  /* filtered & selected row color */
treechildren::-moz-tree-row(FilterTestPassSelected)
{
  background-color: #CDFFB5;
  border: solid 1px #000000;
}

treechildren::-moz-tree-row(FilterTestFailSelected)
{
  background-color: #F9CBCB;
  border: solid 1px #000000;
}

  /* filtered & selected row text color */
treechildren::-moz-tree-cell-text(FilterTestPassSelected)
{
  color: #000000;
}

treechildren::-moz-tree-cell-text(FilterTestFailSelected)
{
  color: #000000;
}

treechildren::-moz-tree-row(FilterDragCopy_set)
{
  border-top: solid 1px #000000;
}

treechildren::-moz-tree-row(FilterDragCopy_remove)
{
  border-top: solid 0px #000000;
}