Bug #22826 » 14636_list.diff
typo3/class.db_list_extra.inc (Arbeitskopie) | ||
---|---|---|
*
|
||
* @return string Navigation HTML
|
||
*
|
||
* @author Dmitry Pikhno <dpi@goldenplanet.com>
|
||
* @author Christian Kuhn <lolli@schwarzbu.ch>
|
||
*/
|
||
protected function renderListNavigation() {
|
||
$totalPages = ceil($this->totalItems / $this->iLimit);
|
||
$content = '';
|
||
$returnContent = '';
|
||
// Show page selector if not all records fit into one page
|
||
if ($totalPages > 1) {
|
||
... | ... | |
. $next . $last . '<span class="bar"> </span>'
|
||
. $reload
|
||
. '</div>';
|
||
$data = Array();
|
||
$titleColumn = $this->fieldArray[0];
|
||
$data[$titleColumn] = $content;
|
||
$returnContent = $this->addElement(1, '', $data);
|
||
} // end of if pages > 1
|
||
$data = Array();
|
||
$titleColumn = $this->fieldArray[0];
|
||
$data[$titleColumn] = $content;
|
||
return ($this->addElement(1, '', $data));
|
||
return $returnContent;
|
||
}
|
||
typo3/sysext/t3skin/stylesheets/structure/module_web_list.css (Arbeitskopie) | ||
---|---|---|
padding: 3px 1px 3px 6px;
|
||
}
|
||
table.typo3-dblist tr.db_list_normal td {
|
||
padding-bottom: 5px;
|
||
padding-top: 5px;
|
||
}
|
||
table.typo3-dblist tr td.c-headLine,
|
||
table.typo3-dblist tr.c-headLine td {
|
||
height: 24px;
|
||
... | ... | |
table.typo3-dblist tr td div.typo3-DBctrl {
|
||
height: 16px;
|
||
min-width: 252px;
|
||
padding: 2px;
|
||
}
|
||
tr.t3-row-header td {
|