Actions
Feature #18780
closedDistinct TCEforms palette rendering
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
Actions