mirror of https://github.com/zulip/zulip.git
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:
parent
631eba09ee
commit
9cf214a7cb
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue