Replaced 'Previous' and 'Next' monthly timesheet buttons for icons
FEA: ItEr76S28UserDashboard
This commit is contained in:
parent
ed468f3fb2
commit
668e329d01
3 changed files with 5 additions and 4 deletions
BIN
libreplan-webapp/src/main/webapp/common/img/ico_step_left.png
Normal file
BIN
libreplan-webapp/src/main/webapp/common/img/ico_step_left.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 686 B |
BIN
libreplan-webapp/src/main/webapp/common/img/ico_step_right.png
Normal file
BIN
libreplan-webapp/src/main/webapp/common/img/ico_step_right.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 674 B |
|
|
@ -51,16 +51,17 @@
|
|||
<hbox align="pack">
|
||||
<div visible="@{controller.currentUser}">
|
||||
<button id="previousMonth"
|
||||
image="/common/img/ico_step_left.png" sclass="icono"
|
||||
onClick="controller.previousMonth();"
|
||||
label="${i18n:_('Previous')}"
|
||||
tooltiptext="${i18n:_('Previous')}"
|
||||
disabled="@{controller.firstMonth}" />
|
||||
</div>
|
||||
|
||||
<label value="@{controller.date}" />
|
||||
<div visible="@{controller.currentUser}">
|
||||
<button id="nextMonth"
|
||||
onClick="controller.nextMonth();"
|
||||
label="${i18n:_('Next')}"
|
||||
onClick="controller.nextMonth();" image="/common/img/ico_step_right.png"
|
||||
tooltiptext="${i18n:_('Next')}" sclass="icono"
|
||||
disabled="@{controller.lastMonth}" />
|
||||
</div></hbox>
|
||||
</row>
|
||||
|
|
@ -124,7 +125,7 @@
|
|||
<hbox width="100%">
|
||||
<grid id="timesheet" width="100%" sizedByContent="true" hflex="1" sclass="timesheet"
|
||||
model="@{controller.rows}"
|
||||
rowRenderer="@{controller.rowRenderer}" />
|
||||
rowRenderer="@{controller.rowRenderer}"/>
|
||||
</hbox>
|
||||
|
||||
</groupbox>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue