This file is indexed.

/usr/share/doc/compass-normalize-plugin/examples/fork-versions/typey-chroma-kss/base/interactive/_interactive.scss is in compass-normalize-plugin 6.0.0-2.

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
// Interactive
//
// Style guide: base.interactive

// Details
//
// Style guide: base.interactive.details

details {
  // Add the correct display in Edge, IE, and Firefox.
  display: block;
}

summary {
  // Add the correct display in all browsers.
  display: list-item;
}

// Menu
//
// Style guide: base.interactive.menu

menu {
  // Set 1 unit of vertical rhythm on the top and bottom margin.
  @include margin(1 0);
  // Add the correct display in IE 9-.
  display: block;
  // Set consistent space for the list style image.
  padding: 0 0 0 $indent-amount;

  @include rtl {
    padding: 0 $indent-amount 0 0;
  }

  // Turn off margins on nested lists.
  menu &,
  ol &,
  ul & {
    margin: 0;
  }
}