MediaWiki:Gadget-sound.css

From TERMSOFSERVICE
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.miraheze.org/termsofservicewiki/3/34/sound_on.png);
	background-size: contain;
}

@supports ( ( mask: url() ) or ( -webkit-mask: url() ) ) {
	.sound-playing > .sound-title::after {
		background: #cfcfcf;
		-webkit-mask: url(https://static.miraheze.org/termsofservicewiki/3/34/sound_on.png);
		-webkit-mask-size: contain;
		mask: url(https://static.miraheze.org/termsofservicewiki/3/34/sound_on.png);
		mask-size: contain;
	}
}