--- trunk/lib/Sack/Server.pm 2010/02/01 22:03:02 264 +++ trunk/lib/Sack/Server.pm 2010/02/04 18:15:59 265 @@ -191,11 +191,11 @@ .forked { -// text-decoration: line-through; + color: #888; } .ping { - color: #ff0; + color: #0f0; } .load { @@ -206,10 +206,6 @@ color: #00f; } -.ready { - color: #0f0; -} - .shards { font-family: monospace; // line-height: 0.8em; @@ -270,7 +266,9 @@ my $class = join(' ' , map { $_->[0] } @{ $info->{node}->{$node} } ); - $class .= ' ' . ( $info->{pending}->{$node} || 'ready' ); + if ( my $pending = $info->{pending}->{$node} ) { + $class .= " $pending"; + } print $send qq|$node\n|; }