ItEr14S10RFDesenhoGraficoPortalItEr13S10: CSS fixes to listdetails component
This commit is contained in:
parent
86f5cad2d7
commit
dc77d8b9a3
3 changed files with 14 additions and 9 deletions
|
|
@ -64,6 +64,7 @@ public class ListDetails extends HtmlMacroComponent {
|
|||
|
||||
@Override
|
||||
public void afterCompose() {
|
||||
setClass("listdetails");
|
||||
super.afterCompose();
|
||||
for (TaskBean taskBean : taskBeans) {
|
||||
addTask(taskBean);
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@
|
|||
top = self;
|
||||
]]>
|
||||
</zscript>
|
||||
<hbox>
|
||||
<textbox id="nameBox" ctrlKeys="#down#up#right#left" onCtrlKey="top.userWantsToMove(self,event);" value="" onChange="top.updateBean();" />
|
||||
<hbox class="taskdetail_grid">
|
||||
<textbox id="nameBox" ctrlKeys="#down#up#right#left" onCtrlKey="top.userWantsToMove(self,event);" value="" onChange="top.updateBean();" class="task_title"/>
|
||||
<textbox id="startDateTextBox" value="" ctrlKeys="#down#up#right#left" onCtrlKey="top.userWantsToMove(self,event);" onChange="top.updateBean();" onOK="top.userWantsDateBox(self);" />
|
||||
<datebox id="startDateBox" compact="true" onChange="top.updateBean();" visible="${false}" onBlur="top.dateBoxHasLostFocus(self);"/>
|
||||
<textbox id="endDateTextBox" ctrlKeys="#down#up#right#left" onCtrlKey="top.userWantsToMove(self,event);" value="" onChange="top.updateBean();" onOK="top.userWantsDateBox(self);"/>
|
||||
|
|
|
|||
|
|
@ -8,14 +8,16 @@
|
|||
}
|
||||
|
||||
.listdetails {
|
||||
width:200px;
|
||||
width:280px;
|
||||
float:left;
|
||||
margin-top:46px;
|
||||
border-bottom: 1px solid #86A4BE;
|
||||
font-size:10px !important;
|
||||
}
|
||||
|
||||
.listdetails table {
|
||||
height:20px;
|
||||
border-bottom: 1px solid #86A4BE;
|
||||
.taskdetail_grid table {
|
||||
height:30px;
|
||||
width:280px;
|
||||
}
|
||||
|
||||
.listdetails img {
|
||||
|
|
@ -27,22 +29,24 @@
|
|||
}
|
||||
|
||||
.listdetails input {
|
||||
width: 90px;
|
||||
width: 80px;
|
||||
font-size:10px !important;
|
||||
border-bottom:0px;
|
||||
border-right:0px;
|
||||
height:17px;
|
||||
}
|
||||
|
||||
.task_title {
|
||||
width: 120px !important;
|
||||
}
|
||||
|
||||
.listdetails .z-datebox-inp {
|
||||
height:17px;
|
||||
font-family:"Verdana,Tahoma,Arial,Helvetica,sans-serif";
|
||||
font-size:10px !important;
|
||||
border-bottom:0px;
|
||||
border-right:0px;
|
||||
}
|
||||
|
||||
|
||||
/* Task box properties */
|
||||
.yui-resize, .box {
|
||||
border: 1px solid;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue