1
0

Neu: Gelbooru - Disable Nyudachi Design

This commit is contained in:
Akamaru
2025-10-24 21:29:13 +02:00
parent e116b8b542
commit 40d41345ab
2 changed files with 71 additions and 1 deletions

View File

@@ -170,4 +170,20 @@ Verschiedene Anpassungen für MyAnimeList.net, die das Layout und die Benutzerfr
---
### 2. `gelbooru-disable-nyudachi.user.css`
**Beschreibung:**
Blockiert das Nyudachi Design auf Gelbooru und zeigt das normale Design. ( ⚠️ *In Testphase*)
**Funktionen:**
- Entfernt den rosa Nyudachi Hintergrund
- Versteckt das animierte Nyudachi Logo
- Versteckt alle Nyudachi Grafiken (nyuSniffa.png, nyuBar2.png)
- Versteckt den Werbetext für Nyu Dachi
- Setzt die Link-Farben auf normales Gelbooru-Blau zurück
- Setzt den Search-Button auf normale Farbe zurück
- Wirkt nur auf der Hauptseite (index.php)
---
Wenn du Fragen zu einem Script oder Style hast oder Unterstützung benötigst, öffne gerne ein Issue.

View File

@@ -0,0 +1,54 @@
/* ==UserStyle==
@name Gelbooru - Disable Nyudachi Design
@namespace https://git.ponywave.de/Akamaru/Userscripts
@version 0.1
@description Blockiert das Nyudachi Design auf Gelbooru und zeigt das normale Design
@author Akamaru
@homepageURL https://git.ponywave.de/Akamaru/Userscripts
@updateURL https://git.ponywave.de/Akamaru/Userscripts/raw/branch/master/gelbooru-disable-nyudachi.user.css
==/UserStyle== */
/* Dieses UserCSS befindet sich noch in der Testphase */
@-moz-document regexp("https?:\\/\\/gelbooru\\.com\\/index\\.php$") {
/* Entferne Nyudachi Hintergrund vom body */
body[style*="nyuBar.png"] {
background: #ffffff !important;
}
/* Verstecke das animierte Nyudachi Logo */
img[src*="nyudachi/AnimatedLogoGIF.gif"] {
display: none !important;
}
/* Verstecke alle Nyudachi Grafiken */
img[src*="nyuSniffa.png"],
div[style*="nyuBar2.png"] {
display: none !important;
}
/* Verstecke den Nyudachi Werbetext */
div[style*="nyuBar2.png"] ~ b {
display: none !important;
}
/* Setze Link-Farben auf Standardwerte zurück (Gelbooru Blau) */
div#static-index > * > a,
a {
color: #0073ff !important;
}
div#static-index > * > a:hover,
a:hover {
color: #3291ff !important;
}
/* Setze Search-Button auf Standardfarbe zurück */
.secondary_search {
background: #0073ff !important;
}
.secondary_search:hover {
background: #3291ff !important;
}
}