Break up long words in the lint errors tables

Bug: T375800
Change-Id: If75ef4068c0509e146036d0f138954651703678b
This commit is contained in:
Arlo Breault 2024-10-31 13:04:21 -04:00
parent 71f1f3372a
commit 1094dbfbff
3 changed files with 9 additions and 0 deletions

View file

@ -101,6 +101,11 @@
"dependencies": [
"jquery.textSelection"
]
},
"ext.linter.styles": {
"styles": [
"special.less"
]
}
},
"ResourceFileModulePaths": {

View file

@ -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
View file

@ -0,0 +1,3 @@
.mw-datatable {
word-break: break-word;
}