Search code examples
csstextboxoperaoutline

how to remove textbox outline in Opera


I tested the below code but gain no success:

enter image description here

input[type="text"]:focus, input[type="password"]:focus {
    outline:none;
    -moz-transition: box-shadow 0.3s ease-out 0s;
    background-clip: padding-box;
    border: 1px solid #B6B6B6;
    border-radius: 3px 3px 3px 3px;
    color: #404040;
    font-size: 16px;
    height: auto;
    line-height: 16px;
    padding: 10px;
}

Is there something here I'm missing?


Solution

  • Opera applies a yellow outline to form inputs that have saved login information. I don't think it is possible to override it with CSS.