This file is indexed.

/usr/share/php/kohana3.2/modules/userguide/media/guide/css/print.css is in libkohana3.2-mod-userguide-php 3.2.2-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
/* Smaller font for printing */
body {
	font:14px/1.5 Helvetica,Arial;
}

/* Show link urls, imitating markdown syntax */
a:link, a:visited { text-decoration:none; }
a:link:before, a:visited:before { content:"["; }
a:link:after, a:visited:after { content:"](" attr(href) ")"; }

/* Hide things like navigation, header links, etc. */
#kodoc-header,
#kodoc-nav,
#kodoc-menu,
#kodoc-page-toc,
.syntaxhighlighter .toolbar,
h1 a.permalink,
h2 a.permalink,
h3 a.permalink,
h4 a.permalink,
h5 a.permalink,
h6 a.permalink
{ display:none; }

pre {
	padding:1em;
	border:1px dashed #999;
}

table {
	border-left: 1px solid #999;
	border-top: 1px solid #999;
}

table td, table th {
	padding:0.4em 0.8em;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
}

/* syntax highlighter tables inside pre cause problems */
pre table, pre table td, pre table th {
	padding:0;
	border:none;
}

p.note { padding:1em; border: 1px solid black; }

p.note:before { content:"Note: "; font-weight:bold; }