Project

General

Profile

Actions

Feature #18780

closed

Distinct TCEforms palette rendering

Added by Niels Fröhling over 16 years ago. Updated about 6 years ago.

Status:
Closed
Priority:
Should have
Assignee:
Category:
-
Target version:
-
Start date:
2008-05-14
Due date:
% Done:

0%

Estimated time:
PHP Version:
Tags:
Complexity:
Sprint Focus:

Description

I propose to exchange the table-rendering by defenition-list rendering like in the diff. It allows soft multi-column option-palettes (like seen in the t3skin_adsignum/t3skin_frohling if patch enabled).

The table-based approach is a major obstacle filling the edit-formulars within smaller browser-screens (the palette-option are a single horizontal row), easily exceeding even the 2000px I have available if an extension puts a lot of options.

A two column example:

.typo3-TCEforms-palette > dt {
overflow-x: visible;
overflow-y: hidden;
overflow: visible;
float: left;
/* min-width: 11%;
min-height: 20px; */
width: 11%;
min-height: 20px;
margin-left: 1%;
padding: 0 !important;
}
.typo3-TCEforms-palette > dt span {
vertical-align: -3px;
}
.typo3-TCEforms-palette > dd {
overflow-x: visible;
overflow-y: hidden;
overflow: visible;
float: left;
/* min-width: 35%;
min-height: 20px; */
width: 35%;
min-height: 20px;
margin-left: 1%;
/* margin-right: 5%;*/
text-align: right;
}

(issue imported from #M8397)


Files

class.t3lib_tceforms.php.diff (581 Bytes) class.t3lib_tceforms.php.diff Administrator Admin, 2008-05-14 08:57
example.png (4.91 KB) example.png Administrator Admin, 2008-05-14 08:58
Actions

Also available in: Atom PDF