mirror of
https://github.com/StarCitizenTools/mediawiki-extensions-TabberNeue.git
synced 2024-12-19 03:21:18 +00:00
![alistair3149](/assets/img/avatar_default.png)
When a thumb is placed inside tabber under an article section, MobileFrontend duplicates the image for some reason. So the hacky way to fix this is to hide the duplicated image. Since it is an upstream issue, there are not much I can do. Closes: #2
16 lines
298 B
Plaintext
16 lines
298 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 {
|
|
.thumb {
|
|
.image {
|
|
img + img {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|