mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
Put a breaking column in timesheet edit popup
This commit is contained in:
parent
a5e0fe493a
commit
45871d6212
@ -1377,6 +1377,10 @@ ul.et2_nowrap, div.et2_nowrap{
|
|||||||
top: 8px;
|
top: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.et2_fullWidth select.et2_date_duration {
|
.et2_fullWidth input.et2_date_duration {
|
||||||
width: 79%;
|
float: left;
|
||||||
|
}
|
||||||
|
.et2_fullWidth select.et2_date_duration {
|
||||||
|
width: 77%;
|
||||||
|
float: right;
|
||||||
}
|
}
|
||||||
|
@ -15,23 +15,11 @@ tr.dialogOperators td,.dialogFooterToolbar {
|
|||||||
|
|
||||||
div#timesheet-edit.et2_container
|
div#timesheet-edit.et2_container
|
||||||
{
|
{
|
||||||
width: 688px;
|
width: 628px;
|
||||||
}
|
}
|
||||||
|
|
||||||
//** add # sign behind the ts_id
|
//** add # sign behind the ts_id
|
||||||
.timesheet_timesheetId:before span { content:"#"; }
|
.timesheet_timesheetId:before span{ content:"#"; }
|
||||||
|
|
||||||
//** Fit the duration selectbox and input fields together
|
|
||||||
#timesheet-edit_ts_duration, #timesheet-edit_ts_duration select
|
|
||||||
{
|
|
||||||
width:74%;
|
|
||||||
white-space: noWrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
#timesheet-edit_ts_duration input
|
|
||||||
{
|
|
||||||
width:4em !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
//** make the modifier inline
|
//** make the modifier inline
|
||||||
.timesheet_modifier label
|
.timesheet_modifier label
|
||||||
|
@ -4,10 +4,11 @@
|
|||||||
<template id="timesheet.edit.general" template="" lang="" group="0" version="1.7.002">
|
<template id="timesheet.edit.general" template="" lang="" group="0" version="1.7.002">
|
||||||
<grid width="100%" height="165">
|
<grid width="100%" height="165">
|
||||||
<columns>
|
<columns>
|
||||||
<column width="102"/>
|
<column width="90"/>
|
||||||
<column width="200"/>
|
<column width="200"/>
|
||||||
<column width="102" disabled="@ts_viewtype"/>
|
<column width="10"/>
|
||||||
<column width="200" disabled="@ts_viewtype"/>
|
<column width="95" disabled="@ts_viewtype"/>
|
||||||
|
<column width="130" disabled="@ts_viewtype"/>
|
||||||
<column width="40"/>
|
<column width="40"/>
|
||||||
<column width="30"/>
|
<column width="30"/>
|
||||||
</columns>
|
</columns>
|
||||||
@ -17,6 +18,7 @@
|
|||||||
<hbox disabled="@pm_integration=none">
|
<hbox disabled="@pm_integration=none">
|
||||||
<link-entry id="pm_id" onchange="1" only_app='projectmanager' blur='None' class="et2_fullWidth"/>
|
<link-entry id="pm_id" onchange="1" only_app='projectmanager' blur='None' class="et2_fullWidth"/>
|
||||||
</hbox>
|
</hbox>
|
||||||
|
<description/>
|
||||||
<hbox disabled="@pm_integration=full" span="all">
|
<hbox disabled="@pm_integration=full" span="all">
|
||||||
<textbox blur="@ts_project_blur" id="ts_project" size="65" maxlength="80" class="et2_fullWidth"/>
|
<textbox blur="@ts_project_blur" id="ts_project" size="65" maxlength="80" class="et2_fullWidth"/>
|
||||||
</hbox>
|
</hbox>
|
||||||
@ -26,6 +28,7 @@
|
|||||||
<hbox disabled="@pm_integration=none" >
|
<hbox disabled="@pm_integration=none" >
|
||||||
<projectmanager-pricelist id="pl_id" class="et2_fullWidth" onchange="this.form['exec[ts_unitprice]'].value=this.options[this.selectedIndex].text.lastIndexOf('(') < 0 ? '' : this.options[this.selectedIndex].text.slice(this.options[this.selectedIndex].text.lastIndexOf('(')+1,-1);" options="None"/>
|
<projectmanager-pricelist id="pl_id" class="et2_fullWidth" onchange="this.form['exec[ts_unitprice]'].value=this.options[this.selectedIndex].text.lastIndexOf('(') < 0 ? '' : this.options[this.selectedIndex].text.slice(this.options[this.selectedIndex].text.lastIndexOf('(')+1,-1);" options="None"/>
|
||||||
</hbox>
|
</hbox>
|
||||||
|
<description/>
|
||||||
<hbox disabled="@pm_integration=none">
|
<hbox disabled="@pm_integration=none">
|
||||||
<textbox type="float" id="ts_unitprice" span="all" class="et2_fullWidth"/>
|
<textbox type="float" id="ts_unitprice" span="all" class="et2_fullWidth"/>
|
||||||
</hbox>
|
</hbox>
|
||||||
@ -40,6 +43,7 @@
|
|||||||
<row class="row" disabled="@ts_viewtype">
|
<row class="row" disabled="@ts_viewtype">
|
||||||
<description value="Quantity" for="ts_quantity"/>
|
<description value="Quantity" for="ts_quantity"/>
|
||||||
<textbox type="float" blur="@ts_quantity_blur" statustext="empty if identical to duration" id="ts_quantity" precision="3" class="et2_fullWidth"/>
|
<textbox type="float" blur="@ts_quantity_blur" statustext="empty if identical to duration" id="ts_quantity" precision="3" class="et2_fullWidth"/>
|
||||||
|
<description/>
|
||||||
<description value="Category" for="cat_id"/>
|
<description value="Category" for="cat_id"/>
|
||||||
<menulist span="all">
|
<menulist span="all">
|
||||||
<menupopup type="select-cat" id="cat_id" options="None,,,timesheet" class="et2_fullWidth"/>
|
<menupopup type="select-cat" id="cat_id" options="None,,,timesheet" class="et2_fullWidth"/>
|
||||||
@ -87,10 +91,11 @@
|
|||||||
<template id="timesheet.edit" template="" lang="" group="0" version="1.9.002">
|
<template id="timesheet.edit" template="" lang="" group="0" version="1.9.002">
|
||||||
<grid width="100%">
|
<grid width="100%">
|
||||||
<columns>
|
<columns>
|
||||||
<column width="107"/>
|
<column width="97"/>
|
||||||
<column width="200"/>
|
|
||||||
<column width="107"/>
|
|
||||||
<column width="200"/>
|
<column width="200"/>
|
||||||
|
<column width="10"/>
|
||||||
|
<column width="97"/>
|
||||||
|
<column width="130"/>
|
||||||
<column width="40"/>
|
<column width="40"/>
|
||||||
<column width="30"/>
|
<column width="30"/>
|
||||||
<column width="4"/>
|
<column width="4"/>
|
||||||
@ -98,22 +103,24 @@
|
|||||||
<rows>
|
<rows>
|
||||||
<row class="dialogHeader" disabled="@ts_viewtype">
|
<row class="dialogHeader" disabled="@ts_viewtype">
|
||||||
<description value="Title" for="ts_title"/>
|
<description value="Title" for="ts_title"/>
|
||||||
<textbox blur="@ts_title_blur" id="ts_title" size="65" maxlength="80" class="et2_fullWidth" tabindex="1" span="3"/>
|
<textbox blur="@ts_title_blur" id="ts_title" size="65" maxlength="80" class="et2_fullWidth" tabindex="1" span="4"/>
|
||||||
<appicon src="timesheet"/>
|
<description font_style="n" id="ts_id" />
|
||||||
<textbox type="integer" id="ts_id" readonly="true" class="timesheet_timesheetId"/>
|
<appicon class="timesheet_appicon"/>
|
||||||
<description />
|
<description/>
|
||||||
</row>
|
</row>
|
||||||
<row class="dialogHeader2">
|
<row class="dialogHeader2">
|
||||||
<description value="Date" for="ts_start"/>
|
<description value="Date" for="ts_start"/>
|
||||||
<date id="ts_start" needed="1" options=",8" class="et2_fullWidth"/>
|
<date id="ts_start" needed="1" options=",8" class="et2_fullWidth"/>
|
||||||
|
<description/>
|
||||||
<description value="Starttime"/>
|
<description value="Starttime"/>
|
||||||
<date-timeonly id="start_time" options="H:i" class="et2_fullWidth" span="3"/>
|
<date-timeonly id="start_time" options="H:i" class="et2_fullWidth" span="3"/>
|
||||||
<description/>
|
<description/>
|
||||||
</row>
|
</row>
|
||||||
<row class="dialogHeader2">
|
<row class="dialogHeader2">
|
||||||
<description value="Duration" for="ts_duration"/>
|
<description value="Duration" for="ts_duration"/>
|
||||||
<date-duration id="ts_duration" options=",hm" class="et2_fullWidth noWrap" />
|
<date-duration id="ts_duration" options=",hm" class="et2_fullWidth" />
|
||||||
<description value="or endtime" class="noWrap"/>
|
<description/>
|
||||||
|
<description value="or endtime" class="et2_noWrap"/>
|
||||||
<date-timeonly id="end_time" options="H:i" class="et2_fullWidth" span="3"/>
|
<date-timeonly id="end_time" options="H:i" class="et2_fullWidth" span="3"/>
|
||||||
<description/>
|
<description/>
|
||||||
</row>
|
</row>
|
||||||
@ -141,6 +148,7 @@
|
|||||||
<menulist >
|
<menulist >
|
||||||
<menupopup id="ts_owner" no_lang="1" class="et2_fullWidth"/>
|
<menupopup id="ts_owner" no_lang="1" class="et2_fullWidth"/>
|
||||||
</menulist>
|
</menulist>
|
||||||
|
<description/>
|
||||||
<description value="Status"/>
|
<description value="Status"/>
|
||||||
<menulist span="3">
|
<menulist span="3">
|
||||||
<menupopup statustext="select a status of the timesheet" id="ts_status" class="et2_fullWidth" options="please select" />
|
<menupopup statustext="select a status of the timesheet" id="ts_status" class="et2_fullWidth" options="please select" />
|
||||||
@ -149,12 +157,13 @@
|
|||||||
</row>
|
</row>
|
||||||
<row class="dialogOperators" disabled="!@ts_modified">
|
<row class="dialogOperators" disabled="!@ts_modified">
|
||||||
<description value="Last modified"/>
|
<description value="Last modified"/>
|
||||||
<hbox width="100%" class="timesheet_modifier">
|
<hbox width="100%">
|
||||||
<menulist>
|
<menulist>
|
||||||
<menupopup type="select-account" id="ts_modifier" readonly="true"/>
|
<menupopup type="select-account" id="ts_modifier" readonly="true"/>
|
||||||
</menulist>
|
</menulist>
|
||||||
<date-time id="ts_modified" readonly="true"/>
|
<date-time id="ts_modified" readonly="true" align="right"/>
|
||||||
</hbox>
|
</hbox>
|
||||||
|
<description/>
|
||||||
<description span="all"/>
|
<description span="all"/>
|
||||||
</row>
|
</row>
|
||||||
<row class="dialogFooterToolbar">
|
<row class="dialogFooterToolbar">
|
||||||
|
Loading…
Reference in New Issue
Block a user