Merge "Follow-up I24090527: Add .mw-parser-output scope to limit to parsed output"

This commit is contained in:
jenkins-bot 2022-05-23 22:57:55 +00:00 committed by Gerrit Code Review
commit 9cf1c286e5

View file

@ -33,14 +33,6 @@
}
}
/* stylelint-enable no-descending-specificity */
dl dd {
display: block;
// Some dd's may contain images so these need to be scrollable
// Text will not become scrollable.
// (see T160946)
overflow: auto;
}
}
/* As in Vector, indenting of definition lists, and bolding of defintion terms is generically useful */
@ -51,3 +43,13 @@ dl {
font-weight: bold;
}
}
.mw-parser-output {
dl dd {
display: block;
// Some dd's may contain images so these need to be scrollable
// Text will not become scrollable.
// (see T160946)
overflow: auto;
}
}