mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
Targets base inputs and only prevents outline if user uses a mouse (#6871)
This commit is contained in:
parent
5cc4a5c6b7
commit
33071e3014
@ -38,7 +38,6 @@
|
|||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
font-family: Roboto;
|
font-family: Roboto;
|
||||||
border: none;
|
border: none;
|
||||||
outline: 0 !important;
|
|
||||||
max-width: 22ch;
|
max-width: 22ch;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
|
@ -84,7 +84,6 @@
|
|||||||
&__account-primary-balance {
|
&__account-primary-balance {
|
||||||
color: $scorpion;
|
color: $scorpion;
|
||||||
border: none;
|
border: none;
|
||||||
outline: 0 !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&__account-secondary-balance {
|
&__account-secondary-balance {
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: 22px;
|
line-height: 22px;
|
||||||
border: none;
|
border: none;
|
||||||
outline: 0 !important;
|
|
||||||
max-width: 22ch;
|
max-width: 22ch;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -38,13 +38,15 @@ html {
|
|||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
input:focus,
|
|
||||||
textarea:focus {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mouse-user-styles {
|
.mouse-user-styles {
|
||||||
button:focus {
|
button:focus,
|
||||||
|
input:focus,
|
||||||
|
textarea:focus,
|
||||||
|
.unit-input__input,
|
||||||
|
.account-list-item__account-primary-balance,
|
||||||
|
.account-list-item__input,
|
||||||
|
.currency-display__input
|
||||||
|
{
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user