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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.svg-common {
-moz-context-properties: fill;
fill: currentColor;
width: 16px;
}
.svg-button {
height: 32px;
width: 32px;
min-width: 0;
padding: 0;
background-repeat: no-repeat;
background-position: center;
}
.button-open-dir {
background-image: url(chrome://global/skin/icons/folder.svg);
}
.button-block {
background-image: url(chrome://global/skin/icons/blocked.svg);
background-position: left 8px center;
background-repeat: no-repeat;
padding-inline-start: 2em;
-moz-context-properties: fill;
fill: currentColor;
}
.button-block:dir(rtl) {
background-position-x: right 8px;
}
.button-expand {
background-image: url(chrome://global/skin/icons/arrow-down.svg);
}
.button-collapse {
background-image: url(chrome://global/skin/icons/arrow-up.svg);
}
.card-head > img {
margin-inline-start: .5em;
}
.image-warning {
fill: #fcd100;
}
.blocked-by-builtin {
fill: red;
}
.button-block.module-blocked {
background-image: url(chrome://global/skin/icons/close-fill.svg);
-moz-context-properties: fill;
fill: red;
}
.button-block.module-blocked.blocklist-disabled {
fill: goldenrod;
}
.card {
margin-bottom: 16px;
}
.card-head {
display: flex;
align-items: center;
}
.module-name {
margin: 0;
}
.module-tags {
margin-inline: .5em;
}
.module-tag {
font-size: 12px;
white-space: nowrap;
border-radius: 4px;
border: 1px solid transparent;
background-color: var(--in-content-button-background);
padding: 0 2px;
margin-inline-end: 2px;
}
.module-details {
font-size: 14px;
margin-top: var(--card-padding);
}
.module-details > div {
display: flex;
}
.module-detail-label {
width: 12em;
}
.spacer {
flex-grow: 1;
}
.event-table {
width: max-content;
margin-top: var(--card-padding);
}
.event-table > thead,
.event-table > tbody > tr {
height: 28px;
vertical-align: middle;
}
.event-table > thead > tr > th,
.event-table > tbody > tr > td {
padding-inline: 10px;
}
|