For questions about CssResources in the Google Web Toolkit.
1
vote
1answer
46 views
How to apply complex styles using CSSResource in GWT
In my project I your CSSResource bundle to apply styles accros the project.
How do I apply more complex styles such as given in the example ?
I do not manage to get the child style applied using ...
0
votes
1answer
52 views
GWT doesn't apply a Css style when client is IE8
i've this css class:
.defaultActionButton {
height: auto;
padding-top: 5px;
padding-bottom: 6px;
padding-left: 10px;
padding-right: 10px;
white-space: normal;
border: 1px solid #3079ed;
...
0
votes
1answer
85 views
GWT CssResource and using @media to support both large and small screens
I'm using GWT's ClientBundle and CssResource to pull in my css definitions.
I'd like to set viewports depending upon screen size. Do you know how to achieve this within CssResource?
My failed ...
1
vote
1answer
73 views
ClientBundles and Resources: what are they and why use them? What problems do they solve?
I am brand new too GWT, and no matter how much I read the official doc on ClientBundles I just can't seem to wrap my head around what they are, and what they do. The same goes for CssResource, ...
-1
votes
1answer
80 views
GWT - CssResource doesnt run
I have little issue with CssResource in GWT. I want to change styles of AbsolutePanel and label, but it doestnt run. When I add style class with setStyleName method, nothing is happend.
In this ...
0
votes
1answer
390 views
GWT: Returning multiple styles for the same CSS field
In a CssResource, Can I return multiple style class names from the same method?
[please forgive any mistakes in code - I'm trying to recreate at home, from memory].
I have the following library code ...
0
votes
1answer
282 views
CssResource change style
I have interface such as
public interface PopupPanelWithConfirmStyle extends ClientBundle {
public static final PopupPanelWithConfirmStyle I = GWT.create(PopupPanelWithConfirmStyle.class);
...
2
votes
2answers
438 views
Dynamic CSS class names in GWT
I am in the process of porting a simple CSS grid system to GWT. My CSS file currently has classes like .size1, .size2 etc., and I have a CSS resource that looks like -
interface MyResource extends ...
1
vote
1answer
477 views
How can I use the same @def in multiple CssResource css files?
I'd like to say, in a single, centralized location,
@def mainColor = #f00;
and then, in all of my other css files, refer to mainColor without having to redefine it. Then when I change mainColor in ...
0
votes
2answers
174 views
want to access the css styles from my java code
i have a css in my GWTApplication which contains several classes in that,I want to access the class attributes through my program,is there any way to access them via java code or CssResource.
If there ...
0
votes
3answers
147 views
how to access the styles from CSS
Can we get the value from inside a css definition in the code if CSS resource is used?
e.g.
.iv_menu_thumbnail {
display: block;
width: 24px;
height: 24px;
margin: 3px;
float: ...
3
votes
1answer
384 views
CSS Resource - Combining literal and runtime substitution
To enable runtime skinning changes that use browser specific rules,
I need to combine two CSS-resource capabilities - runtime substitution and literal.
For example, to have dynamic button gradient, I ...
2
votes
1answer
3k views
How to override default CSS in modern GWT applications?
From the following page: Developer's Guide - CSS Style
it is made clear that in modern GWT apps there's two ways to declare css styles:
Using a CssResource contained within a ClientBundle.
Using an ...
0
votes
1answer
124 views
Is there a way to set GWT to include style names in the compiled names?
I use CssResource extensively, and now my generated html is full of GWXSHFKADAish class names. I get all of the advantages of that, but for debugging it'd be helpful to add a flag that would turn ...
0
votes
1answer
212 views
How to style GWT Editor errors
I am using the GWT 2.4 Editor framework. I have everything working with errors displaying, but I am not sure how to style the errors! It looks like the styles are part of a CssResource as they are ...
0
votes
2answers
1k views
GWT ImageSprite: how to move the background image to the right side
I want to use the following style in GWT client bundle:
.myClass tr:hover {
background: url("myImage.png") 185px 2px no-repeat;
}
I declared the image as follows:
...
10
votes
3answers
3k views
In GWT 2.0 CssResource, how I can turn off obfuscation for all my css classes?
I have a CssResource where I want to have some of the css classes "mapped" to methods:
@ClassName("top-table")
String topTable();
But I want to turn off the obfuscation GWT does (while developing ...
2
votes
1answer
500 views
How exactly would one override a CssResource
Currently I have an application using CssResource in gwt like this...
interface MyClientBundle extends ClientBundle{
@Source("images/one.png")
Image someImageThatAlwaysLooksTheSame();
...
0
votes
1answer
137 views
What is the use case for gwt's CssResource.Import annotation?
What is the use case for gwt's CssResource.Import annotation?
http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/resources/client/CssResource.Import.html
6
votes
1answer
451 views
How to use dependent style names together with the CssResource obfuscation?
I access the style names through CssResource, either from the UiBinder and from the java views. The problem is I cannot find a way to add and remove suffixes due to the class names obfuscation.
By ...
4
votes
1answer
2k views
Attaching an ImageResource from an external CSS file using @sprite
I'm trying to use CssResource and ImageResource together in a GWT2.2 project.
CssResource and obfuscation are working properly, but I'm having problems accessing images.
I already can access the ...
2
votes
3answers
225 views
Packaging css with a widget
I want to package up a widget to be easily included in an arbitrary project. I don't want to require that the user link to my personally-created style sheet in their host page - I just want the css ...
0
votes
1answer
512 views
GWT 2.2 project with CssResource compile problem using ant
In a larger GWT 2.2.0 application we want to use dynamic CellTables. Unlike other widgets, CellTable does not use standard names for css styles (like e.g. "gwt-MenuItem"). So we have to move from ...
2
votes
1answer
529 views
Weird error from the Eclipse GWT plugin when having a separate source folder for resources
I have an Eclipse GWT project with two source folders: One for source code and one for resources. This should and does work fine, but nevertheless Eclipse shows the following error message:
...
0
votes
1answer
3k views
GWT css background image
I use GWT 2.1.1
In package resources i have png images and one css file.
In css file i wrote:
.finishedTask {
background: white url("tick64.png") center center;
padding: 0.5em;
border: ...
7
votes
3answers
2k views
Need app-wide CSS constants in GWT
I'd like to define some colours as constants in a GWT CssResource, and use those constants throughout my application; but I don't know how to do that.
I'll tell you what what I've tried. I've created ...
2
votes
1answer
441 views
How to get GWT CSSResource to parse not() selectors
I realize that the CSS parser that GWT uses will only handle CSS2, but I am targeting iPhone Safari, so I want to be able to use some of the CSS3 stuff. For properties, I have been fine using the ...
3
votes
2answers
778 views
GWT: How to access in one stylesheet constants defined in another stylesheet from the same ClientBundle
This problem is best described with an example.
I have the following ClientBundle in my GWT app:
interface Resources extends ClientBundle {
public static final Resources INSTANCE = ...
8
votes
4answers
1k views
Basic arithmatic in GWT CssResource
I'm looking for a way to do something like this:
// style.css
@def borderSize '2px';
.style {
width: borderSize + 2;
height: borderSize + 2;
}
where the width and height attributes would end ...
1
vote
1answer
963 views
GWT CssResource Customization
I'm writing a GWT widget using UIBinder and MVP. The widget's default styles are defined in TheWidgetView.ui.xml:
<ui:style type="com.widgetlib.spinner.display.TheWidgetView.MyStyle">
...
3
votes
1answer
5k views
How to use imported css styles in GWT correctly
Imagine you created the following simple widget with UiBinder:
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
...