Merge "Disable magnify icon in Parsoid output"

This commit is contained in:
jenkins-bot 2017-08-09 16:30:36 +00:00 committed by Gerrit Code Review
commit 43e1a5f0a8
1 changed files with 5 additions and 1 deletions

View File

@ -43,7 +43,11 @@
} }
// Hide the image magnification icon normally displayed in image captions // 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; display: none;
} }
} }