Re: Applying CSS to Grid

2011-07-28 Thread Sébastien Tromp
Changing the "headerRow" to ".headerRow", "tr.headerRow" or ".tr.headerRow" doesn't change anything - it is still ignored. When I inspect the element using the development tools of Chrome, I see Skill rangeRankNickname So the "headerRow" class at least is properly set, only the style application

Re: Applying CSS to Grid

2011-07-27 Thread Andrei
Try .leaderboard td:first-child { font-size: xx-large; font-weight: bold; } This should do the trick - you don't need to set a "headerRow" style to the first row. On Jul 27, 12:44 pm, Sébastien Tromp wrote: > Hello, > > I am currently struggling to apply the proper CSS styles to my Grid > co

Re: Applying CSS to Grid

2011-07-27 Thread Ben Imp
You appear to be missing a period in your CSS, in front of "headerRow". -Ben -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/2eNxTmFTIRMJ. To p

Applying CSS to Grid

2011-07-27 Thread Sébastien Tromp
Hello, I am currently struggling to apply the proper CSS styles to my Grid component. What I have is: ... And the styles are .leaderboard td { padding: 3px 15px; text-align: center; font-size: medium; } .leaderboard headerRow { font-size: xx-large; font-weight: bold; } When