/usr/share/webext/privacy-badger/skin/options-layout.css is in webext-privacy-badger 2018.2.5-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 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 | body
{
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
padding: 20px;
width: 100%;
}
td
{
font-size: 13px;
vertical-align: top;
text-align: left;
}
p
{
margin-top: 0.5em;
}
button
{
white-space: pre;
}
#pbInstructions {
margin-bottom: 20px;
}
#tab-manage-data {
overflow: auto;
}
#import {
width: 350px;
float: left;
}
#export {
width: 350px;
float: left;
}
.importInput{
visibility: hidden;
height: 0;
width: 0;
}
#blockedResources {
width: 390px;
}
#tracking-domains-filters {
color: #505050;
font-size: 14px;
list-style-type: none;
margin: 10px 0;
padding: 0;
max-width: 390px;
}
#tracking-domains-filters li {
margin: 5px 0;
display: flex;
flex-wrap: wrap;
align-items: center;
}
#tracking-domains-filters > li > label {
flex: 1 0 150px; /* at least this wide */
max-width: 150px; /* at most this wide */
}
#tracking-domains-filters > li > label + * {
flex: 1 0 200px; /* at least this wide or wrap */
}
.clickerContainer {
max-height: 400px; /* override popup.css */
}
#settingsSuffix{
color: #555;
font-size: 12px;
width: 500px;
position: relative;
left: 50px;
}
a, a:hover, a:active, a:visited{
color: #00aaaa;
text-decoration: underline;
}
|