/*
* !!! WARNING !!!
* Editing this file may cause your instance to break for EVERYONE.
* Please know what you're doing and test it out with regular user custom CSS.
* With that said, GLHF!
* This may eventuallly be replaced with a function in the admin panel.
 */

/* Show a warning on images without alt text */
  div.image img:not([alt])
, div.image img[alt=""]
, div.plyr--paused:has(video:not([title]))
, div.plyr--paused:has(video[title=""])
{
	border: 2px solid var(--error);
	box-sizing: border-box;
	border-radius: var(--radius);
}
  div.image:has(img:not([alt]))::after
, div.image:has(img[alt=""])::after
, div.plyr--paused:has(video:not([title]))::after
, div.plyr--paused:has(video[title=""])::after
{
	content: "⬤ NO ALT TEXT";
	text-shadow: 0px 0px 2px var(--bg), 0px 0px 4px var(--bg), 0px 0px 6px var(--bg);;
	position: absolute;
	color: var(--error);
	z-index: 10;
	top: 1em;
	left: 1em;
}
