1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
import styled from 'styled-components';
import { colors } from '../../config.json';
import { smallText } from './common-styles';
import { Container } from './Layout';
import { ScopeBar } from './ScopeBar';
import SettingsHeader from './SettingsHeader';
export const StyledContainer = styled(Container)({
backgroundColor: colors.darkBlue,
});
export const StyledScopeBar = styled(ScopeBar)({
marginTop: '8px',
});
export const StyledContent = styled.div({
display: 'flex',
flexDirection: 'column',
flex: 1,
overflow: 'visible',
});
export const StyledNavigationBarAttachment = styled.div({}, (props: { top: number }) => ({
position: 'sticky',
top: `${props.top}px`,
padding: '8px 18px 8px 16px',
backgroundColor: colors.darkBlue,
zIndex: 1,
}));
export const StyledFilterContainer = styled.div({
display: 'flex',
position: 'relative',
justifySelf: 'end',
});
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',
zIndex: 2,
});
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,
},
});
export const StyledSettingsHeader = styled(SettingsHeader)({
paddingLeft: '6px',
paddingBottom: '11px',
});
export const StyledProviderCountRow = styled.div({
...smallText,
color: colors.white,
marginLeft: '6px',
marginBottom: '8px',
});
export const StyledProvidersCount = styled.div({
...smallText,
display: 'inline-flex',
alignItems: 'center',
backgroundColor: colors.blue,
borderRadius: '4px',
padding: '3px 8px',
marginLeft: '6px',
color: colors.white,
});
export const StyledClearProvidersButton = styled.div({
display: 'inline-block',
borderWidth: 0,
padding: 0,
margin: '0 0 0 6px',
cursor: 'default',
backgroundColor: 'transparent',
});
|