I had a beautiful pure HTML mockup for a webpage that I am now recreating in GWT. I\'m attempting to use the same css in my GWT app, but that\'s not working well for me. G
Just for anyone else facing a similar situation, to elaborate on the answer that stringo0 answered, I put my styles in the 'GWT_APPNAME.css' where GWT_APPNAME is the name of the file that your GWT Eclipse plugin generates when you create your project.
This css file should be available directly under the war folder with the same name as your welcome page html. I tried this for overriding the gwt-anchor styles and it worked.
.gwt-Anchor:link {color:#FF0000;}
.gwt-Anchor:visited {color:#00FF00;}
.gwt-Anchor:hover {color:#FF00FF;}
.gwt-Anchor:active {color:#0000FF;}
You can use < !important > declaration. It's one of easiest choices
--- GWT ----
.gwt-PopupPanel {
border: 3px solid #E7E7E7;
padding: 3px;
background: white;
}
--- Custom style ---
.gwt-PopupPanel {
padding: 0px !important;
}
--- Result ---
.gwt-PopupPanel {
border: 3px solid #E7E7E7;
padding: 0px;
background: white;
}
There is a special resource you can inherit from to remove the clean.css file:
<inherits name='com.google.gwt.user.theme.standard.StandardResources'/>
So find your *.gwt.xml file and search for
<inherits name='com.google.gwt.user.theme.standard.Standard'/>
And replace it with the line above.
This is a quick, but hopefully helpful answer.
What I did is I copied over the styles I do want from the default GWT Style. For example, if you picked the standard style, GWT makes a standard.css in the war/WEB-INF/appengine-generated (somewhere along those lines) - I copied over all the button styles to my app's css file, and then in the config file chose not to use the standard GWT style.
This did the trick for us.
Well I managed to solve the problem with overriding standard css rules by inheriting my project's .css
file in .gwt.xml
file of my project. When you set your user defined .css
this way - AFTER the usual inherit line - it will have the higher priority in cascading one rule than the same rule, defined at standard gwt stylesheets.
It took a couple of hours to figure out how to inherit it properly, cause in first try just simply typing <stylesheet src='WebTerminal.css' />
; in my .gwt.xml
file and commenting out <link type="text/css" rel="stylesheet" href="WebTerminal.css">
in my .html
host page didn't bring me any result.
So, the solution is to use relative path, when you set your .css
in .gwt.xml
config, like this:
<stylesheet src='../WebTerminal.css' />
Notice ../
in the beginning of my relative path. To figure out how it works, add Window.alert(GWT.getModuleBaseURL());
as the first line of your onModuleLoad()
method. It will show you something like https://localhost:8080/myproject/resouces/webtermial/
, when in fact your hosted page URL would look like https://localhost:8080/myproject/resouces/WebTerminal.html
.
Here myproject/resouces is a directory, that contains your .css
file, and when you set it in .gwt.xml
like <stylesheet src='WebTerminal.css' />
, the compiler starts looking for myproject/resouces/webtermial/WebTerminal.css
and can't find it. That's why adding ../
sometimes is the only thing to do to solve your problem.
In addition to the words said above I only want to mention that I was not successful in attempt to find any description of this matter in the latest documentary or throughout the discussions taking place at google groups. Wish it was less harder to figure out, because GWT has much more really complex problems itself, than one, which must have had an exhausted description inside tutorial.
Solution is actually to create a public/css folder in the same directory as your gwt.xml
.
Add these two lines to your gwt.xml:
<stylesheet src='css/project-name.css'/>
and
<public path='public'/>
Place your project-name.css file in the css folder.
This works with both GWT Compile and Super Dev Mode.