mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-23 23:24:39 +00:00
Merge "Wrap long words in reference preview popups"
This commit is contained in:
commit
a81a858453
|
@ -67,7 +67,7 @@
|
|||
"bundlesize": [
|
||||
{
|
||||
"path": "resources/dist/index.js",
|
||||
"maxSize": "13.82kB"
|
||||
"maxSize": "13.6kB"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -38,6 +38,10 @@
|
|||
padding-right: @popupPadding;
|
||||
}
|
||||
|
||||
.mw-parser-output {
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
// Remove the default fade-out effect set by popup.less
|
||||
&:after {
|
||||
display: none;
|
||||
|
|
|
@ -112,8 +112,8 @@ module.exports = ( env, argv ) => ( {
|
|||
// Minified uncompressed size limits for chunks / assets and entrypoints. Keep these numbers
|
||||
// up-to-date and rounded to the nearest 10th of a kibibyte so that code sizing costs are
|
||||
// well understood. Related to bundlesize minified, gzipped compressed file size tests.
|
||||
maxAssetSize: 42.6 * 1024,
|
||||
maxEntrypointSize: 42.6 * 1024,
|
||||
maxAssetSize: 41.4 * 1024,
|
||||
maxEntrypointSize: 41.4 * 1024,
|
||||
|
||||
// The default filter excludes map files but we rename ours.
|
||||
assetFilter: ( filename ) => !filename.endsWith( srcMapExt )
|
||||
|
|
Loading…
Reference in a new issue