如何在 Bootstrap 3 中更改文本区域的焦点发光?
How to change focus glow of textarea in Bootstrap 3?
如果焦点在 Bootstrap 3 输入和文本区域,我想更改蓝色发光。
我尝试添加 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;
}
到我的 costum.css 但它只会改变输入字段的发光,不会改变文本区域。
我也试过 this,
.input:focus {
outline: none !important;
border:1px solid red;
box-shadow: 0 0 10px #719ECE;
}
什么都没改变。
我不是 CSS 精明的人,非常感谢您的帮助。
尝试使用:
textarea:focus, input:focus, .uneditable-input:focus {
border-color: rgba(229, 103, 23, 0.8) !important;
box-shadow: 0 1px 1px rgba(229, 103, 23, 0.075) inset, 0 0 8px rgba(229, 103, 23, 0.6) !important;
outline: 0 none !important;
}
如果焦点在 Bootstrap 3 输入和文本区域,我想更改蓝色发光。
我尝试添加 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;
}
到我的 costum.css 但它只会改变输入字段的发光,不会改变文本区域。 我也试过 this,
.input:focus {
outline: none !important;
border:1px solid red;
box-shadow: 0 0 10px #719ECE;
}
什么都没改变。
我不是 CSS 精明的人,非常感谢您的帮助。
尝试使用:
textarea:focus, input:focus, .uneditable-input:focus {
border-color: rgba(229, 103, 23, 0.8) !important;
box-shadow: 0 1px 1px rgba(229, 103, 23, 0.075) inset, 0 0 8px rgba(229, 103, 23, 0.6) !important;
outline: 0 none !important;
}