Neu: Gelbooru - Disable Nyudachi Design
This commit is contained in:
16
README.md
16
README.md
@@ -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.
|
||||
|
||||
54
gelbooru-disable-nyudachi.user.css
Normal file
54
gelbooru-disable-nyudachi.user.css
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user