mirror of
https://github.com/StarCitizenTools/mediawiki-extensions-TabberNeue.git
synced 2024-11-24 00:13:28 +00:00
16 lines
358 B
Plaintext
16 lines
358 B
Plaintext
/*
|
|
* This is a hacky way to hide the duplicated image generated by MobileFrontend
|
|
* See https://github.com/StarCitizenTools/mediawiki-extensions-TabberNeue/issues/2
|
|
*/
|
|
|
|
/* stylelint-disable selector-class-pattern */
|
|
.tabber {
|
|
.lazy-image-placeholder,
|
|
.image-lazy-loaded {
|
|
+ .lazy-image-placeholder,
|
|
+ .image-lazy-loaded {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|