MediaWiki:Common.css/src/template/spoiler.scss

From Terraria Wiki
Jump to navigation Jump to search
/********* [[Template:Spoiler]] *********/

.spoiler-content {
	background-color: rgba(127, 127, 127, 1);
	transition: all 0.3s;
	cursor: pointer;

	> span {
		opacity: 0;
		transition: all 0.3s;
	}

	> * {
		pointer-events: none;
	}

	&.show,
	&.hover:hover {
		background-color: rgba(127, 127, 127, 0);

		> span {
			opacity: 1;
		}

		> * {
			pointer-events: unset;
		}
	}
}