diff --git a/src/sentry/templates/sentry/emails/reports/body.html b/src/sentry/templates/sentry/emails/reports/body.html
index 273a0d8c59a0e7..8517c12904dcc7 100644
--- a/src/sentry/templates/sentry/emails/reports/body.html
+++ b/src/sentry/templates/sentry/emails/reports/body.html
@@ -38,6 +38,15 @@
color: #fff;
}
+ .graph .bar {
+ margin-bottom: 0;
+ }
+
+ .graph .bar td,
+ .graph .bar th {
+ line-height: 0;
+ }
+
.issue-graph {
table-layout: fixed;
}
@@ -54,13 +63,13 @@
color: #848296;
}
- .legend .all,
- .issue-graph-bar .all {
+ #events-seen .legend .all,
+ #events-seen .bar .all {
background-color: #ebe9f7;
}
- .legend .resolved,
- .issue-graph-bar .resolved {
+ #events-seen .legend .resolved,
+ #events-seen .bar .resolved {
background-color: #6C5FC7;
}
@@ -93,20 +102,19 @@
vertical-align: middle;
}
- .issue-graph, .issue-graph-bar {
+ .issue-graph, .issue-graph .bar {
margin-bottom: 0;
}
- .issue-graph-bar td {
+ .issue-graph .bar td {
font-size: 0;
}
.project-breakdown {
- margin-bottom: 40px;
+ margin-bottom: 20px;
}
.project-breakdown .graph {
- margin-bottom: 10px;
table-layout: fixed;
}
@@ -228,6 +236,10 @@
padding-right: 20px;
}
+ #history-calendars h4 {
+ margin-bottom: 0px;
+ }
+
@@ -363,7 +367,7 @@
Events Seen {{ duration.noun|title }}
{% with report.series.maximum as max %}
{% for timestamp, metrics in report.series.points %}
-
+
{% if metrics.resolved or metrics.unresolved %}
| |
@@ -459,7 +463,7 @@ Events by Project
{% for timestamp, values in series.points %}
-
+
{% for key, count in values %}
| |
@@ -467,17 +471,19 @@ Events by Project
{% empty %}
|
-
- {% endfor %}
-
- |
- {{ timestamp|date:duration.date_format }}
|
-
+ {% endfor %}
{% endfor %}
+
+ {% for timestamp, values in series.points %}
+ |
+ {{ timestamp|date:duration.date_format }}
+ |
+ {% endfor %}
+
@@ -519,7 +525,7 @@ Events by Project
3 Month History
|
-
+ |
Less Events
{% for color in report.calendar.legend %} {% endfor %}
More Events
| | |