Shows what type the tagged media of a post is (Anime, Light Novel, Manga)
Kitsu Tagged Media Type by lukas-berger
Imported from https://raw.githubusercontent.com/lukas-berger/styling-kitsu/main/tagged-media-type/tagged-media-type.user.css
Details
Authorlukas-berger
LicenseCC-BY-4.0
Categorykitsu
Created
Updated
Size835 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Kitsu Tagged Media Type
@description Shows what type the tagged media of a post is (Anime, Light Novel, Manga)
@namespace lukas.berger
@homepageURL https://github.com/lukas-berger/styling-kitsu
@author Lukas Berger
@version 0.1.1
@license CC-BY-4.0
==/UserStyle== */
@-moz-document domain("kitsu.io") {
.tagged-media--wrapper a.author-name:after {
color: #afafaf;
font-weight: 400;
}
.tagged-media--wrapper a.author-name[href^="/anime"]:last-of-type:after {
content: ' — Anime';
}
.tagged-media--wrapper a.author-name[href^="/manga"]:last-of-type:after {
content: ' — Manga';
}
.tagged-media--wrapper a.author-name[href$="-novel"]:last-of-type:after,
.tagged-media--wrapper a.author-name[href*="-novel/"]:last-of-type:after {
content: ' — Light Novel';
}
}