2017-04-14 11:08:31 +00:00
|
|
|
html.opera {
|
2017-06-19 13:00:45 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 100%;
|
2017-04-14 11:08:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
html.opera body {
|
2017-06-19 13:00:45 +00:00
|
|
|
width: auto;
|
2017-04-09 06:43:51 +00:00
|
|
|
}
|
|
|
|
|
2017-02-14 15:35:53 +00:00
|
|
|
body {
|
2017-10-06 04:50:38 +00:00
|
|
|
background: #fff;
|
2017-03-28 00:42:07 +00:00
|
|
|
margin: 0;
|
|
|
|
font-family: "Helvetica Neue", Helvetica, sans-serif;
|
2017-02-14 15:35:53 +00:00
|
|
|
font-size: 12px;
|
2018-05-12 10:11:54 +00:00
|
|
|
min-width: 480px;
|
|
|
|
max-width: 800px;
|
2019-01-08 07:15:53 +00:00
|
|
|
width: max-content;
|
2019-09-24 13:21:36 +00:00
|
|
|
overflow-x: hidden;
|
2017-06-19 13:00:45 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 10:26:39 +00:00
|
|
|
@supports (-moz-appearance:none) {
|
|
|
|
body {
|
|
|
|
--addons-page-left-padding: 6px;
|
|
|
|
/* compensate 'html.firefox .block' padding-left */
|
|
|
|
width: calc(100% - var(--addons-page-left-padding));
|
|
|
|
/* match the default FF theme */
|
|
|
|
background-color: #f9f9fa;
|
|
|
|
}
|
|
|
|
html.firefox .block {
|
|
|
|
padding-left: var(--addons-page-left-padding);
|
2017-06-19 13:00:45 +00:00
|
|
|
}
|
2017-11-26 11:25:46 +00:00
|
|
|
}
|
|
|
|
|
2019-09-24 13:21:36 +00:00
|
|
|
.firefox .chromium-only,
|
|
|
|
.chromium-only.chrome-no-popup-border {
|
2017-04-14 07:50:52 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.block {
|
2017-03-28 00:42:07 +00:00
|
|
|
display: flex;
|
2017-04-14 07:50:52 +00:00
|
|
|
align-items: center;
|
|
|
|
margin: 1em 0;
|
|
|
|
border-bottom: 1px dotted #ccc;
|
2017-08-27 14:16:02 +00:00
|
|
|
padding: 0 16px .75em;
|
2017-04-21 12:36:02 +00:00
|
|
|
position: relative;
|
2017-03-28 00:42:07 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 17:52:45 +00:00
|
|
|
.block:nth-last-child(2) {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2017-04-14 07:50:52 +00:00
|
|
|
.block:last-child {
|
|
|
|
border-bottom: none;
|
2017-04-28 23:36:10 +00:00
|
|
|
padding-bottom: 0;
|
2017-03-28 10:05:58 +00:00
|
|
|
}
|
|
|
|
|
2017-09-09 14:21:17 +00:00
|
|
|
.collapsed, .collapsible h1 {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapsed .items {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-04-14 07:50:52 +00:00
|
|
|
h1 {
|
2019-01-08 07:41:39 +00:00
|
|
|
min-width: 30%;
|
2017-06-19 13:00:45 +00:00
|
|
|
width: 30%;
|
2017-04-14 07:50:52 +00:00
|
|
|
margin: 0;
|
|
|
|
font-size: 120%;
|
|
|
|
font-weight: bold;
|
|
|
|
padding-right: 8px;
|
2017-06-19 13:00:45 +00:00
|
|
|
box-sizing: border-box;
|
2017-09-30 17:14:44 +00:00
|
|
|
overflow-wrap: break-word;
|
2017-02-14 15:35:53 +00:00
|
|
|
}
|
|
|
|
|
2017-06-19 13:00:45 +00:00
|
|
|
.items {
|
2019-01-08 07:41:39 +00:00
|
|
|
min-width: 70%;
|
2017-06-19 13:00:45 +00:00
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
|
2017-04-14 07:50:52 +00:00
|
|
|
label {
|
2017-06-19 13:00:45 +00:00
|
|
|
display: flex;
|
2017-04-14 07:50:52 +00:00
|
|
|
margin: .25ex 0;
|
2017-06-28 10:01:00 +00:00
|
|
|
align-items: center;
|
2017-02-14 15:35:53 +00:00
|
|
|
}
|
2017-03-28 00:42:07 +00:00
|
|
|
|
2017-04-14 07:50:52 +00:00
|
|
|
label > :first-child {
|
|
|
|
margin-right: 8px;
|
2017-06-19 13:00:45 +00:00
|
|
|
flex-grow: 1;
|
2017-03-28 00:42:07 +00:00
|
|
|
}
|
|
|
|
|
2017-04-14 07:50:52 +00:00
|
|
|
label:not([disabled]) > :first-child {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
label:not([disabled]):hover > :first-child {
|
|
|
|
text-shadow: 0 0 0.01px rgba(0, 0, 0, .25);
|
2017-07-16 20:04:40 +00:00
|
|
|
cursor: pointer;
|
2017-02-14 15:35:53 +00:00
|
|
|
}
|
|
|
|
|
2017-03-28 10:05:58 +00:00
|
|
|
input[type=number],
|
|
|
|
input[type="color"],
|
2017-10-08 15:26:23 +00:00
|
|
|
select,
|
2017-04-14 07:50:52 +00:00
|
|
|
.onoffswitch {
|
2017-04-29 17:58:53 +00:00
|
|
|
width: 60px;
|
2017-04-09 06:43:51 +00:00
|
|
|
box-sizing: border-box;
|
2017-06-19 13:00:45 +00:00
|
|
|
flex-shrink: 0;
|
2017-03-28 10:05:58 +00:00
|
|
|
}
|
|
|
|
|
2017-02-14 15:35:53 +00:00
|
|
|
button {
|
2017-03-28 00:42:07 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=number] {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2017-04-13 06:12:40 +00:00
|
|
|
input[type=number]:invalid {
|
|
|
|
background-color: rgba(255, 0, 0, 0.1);
|
|
|
|
color: darkred;
|
|
|
|
}
|
|
|
|
|
2017-04-27 11:39:51 +00:00
|
|
|
input[type="color"] {
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: 2em;
|
|
|
|
}
|
|
|
|
|
2017-06-28 10:49:04 +00:00
|
|
|
.iconset {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.iconset input {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2017-12-08 17:02:01 +00:00
|
|
|
.iconset input[type="radio"] {
|
|
|
|
margin: 2px 4px 0 0;
|
|
|
|
}
|
|
|
|
|
2017-04-28 23:36:10 +00:00
|
|
|
#actions {
|
|
|
|
justify-content: space-around;
|
2017-04-29 17:58:53 +00:00
|
|
|
align-items: stretch;
|
2017-12-12 00:27:28 +00:00
|
|
|
padding: 1em;
|
|
|
|
white-space: nowrap;
|
2017-12-14 03:28:17 +00:00
|
|
|
background-color: rgba(0, 0, 0, .05);
|
2017-12-12 00:27:28 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.firefox #actions,
|
|
|
|
.opera #actions {
|
|
|
|
background-color: transparent;
|
2017-04-28 23:36:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#actions button {
|
|
|
|
width: auto;
|
2017-12-12 00:27:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#actions button:not(:last-child) {
|
2017-04-29 17:58:53 +00:00
|
|
|
margin-right: 8px;
|
2017-04-28 23:36:10 +00:00
|
|
|
}
|
|
|
|
|
2017-04-14 15:30:09 +00:00
|
|
|
[data-cmd="check-updates"] button {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.update-in-progress [data-cmd="check-updates"] {
|
|
|
|
opacity: .5;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.update-in-progress #update-progress {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background-color: currentColor;
|
|
|
|
content: "";
|
|
|
|
opacity: .35;
|
|
|
|
}
|
|
|
|
|
|
|
|
#updates-installed {
|
|
|
|
position: absolute;
|
|
|
|
font-size: 85%;
|
|
|
|
margin-top: 1px;
|
|
|
|
}
|
|
|
|
|
2017-06-19 13:00:45 +00:00
|
|
|
#updates-installed::after {
|
2017-04-14 15:30:09 +00:00
|
|
|
content: attr(data-value);
|
|
|
|
margin-left: .5ex;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
#updates-installed:not([data-value]),
|
|
|
|
#updates-installed[data-value=""] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-11-15 03:25:30 +00:00
|
|
|
#advanced.collapsible.collapsed {
|
2017-12-12 00:27:28 +00:00
|
|
|
height: 30px;
|
2017-11-15 03:25:30 +00:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2017-12-12 00:27:28 +00:00
|
|
|
html:not(.firefox):not(.opera) #updates {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#advanced.collapsible:not(.collapsed) {
|
2017-11-15 03:25:30 +00:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2017-11-15 03:48:47 +00:00
|
|
|
#advanced.collapsible:not(.collapsed) .collapsible-resizer,
|
|
|
|
#advanced:not(.collapsible) .collapsible-resizer {
|
2017-11-15 03:25:30 +00:00
|
|
|
padding-right: 8px;
|
|
|
|
box-sizing: border-box;
|
2019-01-08 07:41:39 +00:00
|
|
|
min-width: 30%;
|
2017-11-15 03:25:30 +00:00
|
|
|
width: 30%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#advanced.collapsible h1 {
|
|
|
|
width: unset;
|
|
|
|
padding: 0;
|
|
|
|
color: #333;
|
|
|
|
transition: color .5s;
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#advanced:not(.collapsible) .collapsible-resizer h1 {
|
|
|
|
width: unset;
|
|
|
|
padding: 0;
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#advanced.collapsible:not(.collapsed) h1:hover {
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
#advanced.collapsible.collapsed h1 {
|
|
|
|
padding: 0;
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
#advanced.collapsible.collapsed:hover h1 {
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
2018-01-24 20:16:24 +00:00
|
|
|
.collapsible-resizer .svg-icon {
|
2017-11-15 03:25:30 +00:00
|
|
|
fill: #333;
|
|
|
|
transition: fill .5s;
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
}
|
|
|
|
|
2018-01-24 20:16:24 +00:00
|
|
|
#advanced.collapsible.collapsed .collapsible-resizer .svg-icon,
|
|
|
|
#advanced.collapsible:not(.collapsed) .collapsible-resizer h1:hover .svg-icon {
|
2017-11-15 03:25:30 +00:00
|
|
|
fill: #666;
|
|
|
|
}
|
|
|
|
|
2018-01-24 20:16:24 +00:00
|
|
|
#advanced.collapsible.collapsed:hover .collapsible-resizer .svg-icon {
|
2017-11-15 03:25:30 +00:00
|
|
|
fill: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
#advanced.collapsible h1 .svg-icon {
|
|
|
|
margin-left: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#advanced.collapsible.collapsed .is-expanded,
|
2018-01-24 20:16:24 +00:00
|
|
|
#advanced:not(.collapsible) .collapsible-resizer .svg-icon {
|
2017-11-15 03:25:30 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#advanced.collapsible:not(.collapsed) .is-collapsed {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-01-24 20:16:24 +00:00
|
|
|
.svg-inline-wrapper .svg-icon {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
fill: #666;
|
|
|
|
vertical-align: sub;
|
|
|
|
}
|
|
|
|
|
|
|
|
.svg-inline-wrapper:hover .svg-icon {
|
|
|
|
fill: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
#message-box.note > div {
|
|
|
|
max-width: calc(100vw - 6rem);
|
|
|
|
}
|
|
|
|
|
|
|
|
.opera #message-box.note,
|
|
|
|
.firefox #message-box.note {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2017-03-28 00:42:07 +00:00
|
|
|
@keyframes fadeinout {
|
|
|
|
0% { opacity: 0 }
|
|
|
|
10% { opacity: 1 }
|
|
|
|
25% { opacity: 1 }
|
|
|
|
100% { opacity: 0 }
|
|
|
|
}
|
2017-12-12 00:27:28 +00:00
|
|
|
|
|
|
|
@media (hover: none) {
|
|
|
|
.expanded-note {
|
|
|
|
font-size: 90%;
|
|
|
|
white-space: normal;
|
|
|
|
color: #666;
|
|
|
|
margin-top: .5em;
|
|
|
|
hyphens: auto;
|
|
|
|
}
|
|
|
|
}
|