Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions to_backend_theme/static/src/scss/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ body {
}
}

// Avoid avatar image stretch
.o_Follower{
a{
.o_Follower_avatar{
Expand All @@ -78,6 +79,26 @@ body {
}
}

// Fix `pad` UI
.o_note_form_view.o_form_view {
.o_form_sheet_bg {
// Odoo try to set a child height with true value (500px) but the correctly way is set true value for parent-flex
// currently Odoo set .oe_pad .oe_pad_content.oe_editing {height:500px; ...}
height: 500px;
.o_form_sheet {
.oe_pad {
.oe_pad_content {
display: flex;
}
}
}
}
}
.oe_pad .oe_pad_content.oe_editing{
display: flex;
flex: 1;
}

.o_control_panel {
.o_cp_right {
.btn-secondary {
Expand Down