How can I change the border/outline color for inpu

2020-01-31 03:14发布

I want to change the color of bootstrap textbox from the default blue. tried:

.input-small,
.input-medium {
    border-color: #E56717;
}

Not of much help. Also tried ":focus"

3条回答
我欲成王,谁敢阻挡
2楼-- · 2020-01-31 03:50

If you are using bootstrap 3 with LESS, you can set the variable @input-border-focus. This variable can be found in variables.less.

查看更多
Luminary・发光体
3楼-- · 2020-01-31 03:59

To whom visited this page and didn't find a solution, what I did is replacing -webkit-focus-ring-color with desired color and it works just fine!

查看更多
该账号已被封号
4楼-- · 2020-01-31 04:00

I presume you're speaking about the blue glow on focus? Try this:

textarea:focus, input:focus, input[type]:focus, .uneditable-input:focus {   
    border-color: rgba(229, 103, 23, 0.8);
    box-shadow: 0 1px 1px rgba(229, 103, 23, 0.075) inset, 0 0 8px rgba(229, 103, 23, 0.6);
    outline: 0 none;
}
查看更多
登录 后发表回答