Revert "Allow expired events in the grid and style with phonecian purple"

This reverts commit a103a62faf. Users
complained that persistent expired events was not the right choice for
them.

Conflicts:
	lib/riemann/dash/public/views/grid.js
This commit is contained in:
Kyle Kingsbury 2013-11-25 16:35:19 -08:00
parent a8971944ac
commit 67335d6871
2 changed files with 5 additions and 5 deletions

View file

@ -385,7 +385,11 @@
// Accept an event.
Grid.prototype.update = function(e) {
this.add(e);
if (e.state === "expired") {
this.remove(e);
} else {
this.add(e);
}
};
Grid.prototype.reflow = function() {

View file

@ -176,10 +176,6 @@ html,table {
background: $orange;
color: #000;
}
.state.expired {
background: $purple;
color: #000;
}
.view .query {
display: block;