diff options
author | Ruben Rodriguez <ruben@trisquel.info> | 2022-09-08 20:18:54 -0400 |
---|---|---|
committer | Ruben Rodriguez <ruben@trisquel.info> | 2022-09-08 20:18:54 -0400 |
commit | 5da28b0f8771834ae208d61431d632875e9f8e7d (patch) | |
tree | 688ecaff26197bad8abde617b4947b11d617309e /data/extensions/jsr@javascriptrestrictor/fp_report.css | |
parent | 4a87716686104266a9cccc2d83cc249e312f3673 (diff) |
Updated extensions:
* Upgraded Privacy Redirect to 1.1.49 and configured to use the 10 most reliable invidious instances
* Removed ViewTube
* Added torproxy@icecat.gnu based on 'Proxy toggle' extension
* Added jShelter 0.11.1
* Upgraded LibreJS to 7.21.0
* Upgraded HTTPS Everywhere to 2021.7.13
* Upgraded SubmitMe to 1.9
Diffstat (limited to 'data/extensions/jsr@javascriptrestrictor/fp_report.css')
-rw-r--r-- | data/extensions/jsr@javascriptrestrictor/fp_report.css | 121 |
1 files changed, 121 insertions, 0 deletions
diff --git a/data/extensions/jsr@javascriptrestrictor/fp_report.css b/data/extensions/jsr@javascriptrestrictor/fp_report.css new file mode 100644 index 0000000..aa6c829 --- /dev/null +++ b/data/extensions/jsr@javascriptrestrictor/fp_report.css @@ -0,0 +1,121 @@ +/* + + * SPDX-FileCopyrightText: 2022 2021 Marek SaloĊ + * + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +body { + padding: 1em; + margin: 1em; + min-width: 38em; + font-family: "Segoe UI", Tahoma, sans-serif; + font-size: 75%; +} + +header { + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: center; + font-size: large; + margin-bottom: 0.5em; + border-bottom: 2px solid #aaa; +} + +header > div { + min-width: 0; +} + +h4 { + color: var(--text-color); +} + +#logo { + width: 48px; + padding-left: 50px; +} + +#titletext { + display: block; + font-size: large; + text-align: center; + margin: 0.2em 0px; + text-align: left; + color: var(--title-color); +} + +.fpd-group > .fpd-group { + padding-left: 2em; + border-left: 2px solid #aaa; +} + +.fpd-group > h2 { + display: inline-block; + color: var(--title-color); + margin: 0px 0px; + -webkit-transition: color 0.5s; + -moz-transition: color 0.5s; + -ms-transition: color 0.5s; + -o-transition: color 0.5s; + transition: color 0.5s; +} + +.fpd-group > h2.clickable:hover { + cursor: pointer; + color: var(--text-color); +} + +.dot { + color: var(--title-color); +} + +.hidden { + display: none; +} + +.no-access { + display: none; +} + +#pageFavicon { + height: 18px; + margin-right: 2px; +} + +#pageFavicon:not([src^="data:"]) { + display: none +} + +#page-container { + white-space: nowrap; +} + +#report-url { + display: inline-block; + height: 20px; + max-width: 99%; + white-space: nowrap; + overflow: hidden !important; + text-overflow: ellipsis; + margin: 0px; + color: var(--text-color); +} + +.sticky-button { + float: right; + position: sticky; + top: 10px; + cursor: pointer; + margin-left: 0.5em; +} + +.description { + font-size: x-small; +} + +#unhideAll { + cursor: pointer; + color: var(--title-color); + text-decoration: underline; +} |