blob: 301f85eedd2781266a6392dc87d53c6e4fefd1a6 (
plain)
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
|
// ==UserScript==
// @name ArchWiki/Wikimedia
// @include *://*.wikibooks.org/*
// @include *://*.wikidata.org/*
// @include *://*.wikimedia.org/*
// @include *://*.wikinews.org/*
// @include *://*.wikipedia.org/*
// @include *://*.wikiquote.org/*
// @include *://*.wikisource.org/*
// @include *://*.wikiversity.org/*
// @include *://*.wikivoyage.org/*
// @include *://*.wiktionary.org/*
// @include *://wiki.archlinux.org/*
// ==/UserScript==
/* ~/.config/qutebrowser/greasemonkey/wiki.css.js :: */
GM_addStyle(`
body, #mw-head, #mw-panel, .mw-list-item {
background: #ffffff !important;
}
.vector-menu-heading, .vector-menu-tabs a, .vector-menu-tabs,
.vector-toc::after {
background: none !important;
}
.vector-menu-heading {
border-bottom: 1px solid #606060 !important;
}
.cn-fundraising {
display: none !important;
}
`);
|