Allow expired events in the grid and style with phonecian purple

This commit is contained in:
Dave Cottlehuber 2013-05-06 13:37:14 +02:00
parent 872e06a5c6
commit a103a62faf
2 changed files with 5 additions and 5 deletions

View file

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

View file

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