bootstrap: Remove bootstrap CSS for email type inputs.

We use email type inputs only in portico pages and
the bootstrap CSS is already overridden by CSS
defined in portico_signin.css. Only outline property
was being applied by bootstrap on focusing the input
which has been added to CSS in portico_signin.css in
the previous commit as password and email type inputs
have common CSS.

Thus, we can remove the bootstrap CSS for email type
inputs safely.
This commit is contained in:
Sahil Batra 2023-06-19 13:54:01 +05:30 committed by Tim Abbott
parent 631eba09ee
commit 9cf214a7cb
1 changed files with 0 additions and 3 deletions

View File

@ -421,7 +421,6 @@ label {
margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
input[type="url"] {
display: inline-block;
height: 20px;
@ -436,7 +435,6 @@ input[type="url"] {
vertical-align: middle;
}
input[type="text"],
input[type="email"],
input[type="url"] {
background-color: #ffffff;
border: 1px solid #cccccc;
@ -449,7 +447,6 @@ input[type="url"] {
transition: border linear .2s, box-shadow linear .2s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus {
border-color: rgba(82, 168, 236, 0.8);
outline: 0;