/usr/share/webext/browserpass/otp.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 | body {
margin: 0;
padding: 8px;
width: max-content;
width: -moz-max-content;
font-family: monospace;
font-size: 1em;
white-space: nowrap;
}
button {
background: #eeeeee;
color: black;
border: 1px solid #888888;
border-radius: 2px;
padding: 1px 6px;
}
button:focus {
background: #cccccc;
}
#otp {
text-align: center;
border: 1px solid #888888;
border-radius: 2px;
background: white;
color: black;
}
#copy-icon {
height: 1em;
vertical-align: middle;
}
|