MediaWiki:Common.css: Difference between revisions
Appearance
Created page with "→CSS placed here will be applied to all skins: →EmbedVideo: hide placeholder/fallback token text that can show in some themes: .embedvideo .embedvideo-load, .embedvideo .embedvideo-service-youtube, .embedvideo .embedvideo-service { font-size: 0 !important; line-height: 0 !important; } →If the placeholders are rendered as unknown custom tags, hide them too: embedvideo-load, embedvideo-service-youtube, embedvideo-service { display: none !important; }" |
No edit summary |
||
| Line 14: | Line 14: | ||
display: none !important; | display: none !important; | ||
} | } | ||
/* TEST: should be obvious if Common.css is loading */ | |||
body { outline: 6px solid red !important; } | |||
Revision as of 21:46, 19 February 2026
/* CSS placed here will be applied to all skins */
/* EmbedVideo: hide placeholder/fallback token text that can show in some themes */
.embedvideo .embedvideo-load,
.embedvideo .embedvideo-service-youtube,
.embedvideo .embedvideo-service {
font-size: 0 !important;
line-height: 0 !important;
}
/* If the placeholders are rendered as unknown custom tags, hide them too */
embedvideo-load,
embedvideo-service-youtube,
embedvideo-service {
display: none !important;
}
/* TEST: should be obvious if Common.css is loading */
body { outline: 6px solid red !important; }