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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
import React from 'react';
import styled from 'styled-components';
import { colors } from '../../config.json';
import { buttonText, mediumText, smallText } from './common-styles';
import ImageView, { IImageViewProps } from './ImageView';
export const StyledContainer = styled.div({
display: 'flex',
backgroundColor: colors.blue,
alignItems: 'center',
paddingLeft: '22px',
paddingRight: '16px',
});
export const StyledSection = styled.div({
display: 'flex',
flexDirection: 'column',
});
export const StyledSectionTitle = styled.span(buttonText, {
backgroundColor: colors.blue,
padding: '14px 16px 14px 22px',
marginBottom: '1px',
});
interface IStyledCellButtonProps {
selected?: boolean;
containedInSection: boolean;
}
export const StyledCellButton = styled.button({}, (props: IStyledCellButtonProps) => ({
display: 'flex',
padding: '0 16px 0 22px',
marginBottom: '1px',
flex: 1,
alignItems: 'center',
alignContent: 'center',
cursor: 'default',
border: 'none',
backgroundColor: props.selected
? colors.green
: props.containedInSection
? colors.blue40
: colors.blue,
':not(:disabled):hover': {
backgroundColor: props.selected ? colors.green : colors.blue80,
},
}));
export const StyledLabel = styled.div(buttonText, (props: { disabled: boolean }) => ({
margin: '14px 0',
flex: 1,
color: props.disabled ? colors.white40 : colors.white,
textAlign: 'left',
}));
export const StyledSubText = styled.span(smallText, {
color: colors.white60,
fontWeight: 800,
flex: -1,
textAlign: 'right',
marginLeft: '8px',
marginRight: '8px',
});
export const StyledTintedIcon = styled(ImageView).attrs((props: IImageViewProps) => ({
tintColor: props.tintColor ?? colors.white60,
tintHoverColor: props.tintHoverColor ?? props.tintColor ?? colors.white60,
}))((props: IImageViewProps) => ({
[StyledCellButton + ':hover &']: {
backgroundColor: props.tintHoverColor,
},
}));
export const StyledFooter = styled.div({
padding: '6px 22px 20px',
});
export const StyledFooterText = styled.span(smallText);
export const StyledFooterBoldText = styled(StyledFooterText)({
fontWeight: 900,
});
export const StyledInputFrame = styled.div({
flexGrow: 0,
backgroundColor: 'rgba(255,255,255,0.1)',
borderRadius: '4px',
padding: '4px 8px',
});
const inputTextStyles: React.CSSProperties = {
...mediumText,
fontWeight: 600,
height: '28px',
textAlign: 'right',
padding: '0px',
};
export const StyledInput = styled.input({}, (props: { valid?: boolean }) => ({
...inputTextStyles,
backgroundColor: 'transparent',
border: 'none',
width: '100%',
height: '100%',
color: props.valid !== false ? colors.white : colors.red,
'::placeholder': {
color: colors.white60,
},
}));
export const StyledAutoSizingTextInputContainer = styled.div({
position: 'relative',
});
export const StyledAutoSizingTextInputFiller = styled.pre({
...inputTextStyles,
minWidth: '80px',
color: 'transparent',
});
export const StyledAutoSizingTextInputWrapper = styled.div({
position: 'absolute',
top: '0px',
left: '0px',
width: '100%',
height: '100%',
});
|