콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
5 답글
8123 화면

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
2099
1
7월 24
2112
1
12월 22
2849
2
3월 18
20300
1
3월 15
4171