File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,6 +37,22 @@ import { getLookupValueByID } from "src/components/DataGridPro/utils/helpers";
3737import DataGridActions from "src/components/DataGridPro/DataGridActions" ;
3838
3939const 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" ,
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -30,6 +30,9 @@ import {
3030} from "../../../../queries/project" ;
3131
3232const useStyles = makeStyles ( ( theme ) => ( {
33+ fieldGridItem : {
34+ marginBottom : theme . spacing ( 3 ) ,
35+ } ,
3336 editIconConfirm : {
3437 cursor : "pointer" ,
3538 margin : ".25rem 0" ,
Original file line number Diff line number Diff 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
1420export const StaffFormSaveButton = ( { disabled } ) => {
You can’t perform that action at this time.
0 commit comments