MediaWiki:Gadget-sound.css

From Aether Project Wiki
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* These styles are only loaded via JS */
.sound {
	cursor: pointer;
}
.sound-title::after {
	background: url(https://static.wikia.nocookie.net/minecraft_gamepedia/images/e/e8/Speaker.svg/revision/latest);
	background-size: contain;
}

@supports ( ( mask: url() ) or ( -webkit-mask: url() ) ) {
	.sound-playing > .sound-title::after {
		background: #80B640;
		-webkit-mask: url(https://static.wikia.nocookie.net/minecraft_gamepedia/images/e/e8/Speaker.svg/revision/latest);
		-webkit-mask-size: contain;
		mask: url(https://static.wikia.nocookie.net/minecraft_gamepedia/images/e/e8/Speaker.svg/revision/latest);
		mask-size: contain;
	}
}