コンテンツへスキップ
メニュー
この質問にフラグが付けられました
5 返信
8009 ビュー

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.


アバター
破棄
著作者

Nobody?

Which version of Odoo does your question relate to?

著作者

We are on odoo 8!

著作者 最善の回答

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

アバター
破棄
関連投稿 返信 ビュー 活動
1
7月 24
1920
1
7月 24
1947
1
12月 22
2691
2
3月 18
20107
1
3月 15
4052