@applica-software-guru/react-admin 1.1.84 → 1.1.85

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applica-software-guru/react-admin",
3
- "version": "1.1.84",
3
+ "version": "1.1.85",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
@@ -18,7 +18,7 @@ const StyledRoot = styled('div', {
18
18
  [theme.breakpoints.up('sm')]: {
19
19
  marginTop: `-${theme.spacing(2)}`,
20
20
  marginBottom: theme.spacing(margin ? 0 : 1),
21
- marginLeft: theme.spacing(margin ? 1 : 2.5),
21
+ marginLeft: theme.spacing(margin ? 1 : 2),
22
22
  marginRight: theme.spacing(margin ? 1 : 2.5),
23
23
  width: margin ? 'auto' : `calc(100% - ${theme.spacing(5)})`
24
24
  },
@@ -28,6 +28,7 @@ const StyledRoot = styled('div', {
28
28
  },
29
29
  '& .RaDatagrid-root': {
30
30
  overflowX: 'auto',
31
+ paddingTop: 48,
31
32
  [theme.breakpoints.down('sm')]: {
32
33
  width: 'calc(100vw - 34px)'
33
34
  }
@@ -43,12 +44,17 @@ const StyledRoot = styled('div', {
43
44
  minHeight: 0
44
45
  },
45
46
  '& .RaBulkActionsToolbar-toolbar': {
46
- minHeight: 64,
47
+ minHeight: 48,
48
+ bottom: -56,
47
49
  '& h6': {
48
50
  marginTop: theme.spacing(0.5)
49
51
  },
50
52
  '& .RaBulkActionsToolbar-topToolbar': {
51
53
  marginTop: theme.spacing(1)
54
+ },
55
+ [theme.breakpoints.down('sm')]: {
56
+ bottom: -48,
57
+ borderRadius: 0
52
58
  }
53
59
  }
54
60
  }));
@@ -39,13 +39,13 @@ const ApplicaStyledList = styled(RaList, {
39
39
  padding: theme.spacing(2),
40
40
  paddingTop: 0,
41
41
  '& .RaFilterForm-filterFormInput': {
42
+ marginTop: theme.spacing(1),
42
43
  '& .ra-input': {
43
44
  alignSelf: 'center'
44
45
  },
45
46
  [theme.breakpoints.down('sm')]: {
46
47
  // Quando lo schermo è piccolo, il filtro viene visualizzato in una colonna.
47
48
  // Diamo un margine maggiore in basso per evitare che siano troppo vicini.
48
- marginTop: theme.spacing(1),
49
49
  marginBottom: theme.spacing(1)
50
50
  }
51
51
  },