Style implementation for Round Cornered Tabbed Panels

2008-06-24 Thread Francisco Diaz Trepat - gmail
Hi all, I need to make each tab on an AjaxTabbedPanel have round corners. No big deal so far: *div.tabpanel div.tab-row li* { background:url("my-round-corner-tab-background.png") no-repeat left top; } But what if I want to have a "resizable" round cornered tab. Therefore if i have a tab titl

Re: Style implementation for Round Cornered Tabbed Panels

2008-06-24 Thread Brill Pappin
I've seen this done pretty much how you describe (in fact I think there is a demo inthe wicket examples) That use two images (left and right). the left one is narrow, just enough to contain the rounded corners, the right side however is extra long; long enough to fit pretty much any text yo

Re: Style implementation for Round Cornered Tabbed Panels

2008-06-24 Thread Matthew Young
The wicket tab panel example does exactly this http://www.wicket-library.com/wicket-examples/ajax/tabbed-panel.1 It uses the sliding door technique describe here: http://www.alistapart.com/articles/slidingdoors/ On Tue, Jun 24, 2008 at 5:02 PM, Brill Pappin <[EMAIL PROTECTED]> wrote: > I've se

Re: Style implementation for Round Cornered Tabbed Panels

2008-06-25 Thread Francisco Diaz Trepat - gmail
Thanks guys, I follow the leads and got it done. Great link about the sliding doors, thanks, f(t) On Tue, Jun 24, 2008 at 10:20 PM, Matthew Young <[EMAIL PROTECTED]> wrote: > The wicket tab panel example does exactly this > > http://www.wicket-library.com/wicket-examples/ajax/tabbed-panel.1 >