aboutsummaryrefslogtreecommitdiffstats
path: root/apps/workflowengine/src/components/Operation.vue
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-09-02 12:11:19 +0200
committerJulius Härtl <jus@bitgrid.net>2019-09-10 09:01:25 +0200
commit2364fc84d78df931c5fc020f7fd052d980f8a7bb (patch)
treeedc1a13a073a70e76041d4beef8b47094e2b572d /apps/workflowengine/src/components/Operation.vue
parent11d6486b1dc0282585a1474d35c8fd8897c83d83 (diff)
downloadnextcloud-server-2364fc84d78df931c5fc020f7fd052d980f8a7bb.tar.gz
nextcloud-server-2364fc84d78df931c5fc020f7fd052d980f8a7bb.zip
Make rule listing more compact
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/workflowengine/src/components/Operation.vue')
-rw-r--r--apps/workflowengine/src/components/Operation.vue20
1 files changed, 18 insertions, 2 deletions
diff --git a/apps/workflowengine/src/components/Operation.vue b/apps/workflowengine/src/components/Operation.vue
index 346b28e6b9d..45b0f24223d 100644
--- a/apps/workflowengine/src/components/Operation.vue
+++ b/apps/workflowengine/src/components/Operation.vue
@@ -1,8 +1,10 @@
<template>
<div class="actions__item" :class="{'colored': colored}" :style="{ backgroundColor: colored ? operation.color : 'transparent' }">
<div class="icon" :class="operation.iconClass" :style="{ backgroundImage: operation.iconClass ? '' : `url(${operation.icon})` }" />
+ <div class="actions__item__description">
<h3>{{ operation.name }}</h3>
<small>{{ operation.description }}</small>
+ </div>
<slot />
</div>
</template>
@@ -32,7 +34,7 @@ export default {
padding: 10px;
border-radius: var(--border-radius-large);
margin-right: 20px;
- margin-bottom: 20px;
+ margin-bottom: 5px;
}
.icon {
display: block;
@@ -44,9 +46,11 @@ export default {
margin-bottom: 20px;
background-repeat: no-repeat;
}
+ .actions__item__description {
+ text-align: center;
+ }
h3, small {
padding: 6px;
- text-align: center;
display: block;
}
h3 {
@@ -66,7 +70,19 @@ export default {
}
.actions__item:not(.colored) {
+ flex-direction: row;
+
+ .actions__item__description {
+ padding-top: 5px;
+ text-align: left;
+ small {
+ padding: 0;
+ }
+ }
.icon {
+ width: 50px;
+ margin: 0;
+ margin-right: 10px;
filter: invert(1);
}
}