A new comment gets the word "new" after its title. Since it is within a SPAN, it's not affected by the styling in appearance.css (line 310) :
.new {border-color: #C00;}
(span's don't have borders).

The text color should be used to highlight the "new" tag:
.new{color: #C00;}

CommentFileSizeAuthor
#3 appearance.css_.patch675 bytesaimutch
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

aimutch’s picture

Version: 5.x-4.x-dev » 6.x-2.x-dev
Assigned: Unassigned » aimutch

This affects both versions. The code suggested by the user works although it should be written:


.new {
  color: #C00;
}

aimutch’s picture

Category: feature » bug
aimutch’s picture

FileSize
675 bytes

Patch attached for appearances.css to fix display of new text.

Jacine’s picture

Thanks guys! This will be in the next commit.

Jacine’s picture

Status: Active » Reviewed & tested by the community
Jacine’s picture

Status: Reviewed & tested by the community » Closed (fixed)

Ooops, forgot this. Coming in 6.x-3.3, just waiting for a TinyMCE issue to commit.