diff options
author | Julius Härtl <jus@bitgrid.net> | 2019-08-19 17:13:33 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-09-10 09:01:23 +0200 |
commit | 9f8ccf1036ff18d961949bfb644c9d445caa8a23 (patch) | |
tree | 5f8e4654ddbdce95cf66f0ed6ef602d312fbe5ba /apps/workflowengine/src/components/Rule.vue | |
parent | aed630ac0a63771c7a217a3c1d400a354929fafe (diff) | |
download | nextcloud-server-9f8ccf1036ff18d961949bfb644c9d445caa8a23.tar.gz nextcloud-server-9f8ccf1036ff18d961949bfb644c9d445caa8a23.zip |
Use entity/event definitions from backend
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/workflowengine/src/components/Rule.vue')
-rw-r--r-- | apps/workflowengine/src/components/Rule.vue | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/workflowengine/src/components/Rule.vue b/apps/workflowengine/src/components/Rule.vue index 818e15610fa..43cbbced209 100644 --- a/apps/workflowengine/src/components/Rule.vue +++ b/apps/workflowengine/src/components/Rule.vue @@ -163,10 +163,12 @@ .rule { display: flex; + flex-wrap: wrap; + .trigger, .action { flex-grow: 1; min-height: 100px; - width: 50%; + flex-basis: 50%; } .action { position: relative; @@ -177,6 +179,8 @@ } .icon-confirm { background-position: right center; + padding-right: 20px; + margin-right: 20px; } } .trigger p, .action p { @@ -206,4 +210,4 @@ text-align: left; font-size: 1em; } -</style>
\ No newline at end of file +</style> |