1
0
mirror of https://github.com/chylex/Userscripts.git synced 2025-04-30 07:34:04 +02:00

Add 'Show All Languages on Wikipedia'

This commit is contained in:
chylex 2023-01-23 11:26:55 +01:00
parent ba272bbe4a
commit 8e20444d16
Signed by: chylex
GPG Key ID: 4DE42C8F19A80548

View File

@ -0,0 +1,20 @@
/* ==UserStyle==
@name Show All Languages on Wikipedia
@description Shows all languages in the sidebar instead of collapsing them into a drop-down.
@version 1
@author chylex
@license MPL-2.0
@namespace https://chylex.com
@homepageURL https://github.com/chylex/Userscripts
@supportURL https://github.com/chylex/Userscripts/issues
==/UserStyle== */
@-moz-document domain("wikipedia.org") {
.mw-interlanguage-selector {
display: none !important;
}
.interlanguage-link {
display: block !important;
}
}