blob: 3092055b645b1e44351f524c8104835231c869a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// ------------------------------------------------------------------
// Layout
// ------------------------------------------------------------------
.o_FormRenderer_chatterContainer {
display: flex;
flex: 1 1 auto;
margin: 0 auto;
max-width: $o-form-view-sheet-max-width;
padding: map-get($spacers, 3) map-get($spacers, 3) map-get($spacers, 5);
width: 100%;
}
// FIX to hide chatter in dialogs when they are opened from an action returned by python code
.modal .modal-dialog .o_form_view .o_FormRenderer_chatterContainer {
display: none;
}
|