no translation and no word-wrap for vfs (filename) widget

This commit is contained in:
Ralf Becker 2008-10-07 05:33:27 +00:00
parent f940633dad
commit 071fb06b8a
2 changed files with 8 additions and 1 deletions

View File

@ -146,7 +146,11 @@ class vfs_widget
$target = ',,,_blank'; $target = ',,,_blank';
} }
} }
$comp = etemplate::empty_cell('label',$cell_name.'[c'.$n.']',array('size' => ',@'.$cell_name.'[l'.$n.']'.$target)); $comp = etemplate::empty_cell('label',$cell_name.'[c'.$n.']',array(
'size' => ',@'.$cell_name.'[l'.$n.']'.$target,
'no_lang' => true,
'span' => ',vfsFilename'
));
etemplate::add_child($cell,$comp); etemplate::add_child($cell,$comp);
unset($comp); unset($comp);
} }

View File

@ -118,3 +118,6 @@
.vfsMimeIcon img { .vfsMimeIcon img {
height: 16px; height: 16px;
} }
.vfsFilename {
white-space: nowrap;
}