Disable magnify icon in Parsoid output

Bug: T160960
Depends-On: Id66f09c54103854ccbaa54a03e7c62890b67cba9
Change-Id: I40243fa6d85263967314b2b30dd1a7cbda39234d
This commit is contained in:
Ed Sanders 2017-07-25 20:01:34 +01:00 committed by Esanders
parent e81e5cd11d
commit d2b10cc357
1 changed files with 5 additions and 1 deletions

View File

@ -38,7 +38,11 @@
}
// Hide the image magnification icon normally displayed in image captions
.magnify {
.magnify,
// Parsoid version of magnification icon (T160960)
figure[typeof*='mw:Image/Thumb'] > a:after,
figure[typeof*='mw:Video/Thumb'] > a:after,
figure[typeof*='mw:Audio/Thumb'] > a:after {
display: none;
}
}