diff options
author | Julius Härtl <jus@bitgrid.net> | 2019-12-23 12:35:45 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-12-27 08:45:39 +0100 |
commit | 5f3e3aee98ac952ac7378d2fcde65c57a5641143 (patch) | |
tree | 25a5ee17a80865cee55435dcfe90f3260d911452 /apps | |
parent | 8ec66d1e954d84900f3f1bdd5cd958aef5abd3eb (diff) | |
download | nextcloud-server-5f3e3aee98ac952ac7378d2fcde65c57a5641143.tar.gz nextcloud-server-5f3e3aee98ac952ac7378d2fcde65c57a5641143.zip |
Fix spacing between text and icon
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/workflowengine/src/components/Rule.vue | 6 | ||||
-rw-r--r-- | apps/workflowengine/src/store.js | 2 | ||||
-rw-r--r-- | apps/workflowengine/src/styles/operation.scss | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/apps/workflowengine/src/components/Rule.vue b/apps/workflowengine/src/components/Rule.vue index 5285005f53b..51eb0665eeb 100644 --- a/apps/workflowengine/src/components/Rule.vue +++ b/apps/workflowengine/src/components/Rule.vue @@ -30,7 +30,7 @@ @input="updateOperation" /> </Operation> <div class="buttons"> - <button class="status-button icon" + <button class="status-button icon" :class="ruleStatus.class" @click="saveRule"> {{ ruleStatus.title }} @@ -42,7 +42,9 @@ {{ t('workflowengine', 'Delete') }} </button> </div> - <p v-if="error" class="error-message">{{ error }}</p> + <p v-if="error" class="error-message"> + {{ error }} + </p> </div> </div> </template> diff --git a/apps/workflowengine/src/store.js b/apps/workflowengine/src/store.js index a8be467193d..7cb1956b6ff 100644 --- a/apps/workflowengine/src/store.js +++ b/apps/workflowengine/src/store.js @@ -99,7 +99,7 @@ const store = new Vuex.Store({ events, name: '', // unused in the new ui, there for legacy reasons checks: [ - { class: null, operator: null, value: '' } + { class: null, operator: null, value: '' }, ], operation: rule.operation || '', }) diff --git a/apps/workflowengine/src/styles/operation.scss b/apps/workflowengine/src/styles/operation.scss index c3ca64465e0..89c105d58fe 100644 --- a/apps/workflowengine/src/styles/operation.scss +++ b/apps/workflowengine/src/styles/operation.scss @@ -16,7 +16,7 @@ background-size: 50px 50px; background-position: center center; margin-top: 10px; - margin-bottom: 20px; + margin-bottom: 10px; background-repeat: no-repeat; } .actions__item__description { |