Bug #18893
closedwide by default doesn't exist in TYPO3 4.2.0 any more
0%
Description
In former versions of TYPO3 (< 4.2) in the "User settings" there was the possibilty to set "Wide document background".
http://support.typo3.org/general/german/m/typo3-german-42-breiten-hintergrund-anzeigen-gibts-nicht-mehr-346137/p/1053/
(issue imported from #M8585)
Updated by Kurt Ludikovsky over 16 years ago
quick fix - workaround (V 4.2.1)
by changing the underlying table - enlarging the columns the icons will be put into one line.
to do this, change in typo3/stylesheet.css (make a copy before) the entries starting at line 1798 as follows
+++++++
table.typo3-dblist tr td.col-icon {
width: 20px; /*+++ KL 2008-06-15 */
}
table.typo3-dblist tr td.col-icon a {
width: 20px; /*+++ KL 2008-06-15 */
display: block;
}
table.typo3-dblist tr td.col-title {
width: 200px; /*+++ KL 2008-06-15 */
overflow: hidden;
}
table.typo3-dblist tr.c-headLine td.col-title a {
width: 200px;
display: block;
font-weight: bold;
}
table.typo3-dblist tr td.col-control {
width: 300px; /*+++ KL 2008-06-15 */
text-align: left;
}
table.typo3-dblist tr td.col-control-space {
width: 4px;
}
table.typo3-dblist tr.c-headLine td.col-control a{
width: 300px; /*+++ KL 2008-06-15 */
display: block;
}
-------------
Updated by Christian Kuhn almost 16 years ago
Resolved as duplicate of #19650 which is currently pending in core list. Please test.