"how to change focus glow of textarea in bootstrap 3?" Code Answer

5

try using:

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;
}
By regisls on February 23 2022
Only authorized users can answer the Search term. Please sign in first, or register a free account.