Is it possible to turn on an underline for all fields in Odoo 17?
I can't figure out which CSS does that.
Thanks.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Is it possible to turn on an underline for all fields in Odoo 17?
I can't figure out which CSS does that.
Thanks.
I got it!
.o_input {
--o-input-border-color: blue !important;
}
.o_input:not(:hover):not(:focus) {
--o-input-border-color: orange !important;
}
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
3
मई 25
|
1613 | ||
|
1
अप्रैल 25
|
1220 | ||
one2one relational field
Solved
|
|
3
सित॰ 24
|
14076 | |
|
1
जुल॰ 24
|
1921 | ||
|
1
जुल॰ 24
|
1947 |
I did find this: https://www.odoo.com/pl_PL/forum/pomoc-1/show-a-bottom-line-in-all-fields-for-odoo-16-214643
But I don't want to edit a system file. How can I convert that bit to regular css?
Thanks.