diff --git a/libreplan-webapp/src/main/java/org/libreplan/web/users/dashboard/MonthlyTimesheetController.java b/libreplan-webapp/src/main/java/org/libreplan/web/users/dashboard/MonthlyTimesheetController.java index 8ba4eb52f..649de4bde 100644 --- a/libreplan-webapp/src/main/java/org/libreplan/web/users/dashboard/MonthlyTimesheetController.java +++ b/libreplan-webapp/src/main/java/org/libreplan/web/users/dashboard/MonthlyTimesheetController.java @@ -537,7 +537,13 @@ public class MonthlyTimesheetController extends GenericForwardComposer } private void createProjectAndTaskColumns() { - columns.appendChild(new Column(_("Project"))); + Column project = new Column(_("Project")); + project.setWidth("200px"); + columns.appendChild(project); + + Column tasks = new Column(_("Tasks")); + project.setStyle("min-width:300px"); + columns.appendChild(project); columns.appendChild(new Column(_("Task"))); } diff --git a/libreplan-webapp/src/main/webapp/common/css/user_dashboard.css b/libreplan-webapp/src/main/webapp/common/css/user_dashboard.css new file mode 100644 index 000000000..5609e6ed5 --- /dev/null +++ b/libreplan-webapp/src/main/webapp/common/css/user_dashboard.css @@ -0,0 +1,5 @@ +.timesheet .z-textbox { + background-image: none; + background-color: transparent; + border: solid 1px transparent; +} diff --git a/libreplan-webapp/src/main/webapp/myaccount/monthlyTimesheet.zul b/libreplan-webapp/src/main/webapp/myaccount/monthlyTimesheet.zul index e382d0f28..051fb0a6f 100644 --- a/libreplan-webapp/src/main/webapp/myaccount/monthlyTimesheet.zul +++ b/libreplan-webapp/src/main/webapp/myaccount/monthlyTimesheet.zul @@ -25,6 +25,7 @@ + -