diff options
author | awy <awy@awy.one> | 2025-09-18 14:09:38 +0300 |
---|---|---|
committer | awy <awy@awy.one> | 2025-09-18 14:09:38 +0300 |
commit | 4c90b15a84eea1f64d088fd0db988c63daafa1f9 (patch) | |
tree | 2da975946051c5b3bd2351ca0c58bff5258ce51d /data/extensions/uBlock0@raymondhill.net/css/dashboard-common.css | |
parent | c939d76c33294791cce8ce1722bd6747dadbe31f (diff) | |
download | gnuzilla-patch.tar.gz |
Diffstat (limited to 'data/extensions/uBlock0@raymondhill.net/css/dashboard-common.css')
-rw-r--r-- | data/extensions/uBlock0@raymondhill.net/css/dashboard-common.css | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/data/extensions/uBlock0@raymondhill.net/css/dashboard-common.css b/data/extensions/uBlock0@raymondhill.net/css/dashboard-common.css new file mode 100644 index 0000000..261aa9a --- /dev/null +++ b/data/extensions/uBlock0@raymondhill.net/css/dashboard-common.css @@ -0,0 +1,55 @@ +body > div.body { + padding: 0 0.5em; + } +h2, h3 { + margin: 1em 0; + } +h2 { + font-size: 18px; + } +h3 { + font-size: 16px; + } +a { + text-decoration: none; + } +.fa-icon.info { + color: var(--info0-ink); + fill: var(--info0-ink); + font-size: 115%; + } +.fa-icon.info:hover { + transform: scale(1.25); + } +.fa-icon.info.important { + color: var(--info2-ink); + fill: var(--info2-ink); + } +.info.very-important { + color: var(--info3-ink); + fill: var(--info3-ink); + } +input[type="number"] { + width: 5em; + } +@media (max-height: 640px), (max-height: 800px) and (max-width: 480px) { + .body > p, + .body > ul { + margin: 0.5em 0; + } + .vverbose { + display: none !important; + } + } +/** + On mobile device, the on-screen keyboard may take up + so much space that it overlaps the content being edited. + The rule below makes it possible to scroll the edited + content within view. +*/ +:root.mobile { + overflow: auto; + } +:root.mobile body { + min-height: 600px; + } |