This file is indexed.

/usr/lib/python2.7/dist-packages/nevow/css/Nevow/TagLibrary/TabbedPane.css is in python-nevow 0.14.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
.nevow-tabbedpane-tabs {
  display: inline;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 0.1em;
}

.nevow-tabbedpane-tab,
.nevow-tabbedpane-selected-tab {
  display: inline;
  padding: 0 2em;
  border: 1px solid #666;
  background: #eee;
  cursor: pointer;
  margin-right: 0.25em;
}

.nevow-tabbedpane-tab:hover {
  background: #f5f5f5;
}

.nevow-tabbedpane-selected-tab {
  border-bottom: 1px solid #fff;
  background: #fff;
}

.nevow-tabbedpane-pane {
  clear: both;
  position: absolute;
  top: -10000px;
  left: -10000px;
}

.nevow-tabbedpane-selected-pane {
  position: static;
  border: 1px solid #666;
  margin-bottom: 1em;
  padding: 1em;
}