Hello guys,
I don't find the CSS to change this blue shadowed border around all the odoo input box.
What is the CSS? Where is it?
Thanks.

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hello guys,
I don't find the CSS to change this blue shadowed border around all the odoo input box.
What is the CSS? Where is it?
Thanks.
We will use this css code in our custom CSS :
.form-control:focus{
border-color:red;
outline:0;
-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(255,0,0,0.6);
box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(255,0,0,0.6)
}
solved then?
yes mister. This code works well.
It's a bootstrap css class: .form-control:focus specifically the property border-color
You could not add the class form-control to that input or change the property value for all the inputs with form-control class or create another css class specifically to that input
Erstellen Sie heute ein Konto, um exklusive Funktionen zu nutzen und mit unserer tollen Community zu interagieren!
RegistrierenVerknüpfte Beiträge | Antworten | Ansichten | Aktivität | |
---|---|---|---|---|
|
1
Juli 24
|
1958 | ||
|
1
Juli 24
|
1979 | ||
|
1
Dez. 22
|
2730 | ||
|
2
März 18
|
20125 | ||
|
1
März 15
|
4087 |
Nobody?
Which version of Odoo does your question relate to?
We are on odoo 8!