This file is indexed.

/usr/share/webext/browserpass/styles.css is in webext-browserpass 2.0.11+dfsg-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
 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
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
body {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  min-width: 280px;
  background: white;
  font-size: 14px;
}

.search input {
  box-sizing: border-box;
  width: 100%;
  padding: 6px;
  border: 0;
  border-bottom: 1px solid #bbb;
  background: url("icon-search.svg") center right 6px no-repeat;
  background-size: 16px 16px;
  background-color: white;
  color: black;
  padding-right: 20px;
}

.search input:focus {
  outline: 0;
}

.status-text {
  padding: 6px;
}

.results {
  width: 100%;
  min-width: 160px;
}

.entry {
  display:flex;
  flex-flow: row;
  border: 0;
  border-bottom: 1px dotted #ccc;
}

.copy {
  width: 32px;
  border: 0;
  cursor: pointer;
}

.username {
  background: no-repeat url('icon-user.svg') center;
  background-size: 16px 16px;
}

.password {
  background: no-repeat url('icon-key.svg') center;
  background-size: 16px 16px;
}

.login {
  flex: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 12px;
  cursor: pointer;
  border: 0;
  text-align: left;
  background-color: white;
  color: black;
  line-height: 1.2;
  white-space: nowrap;
}

.login.favicon {
  background-repeat: no-repeat;
  background-position: left 8px center;
  background-size: 16px 16px;
  padding-left: 32px;
}

.entry:last-of-type{
  border-bottom: 0;
}

.entry>*:hover,
.entry>*:focus {
  outline: 0;
  background-color: #eee;
}

.loader {
  margin: 12px auto;
  display: block;
  text-indent: -9999999px;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-left-color: #000000;
  -webkit-transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  overflow: hidden;
  border-radius: 50%;
  vertical-align: middle;
  width: 12px;
  height: 12px;
}

#clipboard-container {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 0px;
  z-index: 100;
  opacity: 0;
}

#clipboard {
  width: 1px;
  height: 1px;
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}