mirror of
https://gitee.com/jmix/cuba.git
synced 2024-12-04 20:28:00 +08:00
Window actions margin in the dialog #PL-2960
This commit is contained in:
parent
319077df78
commit
765669aac4
@ -23,6 +23,7 @@ import com.vaadin.event.ShortcutListener;
|
||||
import com.vaadin.server.Page;
|
||||
import com.vaadin.server.Sizeable;
|
||||
import com.vaadin.shared.ui.BorderStyle;
|
||||
import com.vaadin.shared.ui.MarginInfo;
|
||||
import com.vaadin.shared.ui.label.ContentMode;
|
||||
import com.vaadin.ui.Button;
|
||||
import com.vaadin.ui.Component;
|
||||
@ -511,6 +512,7 @@ public class WebWindowManager extends WindowManager {
|
||||
outerLayout.setStyleName("cuba-app-dialog-window");
|
||||
outerLayout.addComponent(layout);
|
||||
outerLayout.setExpandRatio(layout, 1);
|
||||
outerLayout.setMargin(new MarginInfo(true, false, false, false));
|
||||
|
||||
win.setContent(outerLayout);
|
||||
|
||||
|
@ -83,10 +83,6 @@
|
||||
border: 1px solid $theme_windowBorderColor;
|
||||
}
|
||||
|
||||
.#{$primaryStyleName}-contents > .v-scrollable {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.#{$primaryStyleName}-footer {
|
||||
height: 10px;
|
||||
background: transparent;
|
||||
|
Loading…
Reference in New Issue
Block a user