Hello

Links to closed tickets are not printed strike-through in the timeline time line view.

Well, it is just a small cosmetic issue. But now I cannot tell our users that closed tickets are always strike-through.

Is there any reason for why the timeline is an exception?
Otherwise I would open a ticket.

Clemens

P.S.

Some internals ...

TRAC 1.2.5

The background seems to be HTML/CSS. Usually the ticket number itself is an HTML <a> link tag and it does have "ticket closed" CSS class:

<a class="closed ticket"
href="/demo-1.2/ticket/1" title="#1: task: test (closed: fixed)">#1
</a>

But not in the timeline where the entire line is a <a> tag and the ticket number is just an <em>:

<a href="/demo-1.2/ticket/772#comment:1">
<span class="time">22:23</span>
Ticket
<em title="enhancement: bla (closed: fixed)">
#772
</em>
(bla)
</span> </a>

it should better be:

<a href="/demo-1.2/ticket/772#comment:1">
<span class="time">22:23</span>
Ticket
<em title="enhancement: bla (closed: fixed)">
<span class="ticket closed">#772</span> <<<<<< FIX !!!
</em>
(bla)
</span> </a>

--
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/trac-users/a8e2c853-7594-7877-4b88-f657d8c8a16a%40osypkamed.com.

Reply via email to