Commit 18b93613 authored by David Walsh's avatar David Walsh Committed by GitHub

fix: Ensure proper cursor for network dropdown (#4302)

parent 1f78c236
...@@ -50,6 +50,7 @@ const ActiveRowWrapper = styled.div` ...@@ -50,6 +50,7 @@ const ActiveRowWrapper = styled.div`
` `
const FlyoutHeader = styled.div` const FlyoutHeader = styled.div`
color: ${({ theme }) => theme.deprecated_text2}; color: ${({ theme }) => theme.deprecated_text2};
cursor: default;
font-weight: 400; font-weight: 400;
` `
const FlyoutMenu = styled.div` const FlyoutMenu = styled.div`
...@@ -114,7 +115,6 @@ const Logo = styled.img` ...@@ -114,7 +115,6 @@ const Logo = styled.img`
` `
const NetworkLabel = styled.div` const NetworkLabel = styled.div`
flex: 1 1 auto; flex: 1 1 auto;
cursor: default;
` `
const SelectorLabel = styled(NetworkLabel)` const SelectorLabel = styled(NetworkLabel)`
display: none; display: none;
...@@ -153,6 +153,7 @@ const SelectorControls = styled.div<{ supportedChain: boolean }>` ...@@ -153,6 +153,7 @@ const SelectorControls = styled.div<{ supportedChain: boolean }>`
background-color: ${theme.deprecated_red1}; background-color: ${theme.deprecated_red1};
border: 2px solid ${theme.deprecated_red1}; border: 2px solid ${theme.deprecated_red1};
`} `}
cursor: default;
:focus { :focus {
background-color: ${({ theme }) => darken(0.1, theme.deprecated_red1)}; background-color: ${({ theme }) => darken(0.1, theme.deprecated_red1)};
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment