From 8e20444d16c3214f8bf9d0f72c5df9ccd9d29e6a Mon Sep 17 00:00:00 2001
From: chylex <contact@chylex.com>
Date: Mon, 23 Jan 2023 11:26:55 +0100
Subject: [PATCH] Add 'Show All Languages on Wikipedia'

---
 Wikipedia/ShowAllLanguages.user.css | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 Wikipedia/ShowAllLanguages.user.css

diff --git a/Wikipedia/ShowAllLanguages.user.css b/Wikipedia/ShowAllLanguages.user.css
new file mode 100644
index 0000000..0197141
--- /dev/null
+++ b/Wikipedia/ShowAllLanguages.user.css
@@ -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;
+  }
+}