NM Naufaldo
NM Naufaldo

Reputation: 1160

Odoo 15 Label Field Too Wide

In the Odoo 15, I realize that the width of the label for the field is too wide. When I inspect the element in the browser, the CSS that causing this behaviour is this one:

@media (min-width: 992px)
.o_web_client:not(.o_chatter_position_sided) .o_action_manager .o_content .o_inner_group .o_td_label,
.o_web_client:not(.o_chatter_position_sided) .o_action_manager .modal-content .o_inner_group .o_td_label {
        min-width: 260px !important;
}

I already try to change some CSS that I think related to this behaviour from the source code, but still not working. How to change this default width?

enter image description here

Upvotes: 1

Views: 374

Answers (1)

NinjaBat
NinjaBat

Reputation: 390

Are you using web responsive module ? If yes, look at

web/web_responsive/static/src/legacy/scss/web_responsive.scss 

file as well to make same changes as you did.

Otherwise, changing min-width should work fine

Note: Do not edit at source. Make a new module, inherit those and change.

Upvotes: 1

Related Questions