Skip to content

Commit

Permalink
[FIX] web: improve visual glitch for 'many2many_tags' field widget on…
Browse files Browse the repository at this point in the history
… settings view

 - For 'res.config.setting' view, when there is a field with
'many2many_tags' widget, a drop-down is not displayed
properly. (For example, see 'default_cashbox_lines_ids'
field from point_of_sale module)

 - This commit fixes the above visual glitch by properly displaying
the field having 'many2many_tags' widget on settings view.

Task id - 1935608
  • Loading branch information
sht-odoo committed Feb 11, 2019
1 parent 8cc62b1 commit 55f1e68
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions addons/web/static/src/scss/form_view.scss
Original file line number Diff line number Diff line change
Expand Up @@ -744,6 +744,10 @@
.o_field_widget {
width: 50%;
flex: 0 0 auto;

&.o_field_many2manytags > .o_field_widget {
flex: 1 0 50px;
}
}
button.btn-link:first-child {
padding-left: 0;
Expand Down

0 comments on commit 55f1e68

Please sign in to comment.