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
|
import styled from 'styled-components';
import { colors } from '../../config.json';
import { tinyText } 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 StyledFilterIconButton = styled.button({
justifySelf: 'end',
borderWidth: 0,
padding: 0,
margin: 0,
cursor: 'default',
backgroundColor: 'transparent',
});
export const StyledSettingsHeader = styled(SettingsHeader)({
paddingLeft: '6px',
paddingBottom: '11px',
});
export const StyledFilterRow = styled.div({
...tinyText,
color: colors.white,
marginLeft: '6px',
marginBottom: '8px',
});
export const StyledFilter = styled.div({
...tinyText,
display: 'inline-flex',
alignItems: 'center',
backgroundColor: colors.blue,
borderRadius: '4px',
padding: '3px 8px',
marginLeft: '6px',
color: colors.white,
});
export const StyledClearFilterButton = styled.div({
display: 'inline-block',
borderWidth: 0,
padding: 0,
margin: '0 0 0 6px',
cursor: 'default',
backgroundColor: 'transparent',
});
|