Re: T5 css problem

2008-08-04 Thread Argo Vilberg
Sorry, This working I myself made little bug And thanks! Argo

Re: T5 css problem

2008-08-04 Thread Argo Vilberg
No success. Argo 2008/8/4 Angelo Chen <[EMAIL PROTECTED]> > > how about do it this way: > > type="text/css"/> > > this presumes you have a css directory. > > > Argo Vilberg wrote: > > > > hi > > > > > > In Start page i use my own css file without @asset tapestry command. > > > > If i go direc

Re: T5 css problem

2008-08-04 Thread Angelo Chen
how about do it this way: this presumes you have a css directory. Argo Vilberg wrote: > > hi > > > In Start page i use my own css file without @asset tapestry command. > > If i go directly to start page then css is working. > > > But if i go to start page from another page(becouse of l

Re: [T5] CSS

2008-07-14 Thread Andreas Andreou
on+Windows > > Which may be a more correct solution ... > > >> -Original Message- >> From: kace [mailto:[EMAIL PROTECTED] >> Sent: 12 July 2008 22:00 >> To: users@tapestry.apache.org >> Subject: Re: [T5] CSS >> >> >>

RE: [T5] CSS

2008-07-14 Thread Joe Trewin
this reply I've just found the following: http://docs.codehaus.org/display/JETTY/Files+locked+on+Windows Which may be a more correct solution ... > -Original Message- > From: kace [mailto:[EMAIL PROTECTED] > Sent: 12 July 2008 22:00 > To: users@tapestry.apache.org > Sub

Re: [T5] CSS

2008-07-12 Thread kace
the jetty setup is nothing fancy : org.mortbay.jetty maven-jetty-plugin 6.1.9 / src/main/resources/webdefault.xml

Re: [T5] CSS

2008-07-12 Thread Fernando Padilla
We keep all files under the /java/ directory.. *.java, *.tml, *.css, *.js etc, etc. Just posing that as an option, because I'm not sure how you have your jetty setup.. the resources directory usually has to be copied over to the final location for things to work properly... but maybe it's runn

Re: [T5] CSS

2008-07-12 Thread kace
no I haven't, I moved everthing out of /resources and now have the following layout: /java/../components/ Layout.tml Layout.java /java/../pages/ Index.java /webapp/styles/ main.css /webapp/ Index.tml find the contents of Index.tml below..

Re: [T5] CSS

2008-07-12 Thread Fernando Padilla
did you try putting the css within the src/main/java/. directory? kace wrote: Hi, how can I get the jetty server to pick up the css changes I make I've added this src/main/resources/webdefault.xml to the jetty plugin in the pom. Right now I need to run mvn clean then restart jetty:run for

Re: [T5] CSS

2008-07-12 Thread kace
Hi, how can I get the jetty server to pick up the css changes I make I've added this src/main/resources/webdefault.xml to the jetty plugin in the pom. Right now I need to run mvn clean then restart jetty:run for it to pick up the changes. The css file is located in /resources/org/example/myapp

Re: [T5]: CSS question? But having to do with default.css (Tapestry CSS)

2008-04-05 Thread Andy Huhn
I think I solved my own question. For the sake of anyone else facing this same issue, I added this to my stylesheet: DIV.t-beandisplay DIV.t-beandisplay-value { display: block; float: left; clear: right; } Thanks, Andy On Sat, 2008-04-05 at 22:27 -0400, Andy Huhn wrote: > All, > >

RE: T5: CSS Injection and IE Conditional Comments

2008-02-17 Thread Kevin Menard
I may reconsider it. -- Kevin -Original Message- From: Howard Lewis Ship [mailto:[EMAIL PROTECTED] Sent: Sunday, February 17, 2008 2:34 PM To: Tapestry users Subject: Re: T5: CSS Injection and IE Conditional Comments I think these comments are right on the money. Perhaps it would be easi

Re: T5: CSS Injection and IE Conditional Comments

2008-02-17 Thread Howard Lewis Ship
I think these comments are right on the money. Perhaps it would be easier if expansions were allowed inside comments? That's entirely doable. On Feb 15, 2008 11:55 AM, Robert Zeigler <[EMAIL PROTECTED]> wrote: > Expansions won't work (directly) for the asset, b/c expansions inside > of comments

Re: T5: CSS Injection and IE Conditional Comments

2008-02-15 Thread Kevin Menard
Ahh, good to know. It's nothing I've ever tried, but I just assumed would work. In that case, I'd go with Robert's suggestions (since they'll actually work). -- Kevin On 2/15/08 2:55 PM, "Robert Zeigler" <[EMAIL PROTECTED]> wrote: > Expansions won't work (directly) for the asset, b/c expansi

Re: T5: CSS Injection and IE Conditional Comments

2008-02-15 Thread Robert Zeigler
Expansions won't work (directly) for the asset, b/c expansions inside of comments are ignored, so trying to do something like: Isn't going to work. What you /could/ do is to have the entire comment generated in java code, and then have all of the comment spit out as an expanded string in

Re: T5: CSS Injection and IE Conditional Comments

2008-02-15 Thread Kevin Menard
You could just use an expansion in your template for the asset. Not quite the same, but it would accomplish the same goal. -- Kevin On 2/15/08 12:28 PM, "lebenski" <[EMAIL PROTECTED]> wrote: > > Hi guys, > > Does anyone know of a mechanism of utilizing IE Conditional Comments for > importin

Re: T5 CSS positioning of errors.

2007-08-02 Thread Evan Rawson - Work
yeah i noticed that as well. i used this css to fix the problem /* Validation Decoration Overide */ div.t-error{ margin:6px 0 0 0; padding:0px; background-color:#FF;} div.t-error ul{ margin:0px; padding:1px 0 2px 20px;} div.t-error li{ margin:0px; padding:1px 0 1px 0;} this turns off the

Re: T5 CSS

2007-05-09 Thread Marcus
Just another way, Layout.html: with mystyles.css under src/main/webapp/assets/css/ ;) Marcus

Re: T5 CSS

2007-03-29 Thread Adrian Bele
Thank you guys, Having default.css configurable will be nice, but I think, as you say Howard, it's a low priority. (better have hibernate archetype done first :-). One remark which I figure out : common place for .css files can be set in following way: -webapp -- ASSETS ---

Re: T5 CSS

2007-03-29 Thread Howard Lewis Ship
Yes, that's the intention; Tapestry puts the default.css first, with the expectation that any additional CSS links or

Re: T5 CSS

2007-03-29 Thread Bill Holloway
I'm not sure about shutting off the default.css, but the "C" in "CSS" means cascading, which means you can override the styles set in default.css. For a particular page, put your CSS files in src/main/resources/org/example/myapp/pages/mystyles.css, where org/example/myapp is your project package