This question has been flagged
4 Replies
41196 Views

I m trying to find a solution to give color to fields in form view. For now i have given color to the label .

But i also want to color the value that is there for that field.Is there any widget that i can use to get color or do i have to create a css for it.

Avatar
Discard
Best Answer

You can just use inline css to get your goal
Like:

<field name="operator" style="background:Blue;" attrs="{'readonly':[('state', '=', 'done')]}"/>

if you need to give color for your letters, then use style="color:Red;" 

Avatar
Discard

Note: For W3C compliant CSS: If you define the color property, you must also define the background-color. I needed to do this with Odoo v11.

Best Answer

If you want you color to depend from a color field, check out https://www.dator.lu/blog/blog-1/color-char-field-4

Avatar
Discard
Best Answer

Hi ,

For that you need to create css and give the class name to the field.

ex: In Css file

.text_value_color {

    color: #052EF9;

}

In xml :

<field name="name" class="text_value_color"/>

Avatar
Discard
Best Answer

It is a hint for you ?

https://www.odoo.com/forum/help-1/question/107387

Avatar
Discard