From 4e3af02c45151e0390fdaf93f2249255621cd827 Mon Sep 17 00:00:00 2001 From: David Moreau-Simard Date: Tue, 2 May 2017 20:02:23 -0400 Subject: [PATCH] Move the tooltip for the playbook status so it's centered properly Otherwise it was centered on the left side of the div. This is prettier. Change-Id: I21e39637b2336f16410fe1649c703df2652831dd --- ara/templates/macros.html | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/ara/templates/macros.html b/ara/templates/macros.html index 7c60a6ab..7b83d6f6 100644 --- a/ara/templates/macros.html +++ b/ara/templates/macros.html @@ -1,21 +1,13 @@
{% macro render_status(status) -%} {% if status == 'success' -%} -
- -
+ {% elif status == 'failed' -%} -
- -
+ {% elif status == 'incomplete' -%} -
- -
+ {% else -%} -
- -
+ {% endif -%} {% endmacro -%}