Re: standard.css attribute override my css attribute!!

2012-04-26 Thread Joseph Lust
Either: 1. Remove the offending selector from *standard.css*. 2. OR set your CSS property to *font-size: 20px !important;* to force it to override the other property. Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups "Google Web To

standard.css attribute override my css attribute!!

2012-04-25 Thread tong123123
my project name is ALS and I have a ALS.css file, with some content like body{ > font-size:20px; > } > > table td{ >font-size:20px; > } > but I found it has no effect on my gwt application, it is override by standard.css, how to resolve this problem? Also, when I

Re: Where does standard.css get genrated?

2011-12-19 Thread benneq
Here's a screenshot: http://oi44.tinypic.com/qxt0nq.jpg On 19 Dez., 15:44, benneq wrote: > Thanks Master Broyer :) > I'll see though our 15 modules... And will report if it works > > On 19 Dez., 10:49, Thomas Broyer wrote: > > > > > > > > > You must be inheriting from another module that (erroneo

Re: Where does standard.css get genrated?

2011-12-19 Thread benneq
It was ColorPicker ver 2.1: http://code.google.com/p/auroris/Luckily I wrote our own Colorpicker with GWT and Canvas, it's damn awesome (I'll host it on Google Code soon) On 19 Dez., 15:44, benneq wrote: > Thanks Master Broyer :) > I'll see though our 15 modules... And will report if it works > >

Re: Where does standard.css get genrated?

2011-12-19 Thread benneq
Thanks Master Broyer :) I'll see though our 15 modules... And will report if it works On 19 Dez., 10:49, Thomas Broyer wrote: > You must be inheriting from another module that (erroneously) inherits the > standards theme (either Standard or StandardResources) -- You received this message becaus

Re: Where does standard.css get genrated?

2011-12-19 Thread Thomas Broyer
You must be inheriting from another module that (erroneously) inherits the standards theme (either Standard or StandardResources) -- 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.goo

Re: Where does standard.css get genrated?

2011-12-18 Thread -sowdri-
First of all standard.css is not generated. It is part of the module * 'com.google.gwt.user.**theme.standard.Standard'*. So to get rid of it, just comment the following line in your module definition. Remember doing so will break native GWT widgets like calender for example. So mak

Re: Where does standard.css get genrated?

2011-12-18 Thread Deepak Singh
I also want to disable this file but dont know how to do it. Can someone pls suggest the way out. On Sun, Dec 18, 2011 at 10:32 PM, benneq wrote: > Hi, > > we have a pretty big GWT project and we want to delete the > standard.css. So I deleted the whole war/project/gwt/standard fo

Where does standard.css get genrated?

2011-12-18 Thread benneq
Hi, we have a pretty big GWT project and we want to delete the standard.css. So I deleted the whole war/project/gwt/standard folder and I read somewhere that we just need to disable any theme in the project's gwt.xml: So here it is: But after compiling the app the file is again in th

Re: Overriding font-family in standard.css and/or Modifying standard.css?

2011-04-06 Thread Terrameks
Thanks for response. I'm using CssResource, yes...no reference to the CSS file in the HTML file. I don't think it is to do with the loadtime in this particular instance... Are you able to use a GWT theme and override styles? I don't think I'm the only one with this problem; I think it's "the way

Re: Overriding font-family in standard.css and/or Modifying standard.css?

2011-04-05 Thread Jeff Larsen
It probably has to do with the loadtime of your stylesheets. How are you loading your custom style sheets? in the .html file or are you loading them via CssResource? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group,

Overriding font-family in standard.css and/or Modifying standard.css?

2011-04-05 Thread Terrameks
Hi, So, today I noticed it's impossible to override anything that is set in standard.css (or any of the themes' CSS). For example, I set font- family in a body selector (body {font-family: whatever}) in my application's CSS. But if I use a, for example, FlexTable, the font that

Re: standard.css

2011-02-24 Thread Juan Pablo Gardella
Yes of course in this example. You must configure the servlet for combine this files four your case: 1) statndard.css (Generate by GWT compilation) 2) style.css (your application specific) Juan 2011/2/24 Deepak Singh > Yes i got it working. > But i think this method takes more time to load on

Re: standard.css

2011-02-24 Thread Deepak Singh
Yes i got it working. But i think this method takes more time to load on the client than copy paste the 3 css into one and download that one. Am i right ? On Thu, Feb 24, 2011 at 5:21 PM, Juan Pablo Gardella < gardellajuanpa...@gmail.com> wrote: > For example you have 3 .css files: > > /styles/ >

Re: standard.css

2011-02-24 Thread Juan Pablo Gardella
For example you have 3 .css files: /styles/ +style1.css +style2.css +style3.css And you will have in your .html like this: Then you need 3 request for download the styles file. With this servlet you can reduce to 1 request for download "the union" of the three files if you put: This URL

Re: standard.css

2011-02-23 Thread Deepak Singh
what is this cssServlet.css ? On Thu, Feb 24, 2011 at 1:22 AM, Juan Pablo Gardella < gardellajuanpa...@gmail.com> wrote: > In your html: > > /styles/cssServlet.css > > In web.xml: > > > cssServlet > /styles/cssServlet.css > > > Juan > > 2011/2/23 Deepak Singh > >> Hi Jaun, >> >> How to use th

Re: standard.css

2011-02-23 Thread Juan Pablo Gardella
In your html: /styles/cssServlet.css In web.xml: cssServlet /styles/cssServlet.css Juan 2011/2/23 Deepak Singh > Hi Jaun, > > How to use this CssServlet class ? > > On Wed, Feb 23, 2011 at 9:14 PM, Juan Pablo Gardella < > gardellajuanpa...@gmail.com> wrote: > >> Hi, >> >> Try that (thanks

Re: standard.css

2011-02-23 Thread Deepak Singh
Hi Jaun, How to use this CssServlet class ? On Wed, Feb 23, 2011 at 9:14 PM, Juan Pablo Gardella < gardellajuanpa...@gmail.com> wrote: > Hi, > > Try that (thanks Gabriel Nossier): > > public class CssServlet extends HttpServlet { > private static final long serialVersionUID = 2545846261709821197

Re: standard.css

2011-02-23 Thread Juan Pablo Gardella
Hi, Try that (thanks Gabriel Nossier): public class CssServlet extends HttpServlet { private static final long serialVersionUID = 2545846261709821197L; private static final String path1 = "./"; private static final String path2 = "webapps/styles/"; /* * (non-Javadoc) * * @see * javax.servle

Re: standard.css

2011-02-23 Thread Jeff Larsen
file ? If you're getting to this level of hyper optimization, you probably just want to copy/paste the styles that you're actually using from standard.css and put them into your style.css and not import the standard theme. Also look at taking style.css and making it a CssResource, t

standard.css

2011-02-23 Thread Deepak Singh
Hi, After compiling our gwt project we get one statndard.css file which loads to the client consuming 1 http request. We also have our application specific style.css file which loads consuming 1 seperate http request. To reduce the number of http requests, how should i combine them into 1 css fil

Re: How could I overwrite padding margin properties in standard.css style?

2010-12-09 Thread vkrejcirik
cirik wrote: > It doesn't work. I think, that first is set standard.css style then my > style. But thanks for reply. > > On 9 pro, 10:28, haimke wrote: > > > > > > > > > try to use css keyword:  !important > > > example: > > #main { > >

Re: How could I overwrite padding margin properties in standard.css style?

2010-12-09 Thread vkrejcirik
It doesn't work. I think, that first is set standard.css style then my style. But thanks for reply. On 9 pro, 10:28, haimke wrote: > try to use css keyword:  !important > > example: > #main { >    width:600px !important; >    width:800px; > > } > > On

Re: How could I overwrite padding margin properties in standard.css style?

2010-12-09 Thread haimke
StyleDependentName("activeJob"); > > But properties margin and padding are set in .gwt-Button in > Standard.css file. So button ignores my definitions of padding and > margin. Is there any solution how could I overwrite these properties? > > Thanks. -- You received this mess

Re: How could I overwrite padding margin properties in standard.css style?

2010-12-09 Thread vkrejcirik
I could copy .gwt-Button definition from standard.css into my css file, but I think there must be another more elegant way. On 9 pro, 09:30, vkrejcirik wrote: > Yes, I tried this solution yet. When I set primaryName, it overwrite > all properties. I would like to leave all properties

Re: How could I overwrite padding margin properties in standard.css style?

2010-12-09 Thread vkrejcirik
Job"); > > this will override all properties of the standard.css with you own styles. > > best dom > > 2010/12/9 vkrejcirik : > > > > > > > > > I use Standard GWT style, so my buttons have .gwt-Buttons style. I > > create my css file, where I a

Re: How could I overwrite padding margin properties in standard.css style?

2010-12-09 Thread dominic jansen
hey, you can try it this way: cancelButton.setStylePrimaryName("activeJob"); this will override all properties of the standard.css with you own styles. best dom 2010/12/9 vkrejcirik : > I use Standard GWT style, so my buttons have .gwt-Buttons style. I > create my css file,

How could I overwrite padding margin properties in standard.css style?

2010-12-09 Thread vkrejcirik
-left: 1em; padding-right: 1em; } In java code: cancelButton.addStyleDependentName("activeJob"); But properties margin and padding are set in .gwt-Button in Standard.css file. So button ignores my definitions of padding and margin. Is there any solution how could I overwrite these

Re: Internet Explorer load standard.css after my CssResource

2010-07-22 Thread PhilBeaudoin
my dialog box, but I also want > > to rely on CssResource and spriting. The way I do this is to define > > @external styles in my CssResource .css file. For example: > > > @external .gwt-DialogBox, .Caption; > > @sprite .gwt-DialogBox .Caption { > >  gwt-image:

Re: Internet Explorer load standard.css after my CssResource

2010-07-21 Thread Christian Goudreau
It works well under Chrome and FF but fails in IE. When looking at the > DOM it's clear that GWT's standard.css is loaded after the styles > defined in my CssResource and therefore overrides them. I believe it > might be related to: > http://code.google.com/p/google-web-toolkit/i

Internet Explorer load standard.css after my CssResource

2010-07-21 Thread PhilBeaudoin
ption'; padding: 0px 4px 0px 18px; line-height: 39px; cursor: default; border-width: 0; color: #fff; } It works well under Chrome and FF but fails in IE. When looking at the DOM it's clear that GWT's standard.css is loaded after the styles defined in my CssResource and therefo

Re: Is there a way to override standard.css inline in UiBinder?

2010-04-27 Thread Tristan
; >   > >     @external .datePickerMonth; > >     .datePickerMonth { color: white !important; } > >   > > >   > > > > > But I am stomped as to how to make the Widget use .datePickerMonth > > that I specified instead of the one from stan

Re: Is there a way to override standard.css inline in UiBinder?

2010-04-25 Thread daniel
> to answer well.  So now it seems the setup should be > > >   >     @external .datePickerMonth; >     .datePickerMonth { color: white !important; } >   > >   > > > But I am stomped as to how to make the Widget use .datePickerMonth > that I specified inste

Re: Is there a way to override standard.css inline in UiBinder?

2010-04-25 Thread Tristan
specified instead of the one from standard.css. I don't want to do addStyleNames='{local.datePickerMonth}' because that would assign the style at the widget's top level instead of just the month label, and there is no setMonthStyle thing. I think the functionality that I'm looking

Re: Is there a way to override standard.css inline in UiBinder?

2010-04-25 Thread daniel
have a look at @external http://code.google.com/intl/de-DE/webtoolkit/doc/latest/DevGuideClientBundle.html#Selector_obfuscation On 25 Apr., 22:36, Tristan wrote: > Hey, > > Does anyone have an idea how to override standard.css inline in > UiBinder?  For example, > > >

Is there a way to override standard.css inline in UiBinder?

2010-04-25 Thread Tristan
Hey, Does anyone have an idea how to override standard.css inline in UiBinder? For example, where 'datePicker' in java is provided @UiField(provided = true) Widget datePicker; I would like to do something like... .datePickerMonth { color: white } Th

Re: Problem: Hosted mode [WARN] 404 - GET /gwt/standard/standard.css (127.0.0.1) 1411 bytes

2010-04-22 Thread Oliver Uvman
Hello again! It turned out the chrome adblock extension was the culprit. I realized this when other people's GWT examples didn't load either. After disabling this plugin, everything was back to its old fully functional self again. Hope this is useful for others. On 20 Apr, 14:56, Oliver Uvman wro

Problem: Hosted mode [WARN] 404 - GET /gwt/standard/standard.css (127.0.0.1) 1411 bytes

2010-04-21 Thread Oliver Uvman
Hello! After not using GWT for a while, I return to my projects. None of them working. At first I spent some time looking around for the possible cause, thought my web.xml was bad and replaced it with a known working copy, but to no avail. After this I tried simply starting a new web app project,

Disabling default css (standard.css)

2010-04-10 Thread MMohsen
Greetings all, I've tried the following: *Removing all classes but the entry point class. *Removing all xml tags from *.gwt.xml but (and) *Cleaned and recompiled the application And still standard.css is active. Would someone please tell me did I miss ? Thank you all. -- You received

Re: How to get rid of standard.css

2010-04-08 Thread Ashar Lohmar
if you still plan to use the resources from the default theme instead of using use this will put the css and the images in your compilation folder, but will not inject the css file to your app so that now you could add their css file first and then your css this way you still benefit from their c

Re: How to get rid of standard.css

2010-04-08 Thread mariyan nenchev
Remove it from the gwt.xml -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups

How to get rid of standard.css

2010-04-08 Thread Viliam Durina
My application has completely custom look and feel. I worked it out by removing entries from standard.css and adding my own to my own css. It worked perfectly, unless I compiled the application and standard.css got overwritten... Doing a quick search on the web I found out, that it is not

standard.css with non-standard CSS

2010-03-09 Thread Chris Lercher
Hi, the "standard.css" I get by using in my module XML contains non-standard CSS attributes like "zoom: 1;" This is clearly the best way to set "hasLayout" in IE<8, but it's an invalid attribute for other browsers. I'd like to keep my CSS valid, so

Re: How to redefine standard.css ?

2010-01-09 Thread mariyan nenchev
remove the standard css declaration fom your .gwt.xml On Fri, Jan 8, 2010 at 9:26 AM, Ista Pouss wrote: > Hi, > > I have a little application (a diaporama) in GWT. I should want > distribute this application. > > But GWT put "standard.css" at the end of css decl

Re: How to redefine standard.css ?

2010-01-09 Thread Ista Pouss
2010/1/9 rjcarr : > I'm not exactly sure what you're asking, but I'm not sure you can edit > standard.css. > I'm sorry, my english is not good. Here is an exemple. In my HTML, at the end of , there is : You see the call to GWT appli, then the link

Re: How to redefine standard.css ?

2010-01-08 Thread rjcarr
I'm not exactly sure what you're asking, but I'm not sure you can edit standard.css. If you like standard.css but just want to modify some fields, you could probably find where it lives, copy it to a location on your web path, disable the standard one and load your edited one.

How to redefine standard.css ?

2010-01-08 Thread Ista Pouss
Hi, I have a little application (a diaporama) in GWT. I should want distribute this application. But GWT put "standard.css" at the end of css declarations, so it remove all specifics css. How is it possible to modify that ? I have read "How to disable standard css" at http

Re: Standard.css always override my MyProject.css

2009-11-26 Thread philippe
ello, > > can you please help me with this issue, because I'm slowly losing my > mind. > > I have GWT project, where in MyProject.gwt.xml I have > >         and > >         > In MyProject.html I have: >         > > but for TabPanel I always get

Standard.css always override my MyProject.css

2009-11-26 Thread Šobis
Hello, can you please help me with this issue, because I'm slowly losing my mind. I have GWT project, where in MyProject.gwt.xml I have and In MyProject.html I have: but for TabPanel I always get style from Standard.css. What am I doing wrong? In MyProject.

GWT's default CSS styles in standard.css

2009-05-02 Thread hezjing
Hi Why there is no CSS style of .gwt-DecoratorPanel .middleCenter found in the gwt-user.jar, com\google\gwt\user\theme\standard\public\gwt\standard\standard.css? Shouldn't all GWT's default CSS styles must be created and exist in standard.css?

Re: Why does standard.css override my own css file

2009-04-13 Thread Thomas Broyer
On 14 avr, 00:25, Jaap wrote: > Hi, if add a CSS body statement to the CSS file of my project I see > with Firebug that the browser actually does take the values from > standard.css and not from my CSS file. > Can I change this somehow? Is it intentional? Is this a bu

Re: Why does standard.css override my own css file

2009-04-13 Thread Vitali Lovich
; On Apr 14, 12:25�am, Jaap wrote: > > > >> Hi, if add a CSS body statement to the CSS file of my project I see > >> with Firebug that the browser actually does take the values from > >> standard.css and not from my CSS file. > >> Can I change this somehow?

Re: Why does standard.css override my own css file

2009-04-13 Thread Jeff Chimene
On 04/13/2009 03:31 PM, Jaap wrote: > On Apr 14, 12:25�am, Jaap wrote: > >> Hi, if add a CSS body statement to the CSS file of my project I see >> with Firebug that the browser actually does take the values from >> standard.css and not from my CSS file. >> Ca

Re: Why does standard.css override my own css file

2009-04-13 Thread Jeff Chimene
On 04/13/2009 03:31 PM, Jaap wrote: > On Apr 14, 12:25�am, Jaap wrote: > >> Hi, if add a CSS body statement to the CSS file of my project I see >> with Firebug that the browser actually does take the values from >> standard.css and not from my CSS file. >> Ca

Re: Why does standard.css override my own css file

2009-04-13 Thread Jaap
On Apr 14, 12:25 am, Jaap wrote: > Hi, if add a CSS body statement to the CSS file of my project I see > with Firebug that the browser actually does take the values from > standard.css and not from my CSS file. > Can I change this somehow? Is it intentional? Is this a bug? > I ju

Why does standard.css override my own css file

2009-04-13 Thread Jaap
Hi, if add a CSS body statement to the CSS file of my project I see with Firebug that the browser actually does take the values from standard.css and not from my CSS file. Can I change this somehow? Is it intentional? Is this a bug? Thanks Jaap