2018-07-29 21:43:40 +02:00
|
|
|
body {
|
2018-08-21 21:53:13 +02:00
|
|
|
padding: 0.5em;
|
|
|
|
margin: 0;
|
2018-07-29 21:43:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2018-08-21 21:53:13 +02:00
|
|
|
.action .icon {
|
2018-07-31 14:17:39 +02:00
|
|
|
vertical-align: text-bottom;
|
2018-08-21 21:53:13 +02:00
|
|
|
height: 19px;
|
|
|
|
width: 19px;
|
2018-07-29 21:43:40 +02:00
|
|
|
margin-right: 0.25em;
|
2018-08-21 21:53:13 +02:00
|
|
|
background-color: currentColor;
|
|
|
|
mask-size: 100%;
|
|
|
|
display: inline-block;
|
2018-10-09 12:59:53 +02:00
|
|
|
}
|
|
|
|
|
2019-05-03 23:17:35 +02:00
|
|
|
.action.search {
|
2018-10-09 12:59:53 +02:00
|
|
|
padding-left: calc(0.5em + 19px + 0.25em);
|
2021-05-25 16:44:20 +02:00
|
|
|
}
|
|
|
|
|
2021-06-13 21:08:28 +02:00
|
|
|
#headerActions {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 0.5fr 50px 0.5fr;
|
|
|
|
grid-template-rows: auto;
|
|
|
|
}
|
|
|
|
|
2021-05-25 16:44:20 +02:00
|
|
|
#addonStatus {
|
2021-06-13 21:08:28 +02:00
|
|
|
grid-row: 1 / 2;
|
|
|
|
grid-column: 2 / 3;
|
2021-05-25 16:44:20 +02:00
|
|
|
border: none;
|
|
|
|
display: block;
|
|
|
|
margin: 5px auto;
|
|
|
|
width: 40px;
|
|
|
|
min-width: 0;
|
|
|
|
height: 40px;
|
|
|
|
background: none;
|
|
|
|
background-position: 50%;
|
|
|
|
background-size: 100%;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#addonStatus.unknown {
|
|
|
|
background-image: radial-gradient(black, rgba(0, 0, 0, 0), transparent);;
|
|
|
|
}
|
|
|
|
#addonStatus.off {
|
2021-06-12 00:04:17 +02:00
|
|
|
background-image: url(../icons/browserAction-CBoff.svg);
|
2021-05-25 16:44:20 +02:00
|
|
|
}
|
|
|
|
#addonStatus.on {
|
2021-06-12 00:04:17 +02:00
|
|
|
background-image: url(../icons/browserAction-CBon.svg);
|
2021-06-12 00:49:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#reload {
|
2021-06-13 21:08:28 +02:00
|
|
|
grid-row: 1 / 2;
|
|
|
|
grid-column: 3 / 4;
|
2021-06-12 00:49:10 +02:00
|
|
|
cursor: pointer;
|
|
|
|
height: 19px;
|
|
|
|
width: 19px;
|
2021-06-13 21:08:28 +02:00
|
|
|
align-self: center;
|
|
|
|
justify-self: left;
|
|
|
|
margin-left: 1em;
|
2021-06-12 00:49:10 +02:00
|
|
|
background-color: currentColor;
|
|
|
|
mask-size: 100%;
|
|
|
|
mask-image: url(../icons/browserAction-reload.svg);
|
|
|
|
}
|
|
|
|
|
|
|
|
#reload.hidden {
|
|
|
|
display: none;
|
2018-07-29 21:43:40 +02:00
|
|
|
}
|