Skip to content

Commit 611ae9c

Browse files
committed
Restore some used styles
1 parent 7837826 commit 611ae9c

4 files changed

Lines changed: 37 additions & 0 deletions

File tree

moped-editor/src/views/projects/projectView/ProjectFunding/ProjectFundingTable.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,22 @@ import { getLookupValueByID } from "src/components/DataGridPro/utils/helpers";
3737
import DataGridActions from "src/components/DataGridPro/DataGridActions";
3838

3939
const useStyles = makeStyles((theme) => ({
40+
fieldGridItem: {
41+
margin: theme.spacing(2),
42+
},
43+
editIconConfirm: {
44+
cursor: "pointer",
45+
margin: ".25rem 0",
46+
fontSize: "24px",
47+
},
48+
fieldLabel: {
49+
width: "100%",
50+
color: theme.palette.text.secondary,
51+
fontSize: ".8rem",
52+
},
53+
fieldBox: {
54+
maxWidth: "10rem",
55+
},
4056
fundingButton: {
4157
position: "absolute",
4258
top: "1rem",

moped-editor/src/views/projects/projectView/ProjectNotes/NoteInput.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,18 @@ const useStyles = makeStyles((theme) => ({
4646
editorWrapper: {
4747
position: "relative",
4848
},
49+
showButtonItem: {
50+
margin: theme.spacing(2),
51+
},
52+
toolbarButtons: {
53+
backgroundColor: theme.palette.primary.main,
54+
"&:hover, &.Mui-focusVisible": {
55+
backgroundColor: theme.palette.primary.main,
56+
},
57+
},
58+
startIcon: {
59+
margin: 0,
60+
},
4961
}));
5062

5163
// Catch any errors that occur during Lexical updates and log them

moped-editor/src/views/projects/projectView/ProjectSummary/ProjectSummary.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ import {
3030
} from "../../../../queries/project";
3131

3232
const useStyles = makeStyles((theme) => ({
33+
fieldGridItem: {
34+
marginBottom: theme.spacing(3),
35+
},
3336
editIconConfirm: {
3437
cursor: "pointer",
3538
margin: ".25rem 0",

moped-editor/src/views/staff/components/StaffFormButtons.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ export const useButtonStyles = makeStyles((theme) => ({
99
margin: theme.spacing(1),
1010
color: "white",
1111
},
12+
formButtonGreen: {
13+
backgroundColor: theme.palette.success.main,
14+
"&:hover": {
15+
backgroundColor: theme.palette.success.dark,
16+
},
17+
},
1218
}));
1319

1420
export const StaffFormSaveButton = ({ disabled }) => {

0 commit comments

Comments
 (0)