diff options
Diffstat (limited to 'gui/src/renderer/components/SelectLocationStyles.tsx')
| -rw-r--r-- | gui/src/renderer/components/SelectLocationStyles.tsx | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/gui/src/renderer/components/SelectLocationStyles.tsx b/gui/src/renderer/components/SelectLocationStyles.tsx index 6a3685ffb4..2c317ddddc 100644 --- a/gui/src/renderer/components/SelectLocationStyles.tsx +++ b/gui/src/renderer/components/SelectLocationStyles.tsx @@ -1,5 +1,6 @@ import styled from 'styled-components'; import { colors } from '../../config.json'; +import { smallText } from './common-styles'; import { Container } from './Layout'; import { ScopeBar } from './ScopeBar'; @@ -22,3 +23,39 @@ export const StyledNavigationBarAttachment = styled.div({ marginTop: '8px', paddingHorizontal: '4px', }); + +export const StyledFilterContainer = styled.div({ + position: 'relative', +}); + +export const StyledFilterIconButton = styled.button({ + borderWidth: 0, + padding: 0, + margin: 0, + cursor: 'default', + backgroundColor: 'transparent', +}); + +export const StyledFilterMenu = styled.div({ + position: 'absolute', + top: 'calc(100% + 4px)', + right: '0', + borderRadius: '4px', + backgroundColor: colors.darkBlue, + overflow: 'hidden', +}); + +export const StyledFilterByProviderButton = styled.button({ + ...smallText, + borderWidth: 0, + margin: 0, + cursor: 'default', + color: colors.white, + padding: '7px 15px', + whiteSpace: 'nowrap', + borderRadius: 0, + backgroundColor: colors.blue, + ':hover': { + backgroundColor: colors.blue80, + }, +}); |
