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
|
import { lighten } from '@material-ui/core/styles/colorManipulator';
const styles = theme => ({
root: {
paddingRight: theme.spacing(1),
},
rootTable: {
width: '100%',
marginTop: theme.spacing(3),
overflowX: 'hidden',
},
highlight:
theme.palette.type === 'light' ? {
color: theme.palette.secondary.main,
backgroundColor: lighten(theme.palette.secondary.light, 0.85),
} : {
color: theme.palette.text.primary,
backgroundColor: theme.palette.secondary.dark,
},
spacer: {
flex: '1 1 100%',
},
actionsToolbar: {
color: theme.palette.text.secondary,
flex: '1 0 auto',
},
titleToolbar: {
flex: '0 0 auto',
},
filterBtn: {
top: -5,
},
textField: {
flexBasis: 200,
width: 300
},
table: {
minWidth: 900,
},
actions: {
color: theme.palette.text.secondary,
margin: 10
},
toolbar: {
backgroundColor: theme.palette.grey[800],
},
title: {
flex: '0 0 auto',
'& h6': {
color: theme.palette.common.white
}
},
button: {
margin: theme.spacing(1),
},
iconSmall: {
fontSize: 20,
},
leftIcon: {
marginRight: theme.spacing(1),
},
});
export default styles;
|