54 lines
1.5 KiB
CSS
54 lines
1.5 KiB
CSS
/* ==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;
|
|
}
|
|
} |