Skip to content

Commit

Permalink
[FIX] partner_autocomplete: field as title is too short
Browse files Browse the repository at this point in the history
Before this commit when the partner autocomplete field was used
the form title css rules defined in o_field_char were missing.

So now the width: 100% is also applied when the partner autocomplete
is a title and takes the whole available space.

closes odoo#114580

Signed-off-by: Pierre Paridans (app) <app@odoo.com>
  • Loading branch information
adr-odoo committed Mar 7, 2023
1 parent 223acaa commit b978854
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,8 @@
}
}
}

// Same rule as .oe_title .o_field_char
.o_form_view .o_form_editable .oe_title .o_field_field_partner_autocomplete {
width: 100%;
}

0 comments on commit b978854

Please sign in to comment.