[ARVADOS-WORKBENCH2] updated: 1.1.4-362-g35df2cd

Git user git at public.curoverse.com
Mon Jul 23 09:28:01 EDT 2018


Summary of changes:
 .../dialog-create/dialog-project-create.tsx        | 69 +++++++++++-----------
 1 file changed, 34 insertions(+), 35 deletions(-)

       via  35df2cdddc36985bdca21547d7c12332ea032b1c (commit)
      from  47e97dc4b88c85dc8599ce65c79baec6ec574ff6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 35df2cdddc36985bdca21547d7c12332ea032b1c
Author: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
Date:   Mon Jul 23 15:27:51 2018 +0200

    css styles on top
    
    Feature #13781
    
    Arvados-DCO-1.1-Signed-off-by: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>

diff --git a/src/views-components/dialog-create/dialog-project-create.tsx b/src/views-components/dialog-create/dialog-project-create.tsx
index 34c655e..8c690c0 100644
--- a/src/views-components/dialog-create/dialog-project-create.tsx
+++ b/src/views-components/dialog-create/dialog-project-create.tsx
@@ -14,6 +14,40 @@ import { Button, StyleRulesCallback, WithStyles, withStyles, CircularProgress }
 
 import { NAME, DESCRIPTION } from '../../validators/create-project/create-project-validator';
 
+type CssRules = "button" | "lastButton" | "formContainer" | "textField" | "dialog" | "dialogTitle" | "createProgress" | "dialogActions";
+
+const styles: StyleRulesCallback<CssRules> = theme => ({
+    button: {
+        marginLeft: theme.spacing.unit
+    },
+    lastButton: {
+        marginLeft: theme.spacing.unit,
+        marginRight: "20px",
+    },
+    formContainer: {
+        display: "flex",
+        flexDirection: "column",
+        marginTop: "20px",
+    },
+    dialogTitle: {
+        paddingBottom: "0"
+    },
+    textField: {
+        marginTop: "32px",
+    },
+    dialog: {
+        minWidth: "600px",
+        minHeight: "320px"
+    },
+    createProgress: {
+        position: "absolute",
+        minWidth: "20px",
+        right: "95px"
+    },
+    dialogActions: {
+        marginBottom: "24px"
+    }
+});
 interface DialogProjectProps {
     open: boolean;
     handleClose: () => void;
@@ -87,41 +121,6 @@ class DialogProjectCreate extends React.Component<DialogProjectProps & WithStyle
     )
 }
 
-type CssRules = "button" | "lastButton" | "formContainer" | "textField" | "dialog" | "dialogTitle" | "createProgress" | "dialogActions";
-
-const styles: StyleRulesCallback<CssRules> = theme => ({
-    button: {
-        marginLeft: theme.spacing.unit
-    },
-    lastButton: {
-        marginLeft: theme.spacing.unit,
-        marginRight: "20px",
-    },
-    formContainer: {
-        display: "flex",
-        flexDirection: "column",
-        marginTop: "20px",
-    },
-    dialogTitle: {
-        paddingBottom: "0"
-    },
-    textField: {
-        marginTop: "32px",
-    },
-    dialog: {
-        minWidth: "600px",
-        minHeight: "320px"
-    },
-    createProgress: {
-        position: "absolute",
-        minWidth: "20px",
-        right: "95px"
-    },
-    dialogActions: {
-        marginBottom: "24px"
-    }
-});
-
 export default compose(
     reduxForm({ form: 'projectCreateDialog' }),
     withStyles(styles)

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list