IDEMPIERE-270 Reports should inherit search filter from window. Fixed layout issue with Firefox and added visual cue that the popup dialog is for the report toolbar button.

This commit is contained in:
Heng Sin Low 2012-10-16 06:45:47 +08:00
parent d10b7a631e
commit 0f4517b1ba
2 changed files with 37 additions and 0 deletions

View File

@ -132,6 +132,9 @@ public class ReportAction implements EventListener<Event>
Vbox vb = new Vbox();
vb.setWidth("100%");
winReport.appendChild(vb);
winReport.setSclass("toolbar-popup-window");
vb.setSclass("toolbar-popup-window-cnt");
vb.setAlign("stretch");
Hbox hb = new Hbox();
hb.setAlign("center");

View File

@ -826,8 +826,42 @@ tbody.z-grid-empty-body td {
text-align: left;
}
<%-- notification message --%>
.z-notification .z-notification-cl,
.z-notification .z-notification-cnt {
width: 300px;
}
<%-- toolbar popup dialog --%>
.toolbar-popup-window .z-window-popup-cnt {
margin-top: 6px;
}
.toolbar-popup-window-cnt {
}
.toolbar-popup-window::before {
content: '';
position: absolute;
width: 0px;
height: 0px;
top: -7px;
left: 6px;
border-top: 7px dashed transparent;
border-left: 7px dashed transparent;
border-right: 7px dashed transparent;
border-bottom: 7px solid #ACACAC;
}
.toolbar-popup-window-cnt::before {
content: '';
position: absolute;
width: 0px;
height: 0px;
top: -5px;
left: 7px;
border-top: 6px dashed transparent;
border-left: 6px dashed transparent;
border-right: 6px dashed transparent;
border-bottom: 6px solid #FFF;
}