diff --git a/ietf/templates/doc/search/search_result_row.html b/ietf/templates/doc/search/search_result_row.html
index 4c5d2ea96..a34b0f447 100644
--- a/ietf/templates/doc/search/search_result_row.html
+++ b/ietf/templates/doc/search/search_result_row.html
@@ -1,8 +1,15 @@
{# Copyright The IETF Trust 2015, All Rights Reserved #}{% load origin %}{% origin %}
{% load widget_tweaks %}
{% load ietf_filters %}
+{% load ballot_icon %}
-
+
{% if user.is_authenticated %}
diff --git a/ietf/templates/iesg/agenda_documents.html b/ietf/templates/iesg/agenda_documents.html
index 7d8ad6cd2..c4989feb2 100644
--- a/ietf/templates/iesg/agenda_documents.html
+++ b/ietf/templates/iesg/agenda_documents.html
@@ -60,7 +60,7 @@
|
{% for doc in section.docs %}
- {% include "doc/search/search_result_row.html" %}
+ {% include "doc/search/search_result_row.html" with color_row_positions=True %}
{% endfor %}
diff --git a/static/css/ietf.css b/static/css/ietf.css
index 7b554fb96..92f87aee2 100644
--- a/static/css/ietf.css
+++ b/static/css/ietf.css
@@ -131,6 +131,13 @@ label.required:after { content: "\2217"; color: #a94442; font-weight: bold; }
.position-abstain { background-color: #f69f74; } /* @brand-warning */
.position-recuse { background-color: #808080; }
.position-norecord { background-color: inherit; }
+.position-discuss-row,
+.position-block-row { background-color: #F1CBC8 !important ; } /* lighter variants of above */
+.position-yes-row { background-color: #E1FDD6 !important ; }
+.position-noobj-row { background-color: #F2FCEE !important ; }
+.position-abstain-row { background-color: #FAD0BB !important ; }
+.position-recuse-row { background-color: #D9D9D9 !important ; }
+.position-norecord-row { background-color: inherit; }
.ballot-icon table td { border: 1px solid #ddd; height: 10px; width: 8px; }
.ballot-icon table .my { border: 2px solid #000;}
.ballot-icon table { margin: 0 0 10px 10px; }