-
Notifications
You must be signed in to change notification settings - Fork 37
/
theme.js
80 lines (74 loc) · 1.25 KB
/
theme.js
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
const theme = {
chipsContainer: {
display: "flex",
position: "relative",
border: "1px solid #ccc",
backgroundColor: '#fff',
font: "13.33333px Arial",
minHeight: 24,
alignItems: "center",
flexWrap: "wrap",
padding: "2.5px",
borderRadius: 5,
':focus': {
border: "1px solid #aaa",
}
},
container:{
flex: 1,
},
containerOpen: {
},
input: {
border: 'none',
outline: 'none',
boxSizing: 'border-box',
width: '100%',
padding: 5,
margin: 2.5
},
suggestionsContainer: {
},
suggestionsList: {
position: 'absolute',
border: '1px solid #ccc',
zIndex: 10,
left: 0,
top: '100%',
width: '100%',
backgroundColor: '#fff',
listStyle: 'none',
padding: 0,
margin: 0,
},
suggestion: {
padding: '5px 15px'
},
suggestionHighlighted: {
background: '#ddd'
},
sectionContainer: {
},
sectionTitle: {
},
}
export default theme;
export const chipTheme = {
chip: {
padding: 5,
background: "#ccc",
margin: "2.5px",
borderRadius: 3,
cursor: 'default',
},
chipSelected: {
background: '#888',
},
chipRemove: {
fontWeight: "bold",
cursor: "pointer",
':hover': {
color: 'red',
}
}
}