There are a few 'Jason Stayed with the All Caste' stories floating around, but I think it might be funnier if an All Hands On Deck situation happened and Talia had to join him in Stabbing Cthulhu, so they dropped Damien off without explanation and Bruce only found out about Jason X months later when Robin II's old 'SOS World Ending Threat' code was entered into a com system somewhere.
Cue Damien crowing "I told you they didn't abandon me, they were preoccupied!"
i do very much like the idea of damian growing up under jason’s influence at the league and thus not giving a shit about being ‘the son of batman’. like he had jason, fuck that old guy who apparently donated sperm. so when talia sends damian to bruce to train so they could go off on other work its less damian being like ‘i am the blood son it is my right to eventually inherit the cowl’ and more like ‘…..:/ man ahki was right. batman aint shit’ and bruce is genuinely just so bewildered hes just ‘what. wait what.’
they’re training in the batcave and bruce is like ‘im going to show you this move on how to non-lethally take out an attacker’ and damian is texting jason from the other side of the room just ‘no thanks. i’ve been taught everything i need to know already.’
‘what do you mean by that’
‘when you run out of bullets, throw the gun into the crotch of whoever is left.’
‘excuse me?’
‘i was also told to say a cool catchphrase every time i cock the gun. ahki gave me a list to memorise.’
‘why do you have a gun’
bruce has no idea who this child is but he’s starting to get concerned about who the fuck raised him before he got to the manor. jason is cackling from 2 continents away
ya’ll were really gonna let me live my life in ignorance thinking mr. rogers was straight???
hey so it’s march now aka the beginning of endometriosis awareness month and i feel obligated to remind you that debilitatingly painful periods are not normal. if you or someone you know is ending up sick or bedridden every month, you are not crazy and deserve medical attention from someone who will take you seriously
See mine is both, I just live on the creepier side
Imagine Virgil showing up all cleaned up in this jacket
And Remus is unable to contain the Sahara-worthy thirst.
Live footage of me Ree:
So, Ao3 has made a lot of changes lately that allowed us to hide specific fics and works by specific authors.
There still no way to hide works with specific tags (that doesn’t mean there won’t be in the future, but I have no idea if that is in the plans or not) unless you use the filters in your search. But while you can bookmark a search with all the filters, there’s no way to carry these filters in separate searches and you have to write it every time.
Unfortunately CSS doesn’t have a way either to hide those fics either, at most it can hide the single tag, which we don’t want to do because at that point everything becomes so much worse, as you don’t even have the tag as a warning.
Because those black black boxes are very visible in a wall of tags.
(you can use white if you are using darkmode btw)
be used in conjunction with all the other hiding skins you have, you can either copy/paste it in the bottom or make a new skin and add the other one as a parent.
be used for dark mode, you just change the ‘black’ in white in the text
You can also do something midway, if you don’t need to obliterate the tag, just highligh it.
There’s no way to see what it is once you click on it though! (you either copy and paste the tag somewhere or read the address bar)
you can also do a mix of those, blacken out some tags and highligh others
The code is very simple and straightforward:
a.tag[href*=“word”] {
background-color: black;
color: black;
}
You change the “word” in the first line in whatever tag you want to hide, but be careful of these things:
It is case sensitive. so “skin” won’t catch “Skin”, if there’s something that you aggressively don’t want to see you’ll need to copy/paste the code for all the instances.
it will search even part of the word. so “tick” will catch “ticket” “ticking” “tickling” “ticks” (if you see that there’s a specific word that keeps getting stuck in the filter you can add the same code AFTER, and change the colors in something that’s readable, so like, the background-color: white)
you can hide as many tags as you want, just copy/paste the code again and again and change the “word” to what you want to hide next
It refers to the url, not the name of the tag, so this part here in the address bar:
which means if you need to use more than one word you can’t use the space but you’ll need to use %20 instead.
example:
a.tag[href*=“two%20words”] {
background-color: black;
color: black;
}
the two lines of code:
this one changes the background: “background-color: black;”
while this other one changes the text: “color: black;”
You can change ‘black’ in whatever color you prefer using a hex color code (just google ‘color picker’) or one of the html names for colors (so, white, grey, red will all work fine). for example: “background-color: #e6a4ea;” will give the example in the image above, the pink highlighted one.
Always remember the semicolon at the end of the line!
Obviously not on the same tags but you can use the black one on tags, and the highlight on others. for example:
a.tag[href*=“angst”] {
background-color: black;
color: black;
}
a.tag[href*=“fluff”] {
background-color: #e6a4ea;
color: black;
}
So, you can use the black thing for really hard limits that you NEVER want to touch and the highlighted ones for tags you might want to have a warning in advance most of the time.
That’s it. I know it’s finnicky, but it can be helpful to people.