mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Linter
synced 2024-11-13 17:57:15 +00:00
Break up long words in the lint errors tables
Bug: T375800 Change-Id: If75ef4068c0509e146036d0f138954651703678b
This commit is contained in:
parent
71f1f3372a
commit
1094dbfbff
|
@ -101,6 +101,11 @@
|
|||
"dependencies": [
|
||||
"jquery.textSelection"
|
||||
]
|
||||
},
|
||||
"ext.linter.styles": {
|
||||
"styles": [
|
||||
"special.less"
|
||||
]
|
||||
}
|
||||
},
|
||||
"ResourceFileModulePaths": {
|
||||
|
|
|
@ -226,6 +226,7 @@ class SpecialLintErrors extends SpecialPage {
|
|||
public function execute( $subPage ) {
|
||||
$request = $this->getRequest();
|
||||
$out = $this->getOutput();
|
||||
$out->addModuleStyles( 'ext.linter.styles' );
|
||||
|
||||
$params = $request->getQueryValues();
|
||||
|
||||
|
|
3
modules/special.less
Normal file
3
modules/special.less
Normal file
|
@ -0,0 +1,3 @@
|
|||
.mw-datatable {
|
||||
word-break: break-word;
|
||||
}
|
Loading…
Reference in a new issue