From 068fab1455d2423df612a22e277e0f03e0115f11 Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Mon, 1 Oct 2018 15:26:42 -0400 Subject: [PATCH 1/3] Add time icon --- static/icons/time.svg | 1 + 1 file changed, 1 insertion(+) create mode 100644 static/icons/time.svg diff --git a/static/icons/time.svg b/static/icons/time.svg new file mode 100644 index 00000000..1d80c8d7 --- /dev/null +++ b/static/icons/time.svg @@ -0,0 +1 @@ + From bb6e90ef82adf4095bae196c7e84f22e7a656947 Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Mon, 1 Oct 2018 15:26:54 -0400 Subject: [PATCH 2/3] Use time icon for activity history --- templates/navigation/global_navigation.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/navigation/global_navigation.html b/templates/navigation/global_navigation.html index 51c81571..b11b5d3e 100644 --- a/templates/navigation/global_navigation.html +++ b/templates/navigation/global_navigation.html @@ -27,7 +27,7 @@ {% endif %} {% if g.Authorization.can_view_audit_log(g.current_user) %} - {{ SidenavItem("Activity History", url_for('atst.activity_history'), icon="document", active=g.matchesPath('/activity-history')) }} + {{ SidenavItem("Activity History", url_for('atst.activity_history'), icon="time", active=g.matchesPath('/activity-history')) }} {% endif %} From a0c1795e4e0b30f569b9b3e0a018a59a585953d6 Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Mon, 1 Oct 2018 15:27:07 -0400 Subject: [PATCH 3/3] Add missing icons to styleguide --- templates/styleguide.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/styleguide.html b/templates/styleguide.html index bf05f22b..8c5a0591 100644 --- a/templates/styleguide.html +++ b/templates/styleguide.html @@ -315,6 +315,8 @@ {{ Icon('checkmark') }} 'checkmark'    {{ Icon('arrow-right') }} 'arrow-right'    {{ Icon('arrow-down') }} 'arrow-down'    + {{ Icon('logout') }} 'logout'    + {{ Icon('time') }} 'time'