RE: T5: grid's css in 5.0.10

2008-02-16 Thread Kevin Menard
pecify all three in the selector. I hope that clarifies a little bit more. -- Kevin -Original Message- From: Angelo Chen [mailto:[EMAIL PROTECTED] Sent: Friday, February 15, 2008 8:23 PM To: users@tapestry.apache.org Subject: Re: T5: grid's css in 5.0.10 Hi Davor, This works, so T

Re: T5: grid's css in 5.0.10

2008-02-15 Thread Angelo Chen
Hi Davor, This works, so T5 now appends t-first, t-last to the first and last column of grid, I can't quite understand this notation: id t-first, subject t-last, why id.t-first matches to id t-first? search the site you mentioned but can't find parted related to this yet. thanks. A.C. Davor H

Re: T5: grid's css in 5.0.10

2008-02-15 Thread Howard Lewis Ship
This was simplified. For 5.0.9 you needed: TH.myid-header { } TD.myid-cell { } For 5.0.10 the suffixes are stripped, thus: TH.myid { } TD.myid { } The suffixes were redundant with the element type (TH for a header cell, TD for a data cell). On Fri, Feb 15, 2008 at 12:59 AM, Angelo Chen <[EMAI

Re: T5: grid's css in 5.0.10

2008-02-15 Thread Davor Hrg
no problem you have three classes: id t-first t-last you can target it: .id.t-first.t-last or to target both cases: .id-header, .id.t-first.t-last { width:700px; background:lightgreen} there is a comprehensive resource http://www.w3.org/TR/REC-CSS2/selector.html Davor Hrg On Fri, Feb 15, 200

T5: grid's css in 5.0.10

2008-02-15 Thread Angelo Chen
Hi, in the t5.0.9, the grid's column header's css is, field name plus header, so we have this: Results for this I can have : .id-header { width:700px; background:lightgreen} but now, for the same template we have this: Results and how can I specify a css for "id t-first t-last"? please help,