OK, I got it
It was exactly the problem
thank you very much
Murillo Azambuja Gonçalves
____________________________________________________
UNICAMP - IFGW - CCJDR - Equipe Sistemas e Informação
Tel +55 (19) 3521-2132
__________________________________________________
http://www.ifi.unicamp.br
On 04/29/2015 05:41 PM, Alex Vandiver wrote:
On Wed, 29 Apr 2015 17:41:34 -0300 Murillo Azambuja Gonçalves
<[email protected]> wrote:
Hello,
Please do not cross-post your question to both rt-users and rt-devel.
rt-users is the appropriate venue for this question.
[snip]
But the template accuses an error when I use CSS:
This is because templates use { and } to delimit code that should be
run as perl. As such, you'll need to escape your brace characters;
either use:
a \{
text-decoration: none;
color: inherit;
\}
...or:
a {q{{
text-decoration: none;
color: inherit;
}}}
- Alex