mirror of
https://github.com/trezor/trezor-wallet
synced 2025-06-18 14:08:49 +00:00
add box shadow
This commit is contained in:
parent
8edb6b66b8
commit
bdd43b49b2
@ -38,7 +38,8 @@ const Wrapper = styled.button`
|
|||||||
}
|
}
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
border-color: ${colors.INPUT_BORDER_FOCUSED};
|
border-color: ${colors.INPUT_FOCUSED_BORDER};
|
||||||
|
box-shadow: 0 0px 6px 0 ${colors.INPUT_FOCUSED_SHADOW};
|
||||||
}
|
}
|
||||||
|
|
||||||
${props => props.isDisabled && css`
|
${props => props.isDisabled && css`
|
||||||
@ -53,7 +54,7 @@ const Wrapper = styled.button`
|
|||||||
border: 1px solid ${colors.DIVIDER};
|
border: 1px solid ${colors.DIVIDER};
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
border-color: ${colors.INPUT_BORDER_FOCUSED};
|
border-color: ${colors.INPUT_FOCUSED_BORDER};
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
@ -72,6 +73,11 @@ const Wrapper = styled.button`
|
|||||||
border: 0px;
|
border: 0px;
|
||||||
color: ${colors.TEXT_SECONDARY};
|
color: ${colors.TEXT_SECONDARY};
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
color: ${colors.TEXT_PRIMARY};
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&:active {
|
&:active {
|
||||||
color: ${colors.TEXT_PRIMARY};
|
color: ${colors.TEXT_PRIMARY};
|
||||||
|
@ -16,8 +16,8 @@ const styles = isSearchable => ({
|
|||||||
minHeight: 'initial',
|
minHeight: 'initial',
|
||||||
height: '40px',
|
height: '40px',
|
||||||
borderRadius: '2px',
|
borderRadius: '2px',
|
||||||
borderColor: isFocused ? colors.INPUT_BORDER_FOCUSED : colors.DIVIDER,
|
borderColor: isFocused ? colors.INPUT_FOCUSED_BORDER : colors.DIVIDER,
|
||||||
boxShadow: 'none',
|
boxShadow: isFocused ? `0 0px 6px 0 ${colors.INPUT_FOCUSED_SHADOW}` : 'none',
|
||||||
background: isDisabled ? colors.LANDING : colors.WHITE,
|
background: isDisabled ? colors.LANDING : colors.WHITE,
|
||||||
'&:hover': {
|
'&:hover': {
|
||||||
cursor: isSearchable ? 'text' : 'pointer',
|
cursor: isSearchable ? 'text' : 'pointer',
|
||||||
|
@ -68,7 +68,8 @@ const StyledTextarea = styled(Textarea)`
|
|||||||
}
|
}
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
border-color: ${colors.INPUT_BORDER_FOCUSED};
|
border-color: ${colors.INPUT_FOCUSED_BORDER};
|
||||||
|
box-shadow: 0 0px 6px 0 ${colors.INPUT_FOCUSED_SHADOW};
|
||||||
}
|
}
|
||||||
|
|
||||||
&:disabled {
|
&:disabled {
|
||||||
|
@ -60,7 +60,8 @@ const StyledInput = styled.input`
|
|||||||
transition: ${TRANSITION.HOVER};
|
transition: ${TRANSITION.HOVER};
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
border-color: ${colors.INPUT_BORDER_FOCUSED};
|
border-color: ${colors.INPUT_FOCUSED_BORDER};
|
||||||
|
box-shadow: 0 0px 6px 0 ${colors.INPUT_FOCUSED_SHADOW};
|
||||||
}
|
}
|
||||||
|
|
||||||
&:disabled {
|
&:disabled {
|
||||||
|
@ -34,5 +34,7 @@ export default {
|
|||||||
|
|
||||||
LABEL_COLOR: '#A9A9A9',
|
LABEL_COLOR: '#A9A9A9',
|
||||||
TOOLTIP_BACKGROUND: '#333333',
|
TOOLTIP_BACKGROUND: '#333333',
|
||||||
INPUT_BORDER_FOCUSED: '#A9A9A9',
|
|
||||||
|
INPUT_FOCUSED_BORDER: '#A9A9A9',
|
||||||
|
INPUT_FOCUSED_SHADOW: '#d6d7d7',
|
||||||
};
|
};
|
Loading…
Reference in New Issue
Block a user