Re: How to get ride of gwt theme css

2016-10-27 Thread Ahamed
If you don't want to use GWT theme then comment the GWT theme from module.gwt.xml The above 3 default theme will come with GWT application. Comment this if you don't want to include. On Wednesday, October 26, 2016 at 5:39:40 AM UTC+5:30, David wrote: > > In my current project, I ju

Re: How to get ride of gwt theme css

2016-10-26 Thread Frank
Remove from your .gwt.xml file -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email

How to get ride of gwt theme css

2016-10-25 Thread David
In my current project, I just use GWT compiler. I don't want GWT clean.css file. How do I get ride of clean.css which is always generated? David -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving

How to Load GWT theme Dynamically

2015-11-12 Thread abdul
I have an application built on GWT with internationaliation. I want to load the GWT theme dynamically.For example:If (`localhost:8080/GWTApps/app.html`) then load this `` theme or else (`localhost:8080/GWTApps/app.html=ar`) load this ``.How to achieve this dynamically any idea or thoughts

Re: How to Load GWT theme Dynamically

2015-11-12 Thread JonL
, but use resources. Then programmatically load the resources. Finally, you could also create multiple modules for each theme, then use a servlet/jsp or some other logic in an entry point to switch/import the appropriate modules. On Thursday, November 12, 2015 at 3:18:37 AM UTC-7, abdul wrote

Re: How to Load GWT theme Dynamically

2015-11-12 Thread Thomas Broyer
On Thursday, November 12, 2015 at 11:18:37 AM UTC+1, abdul wrote: > > I have an application built on GWT with internationaliation. I want to > load the GWT theme dynamically.For example:If > (`localhost:8080/GWTApps/app.html`) then load this ` name='com.google.gwt.user.theme

Re: How to Load GWT theme Dynamically

2015-11-12 Thread Mohammed Sameen
Thanks Thomas & JonL for your suggestion On Thursday, November 12, 2015 at 3:48:37 PM UTC+5:30, abdul wrote: > > I have an application built on GWT with internationaliation. I want to > load the GWT theme dynamically.For example:If > (`localhost:8080/GWTApps/app.html`) then

Re: custom GWT theme in 2.7 missing

2015-10-12 Thread Heinz Rohmer
In the meantime I found the solution for my problem: It looks like in GWT version 2.5 the theme (css, images, ...) was used from the source folder. Since GWT version 2.6 it looks like the theme (css, images, ...) was read from the compiled code within the target folder. Originally I used

Re: custom GWT theme in 2.7 missing

2015-10-09 Thread Heinz Rohmer
some more testing: If we inherit one of the GWT default themes (e.g. DarkRTL) within the two main modules and build it with maven the result on our servers look OK. But switching back to our custom theme did not work. I guess our problem is in the setup of the maven plugin. Is there any switch

custom GWT theme in 2.7 missing

2015-10-08 Thread Heinz Rohmer
Hi, we started a GWT project with version 2.6 some time ago. Within this project we created a new custom theme as a separate GWT module within the same Eclipse project the two main modules are located (3 GWT modules in sum). The theme module is inherited by the main GWT modules. With version

How GWT Compiler adds the default theme content to war?

2014-10-08 Thread Mohammed Sameen
Hi, Can one explain me how GWT Compiler add the (Standard,Chrome,Dark)default theme content(Static content) to the war directory If we Compiles the GWT Project? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from

Re: How GWT Compiler adds the default theme content to war?

2014-10-08 Thread Jens
, similar to client. So for GWT themes these public resources are in com/google/gwt/user/theme/[ chrome | clean | dark | standard ]/public -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving

Re: Theme GWT, how does it works?

2013-04-29 Thread sebastien . ribeil
Thank you for your answer. I choose a theme and I have the same result. When I look the network requests, all seems OK. My WebContent folder contain: - folder myproject (with the theme GWT/clean ) - folder META-INF - folder WEB-INF -flavicon.ico -Myproject.css -Myproject.html Le jeudi 25

Re: Theme GWT, how does it works?

2013-04-29 Thread sebastien . ribeil
project on lighthttpd, so I just copy my folder on my server. When I open website with a web broswer, it works but all my widgets have no style. ( for example, there are only the numbers for the datePicker: no color, no background...). I guess that the theme doesn't work without eclipse

Re: Theme GWT, how does it works?

2013-04-26 Thread sebastien . ribeil
put the 2 line (for the theme) in the gwt.xml or if I don't do that, and if I delete the CSS on my server, I have the same result. The theme and the CSS don't do anything. Why? I just copy my file on the server, and I open the .html in a web browser, I have to do something else to make it works

Re: Theme GWT, how does it works?

2013-04-26 Thread Jens
First you only need one theme, either Standard or Clean. After you have compiled your app to Javascript, your war/WebContent folder should have a folder with the name of your GWT module and inside that folder there should be all the compiled JS files (hash.cache.html) and a folder called gwt

Theme GWT, how does it works?

2013-04-25 Thread sebastien . ribeil
no style. ( for example, there are only the numbers for the datePicker: no color, no background...). I guess that the theme doesn't work without eclipse but in my gwt.xml I have: inherits name='com.google.gwt.user.theme.clean.Clean'/ inherits name='com.google.gwt.user.theme.standard.Standard

Dialog box without theme has no caption area at the top

2012-05-30 Thread regnoult axel
Hello, I do not inherit of any theme (Standard, Dark, Chrome). And when I use a Dialog Box, I do not have the TOP CAPTION appearing (so I cannot move my dialog box). Any idea to help me please ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Problem creating custom gwt theme

2012-04-05 Thread El Mentecato Mayor
(this is from an old thread I know, but the question hasn't been answered fully in this forum anywhere I see) So I want to create a custom gwt theme. To do this, I created a standalone maven project with a similar dir structure that I see with the gwt standard theme inside gwt-user.jar. I

Re: Problem creating custom gwt theme

2012-04-05 Thread El Mentecato Mayor
I realized soon after posting how to solve my problem... so here's the solution; you have to use the path conventions that the gwt themes use so that your resources can be found. I should have known that because long time ago I got a custom theme from the GWT Theme Generator ( http://works.sen

ListBox CSS with GWT Clean Theme

2011-10-12 Thread Mark Wengranowski
Hi Everyone, I recently started using the newer Clean theme for GWT. I prefer it to the standard theme but don't like the way that ListBox looks. Is there any way that i can get the ListBox styles from the Standard theme? I looked in the generated CSS file but the ListBox style is empty. Thanks

New GWT theme

2011-09-09 Thread Travis Camechis
Wasn't there a new theme created for GWT 2.3 ? Clear or Clean? Something along those lines. -- 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-toolkit@googlegroups.com. To unsubscribe from

Re: New GWT theme

2011-09-09 Thread Qian Qiao
On Sat, Sep 10, 2011 at 03:51, Travis Camechis camec...@gmail.com wrote: Wasn't there a new theme created for GWT 2.3 ? Clear or Clean? Something along those lines. I guess you mean com.google.gwt.user.theme.clean.Clean -- Joe -- You received this message because you are subscribed

Re: New GWT theme

2011-09-09 Thread Travis Camechis
yeah, that is it. I found it as soon as I sent the email. On Fri, Sep 9, 2011 at 4:02 PM, Qian Qiao qian.q...@gmail.com wrote: On Sat, Sep 10, 2011 at 03:51, Travis Camechis camec...@gmail.com wrote: Wasn't there a new theme created for GWT 2.3 ? Clear or Clean? Something along those lines

Re: New Google theme coming to GWT?

2011-07-06 Thread gadev
I am not referring to the color scheme, but instead if something similar such as the shape of buttons and how they get highlighted etc.. GWT has a number of themes, I currently use inherits name= 'com.google.gwt.user.theme.clean.Clean'/ and I was wondering if something similar or other themes

New Google theme coming to GWT?

2011-07-05 Thread gadev
Is the new Google theme, like the one for Gmail coming to GWT? -George -- 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.google.com/d/msg/google-web-toolkit/-/oQLYbQf0YgIJ. To post

Re: New Google theme coming to GWT?

2011-07-05 Thread Alexander Orlov
I don't think that Google is interested in people mimicing their corporate design. Also Gmail is build with Google Closure — not GWT. -Alex On Jul 5, 2:58 pm, gadev george.agiasog...@newsint.co.uk wrote: Is the new Google theme, like the one for Gmail coming to GWT? -George -- You received

[gwt-contrib] Adding vertical padding to hborder.png in the new Clean style theme to handle large Buttons/Date... (issue1368808)

2011-03-09 Thread jlabanca
Reviewers: pdr, Description: Adding vertical padding to hborder.png in the new Clean style theme to handle large Buttons/DatePickers. Currently, the sprited background images are much too short, so other background sprites will bleed into a button and date picker cells over ~40px tall. Please

[gwt-contrib] Re: Adding vertical padding to hborder.png in the new Clean style theme to handle large Buttons/Date... (issue1368808)

2011-03-09 Thread pdr
On 2011/03/09 15:55:18, jlabanca wrote: LGTM http://gwt-code-reviews.appspot.com/1368808/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9831 committed - Adding vertical padding to hborder.png in the new Clean style theme to...

2011-03-09 Thread codesite-noreply
Revision: 9831 Author: gwt.mirror...@gmail.com Date: Wed Mar 9 14:15:12 2011 Log: Adding vertical padding to hborder.png in the new Clean style theme to handle large Buttons/DatePickers. Currently, the sprited background images are much too short, so other background sprites will bleed

[gwt-contrib] Re: Adding vertical padding to hborder.png in the new Clean style theme to handle large Buttons/Date... (issue1368808)

2011-03-09 Thread jlabanca
committed as r9831 http://gwt-code-reviews.appspot.com/1368808/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adding new style theme called Clean, and using the new theme in Showcase and in the default GWT ... (issue1330801)

2011-02-28 Thread pdr
On 2011/02/25 16:51:09, jlabanca wrote: LGTM http://gwt-code-reviews.appspot.com/1330801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adding new style theme called Clean, and using the new theme in Showcase and in the default GWT ... (issue1330801)

2011-02-28 Thread jlabanca
committed as r9778 http://gwt-code-reviews.appspot.com/1330801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-25 Thread John LaBanca
We've updated the theme based on some of the feedback. The TabPanel header background color is now gray instead of blue, and we added rounded corners to buttons and tabs for browsers that support the border-radius CSS attribute. Thanks, John LaBanca jlaba...@google.com On Wed, Feb 23, 2011

[gwt-contrib] Re: Adding new style theme called Clean, and using the new theme in Showcase and in the default GWT ... (issue1330801)

2011-02-25 Thread jlabanca
http://gwt-code-reviews.appspot.com/1330801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-23 Thread mP
own theme, but the apps created with this theme have to live inside web browsers.  Violently clashing with the surrounding UI is inherently bad UI, no matter how pretty the UI might be in isolation. 7: Disclosure Panel: When I click on the Disclosure Panel, the text of the title gets

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-22 Thread jcb
I like the look and it's fluid, for the most important. Anyway do you have a link to compare the previous style to the new one ? it would be easier to evaluate. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-22 Thread Jeff Larsen
I think having rounded corners in browsers that supports it and square corners in browsers that don't is acceptable, it is a minor stylistic difference, and if someone has a problem with the that style, nothing is stopping them from implementing their own theme. My only main concern is to make

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-22 Thread George Moschovitis
Now, this is a great surprise. I strongly believe that GWT needs a new default theme. The proposed theme is a bold improvement (I especially like the buttons) but why don't you use something closer to the 'Google' theme (like Google Closure) ? This would allow GWT apps to blend much better

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-22 Thread Evan Ruff
I'm really sorry but, this not great at all. I just don't see anybody actually using this in a deployed application. Like it or not, the competition for widgets and themes is Vaadin, GXT, SmartGWT, etc. While I understand the default theme is lighter, this just isn't in the same league. I

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-22 Thread Harpal Grover
I agree with Evan, I think GWT needs a theme along the lines of GXT and SmartGWT. These themes are very easy on the eyes and very attractive as well. On Tue, Feb 22, 2011 at 11:13 AM, Evan Ruff evan.r...@gmail.com wrote: I'm really sorry but, this not great at all. I just don't see anybody

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-22 Thread John LaBanca
@jcb - You can view the current version of Showcase for comparison here: http://gwt.google.com/samples/Showcase/Showcase.html Thanks, John LaBanca jlaba...@google.com On Tue, Feb 22, 2011 at 11:21 AM, Harpal Grover harpal.gro...@gmail.comwrote: I agree with Evan, I think GWT needs a theme

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-22 Thread Greg Dougherty
opens / closes the disclosure. 6: Menu Bar: It's nice, but it COMPLETELY clashes with the menu bar on my web browser (Sea Monkey on Windows XP). I know you're trying to develop your own theme, but the apps created with this theme have to live inside web browsers. Violently clashing

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-22 Thread Evan Ruff
John, Did I speak too soon? Looking at the two showcases, they appear identical in my browser: http://gwt-showcase-clean.appspot.com/#!CwCheckBox http://gwt.google.com/samples/Showcase/Showcase.html#!CwCheckBox Did I miss something? E -- You received this message because you are subscribed

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-22 Thread Gal Dolber
Look at the buttons On Tue, Feb 22, 2011 at 5:26 PM, Evan Ruff evan.r...@gmail.com wrote: John, Did I speak too soon? Looking at the two showcases, they appear identical in my browser: http://gwt-showcase-clean.appspot.com/#!CwCheckBox

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-22 Thread Thomas Broyer
On Tuesday, February 22, 2011 4:40:19 PM UTC+1, George Moschovitis wrote: Now, this is a great surprise. I strongly believe that GWT needs a new default theme. The proposed theme is a bold improvement (I especially like the buttons) but why don't you use something closer to the 'Google

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-22 Thread Philippe Beaudoin
Agreed. I like the fact that the default theme is light-weight, does not require fancy images and result in a relatively shallow DOM (compared to some other widget providers) However I would really like the basic look to match that of standard Google Apps. For example, the look and feel

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-22 Thread George Moschovitis
For example, the look and feel of the Google Groups app is pretty neat, why not try to grab their widgets? exactly, the theme of Google Groups would make an excellent default theme... -g. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-17 Thread Ernesto Reig
Hope you´re the only one who like TabLayoutPanel style... -- 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-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-17 Thread Michael.Krog
jlaba...@google.com wrote: The GWT team is happy to (pre)announce that we will introduce a new, more modern CSS style theme in GWT 2.3 called Clean.  The new theme makes existing widgets look cleaner (more business-like) than the standard theme, and replaces the thick light blue borders with thin

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-17 Thread Jeff Schwartz
)announce that we will introduce a new, more modern CSS style theme in GWT 2.3 called Clean. The new theme makes existing widgets look cleaner (more business-like) than the standard theme, and replaces the thick light blue borders with thin gray borders. We worked under the constraint that we

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-17 Thread John LaBanca
: The GWT team is happy to (pre)announce that we will introduce a new, more modern CSS style theme in GWT 2.3 called Clean. The new theme makes existing widgets look cleaner (more business-like) than the standard theme, and replaces the thick light blue borders with thin gray borders. We worked

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-17 Thread Stefan Ollinger
a new, more modern CSS style theme in GWT 2.3 called Clean. The new theme makes existing widgets look cleaner (more business-like) than the standard theme, and replaces the thick light blue borders with thin gray borders. We worked under the constraint that we

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-17 Thread Mauro Bertapelle
Tried on various browsers and I definitely like this new theme. In my opinion: TextBox height is a little bit too much. TabLayoutPanel: I'm not convinced about new colors. SplitLayoutPanel: would reduce the tickness of split layout panel splittable bar and, only related to FF3 on Windows, would

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-17 Thread Mauro Bertapelle
-1 for me. Consistency between browsers is an important value to me, though I can understand your frustration with IE. On 17 Feb, 17:08, John LaBanca jlaba...@google.com wrote: Chrome, Safari, and Firefox support rounded corners natively in CSS.  How do you guys feel about using CSS rules to

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-17 Thread Brian Reilly
much too dark and too steep of a gradient. Overall, I like many elements of the new theme, as well as the goal of not changing the DOM to achieve it. I would use this theme in any new applications and would try to retrofit any of my existing applications to use it as well. Thank you for giving some

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-17 Thread Gal Dolber
+1 for me. IE support is still important, but I don't see how the final user gets benefit from emulated roundedCorners/shadows/gradients when he probably only using IE (so he will never tell the difference) and the extra markup ends up slowing down the app. This problem gets ever worst when the

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-17 Thread Jim Douglas
will introduce a new, more modern CSS style theme in GWT 2.3 called Clean.  The new theme makes existing widgets look cleaner (more business-like) than the standard theme, and replaces the thick light blue borders with thin gray borders.   We worked under the constraint that we would not modify

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-17 Thread Chi H
is an acceptable difference. If you are going to take that approach, I think you should also break a bit of backwards compatibility with the new theme by changing the DOM structure of some of the existing widgets. Using border-radius and still having superfluous 3x3 tables all over the place seems

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-17 Thread Chi H
needs to look 'good' on IE6-8, but it doesn't need to look exactly the same, and i think missing rounded corners is an acceptable difference. If you are going to take that approach, I think you should also break a bit of backwards compatibility with the new theme by changing the DOM structure

Feedback Requested: Preview of new GWT Style Theme

2011-02-16 Thread John LaBanca
The GWT team is happy to (pre)announce that we will introduce a new, more modern CSS style theme in GWT 2.3 called Clean. The new theme makes existing widgets look cleaner (more business-like) than the standard theme, and replaces the thick light blue borders with thin gray borders. We worked

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-16 Thread Ernesto Reig
I think the Tab Layout Panel styles could be improved to look more professional, more business-like. BTW, thank you very much for the new theme. -- 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

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-16 Thread Jeff Larsen
I like how the new theme feels cleaner and definitely more light weight, especially DialogBox. The blue in the tabs feels like it doesn't fit with the rest of the theme... I couldn't tell you what to put in there. I'm no artist, graphic designer but the tabs definitely don't fit with the muted

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-16 Thread Chi H
copying that would be an improvement - TabLayoutPanel - the dark blue background for the tabs looks very out of place, since it is so strong and isn't widely used in other widgets. Perhaps a simple grey would be better? All that being said, we will be adopting the new theme regardless of whether

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-16 Thread zixzigma
+ Basic Button style is excellent, very professional looking + Date Picker is great + TabLayoutPanel is great, unlike a comment above, I believe it is professional looking too. - TextBox style is very poor : ( would have been nice to have a border, light background It seems to have no style

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-16 Thread zixzigma
I know its a matter of taste, but I very much love the shades of blue themes, I LOVE really LOVE TabLayoutPanel. Professional does not mean looking boring grey, for the Button, the Grey style is fantastic, but for the rest, please do not overuse grey. -- You received this message because you

[gwt-contrib] Adding new style theme called Clean, and using the new theme in Showcase and in the default GWT ... (issue1330801)

2011-01-27 Thread jlabanca
Reviewers: pdr, Description: Adding new style theme called Clean, and using the new theme in Showcase and in the default GWT app. Also fixing a style bug in VerticalSplitPanel that causes the splitter to be too wide. Author: josht (styles), jlabanca Please review this at http://gwt-code

[gwt-contrib] Re: Adding new style theme called Clean, and using the new theme in Showcase and in the default GWT ... (issue1330801)

2011-01-27 Thread pdr
Few nits about the styles: button image is off by 1px in showcase button example, and a few blue border elements remain. http://gwt-code-reviews.appspot.com/1330801/diff/1/8 File user/src/com/google/gwt/user/theme/chrome/public/gwt/chrome/chrome.css (right): http://gwt-code-reviews.appspot.com

[gwt-contrib] Re: Adding new style theme called Clean, and using the new theme in Showcase and in the default GWT ... (issue1330801)

2011-01-27 Thread jlabanca
http://gwt-code-reviews.appspot.com/1330801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adding new style theme called Clean, and using the new theme in Showcase and in the default GWT ... (issue1330801)

2011-01-27 Thread jlabanca
http://gwt-code-reviews.appspot.com/1330801/diff/1/8 File user/src/com/google/gwt/user/theme/chrome/public/gwt/chrome/chrome.css (right): http://gwt-code-reviews.appspot.com/1330801/diff/1/8#newcode233 user/src/com/google/gwt/user/theme/chrome/public/gwt/chrome/chrome.css:233: line-height: 0px

Re: Problem creating custom gwt theme

2010-11-18 Thread Gaurav Vaish
Ensure that your theme module inherits from com.google.gwt.user.User so as to get a default-linker. -- Happy Hacking, Gaurav Vaish www.mastergaurav.com On Nov 18, 1:16 am, mitratul mitratul2...@gmail.com wrote: Hi, I am trying to create my own theme and use it. But while launching Dev mode

Re: Problem creating custom gwt theme

2010-11-18 Thread Thomas Broyer
On 17 nov, 21:16, mitratul mitratul2...@gmail.com wrote: Hi, I am trying to create my own theme and use it. But while launching Dev mode, it is giving the following errors in eclipse console: Initializing AppEngine server Loading modules    com.mitratul.theme.standard.Standard

Problem creating custom gwt theme

2010-11-17 Thread mitratul
Hi, I am trying to create my own theme and use it. But while launching Dev mode, it is giving the following errors in eclipse console: Initializing AppEngine server Loading modules com.mitratul.theme.standard.Standard Translatable source found in... [WARN] No source path

Carbide.ui 3.4 Theme Edition Plug-ins

2010-06-09 Thread James Baker
Check out these cool plug-ins which extends the features of Carbide.ui 3.4 Theme Edition to enable the creation of themes for various S60 platform editions and devices from Nokia. New versions of the Nokia E71 and Nokia E66 plug-ins are available. These updates have refined the content

Carbide.ui Theme Edition 2.0 Plug-ins

2010-05-20 Thread James Baker
These plug ins are cool tools for extending the features of Carbide.ui Theme Edition 2.0 to enable the creation of themes for various version of Symbian, S60 platform editions, and devices from Nokia. Before installing the S60 5th Edition plug-in please uninstall the version in Carbide.ui

GWT Theme and dynamic stylesheet inclusion

2010-03-31 Thread Julien Ortega
Hi, i am trying to create a theme based on the blueprint css framework. I have several css to include : link rel=stylesheet href=css/blueprint/screen.css type=text/css media=screen, projection link rel=stylesheet href=css/blueprint/print.css type=text/css media=print !--[if lt IE 8]link rel

Making a Custom GWT Theme

2010-02-26 Thread Geoffrey Wiseman
IE uses a significantly larger font for font-size: small than most of the other browsers. I've been able to override the theme defaults for much of the text in the GWT UI, but for some reason, IE7 doesn't seem to want me to fix the font-size: small on the SELECT. No matter what I do in the CSS

Can anybody provide a way to disable default css,even referenced widget used standard theme?

2009-12-10 Thread Alex Luya
Actully it is not a bug,but annoying,I have commented the entry inherits name='com.google.gwt.user.theme.standard.Standard/chrom..' / in my project .gwt.xml ,But question is if a referenced library within project uses inherits name='com.google.gwt.user.theme.standard.Standard' /,standard *css*

How to disable default CSS when referenced libraries use standard theme?

2009-12-09 Thread Alex Luya
Hi,I have commented the entry inherits name='com.google.gwt.user.theme.standard.Standard' / in my project .gwt.xml ,But question is if referenced library uses inherits name='com.google.gwt.user.theme.standard.Standard' /,standard *css* will still be generated,even I have commented it in my own

Re: How to disable default CSS when referenced libraries use standard theme?

2009-12-09 Thread piyush sharma
On 12/10/09, Alex Luya alexander.l...@gmail.com wrote: Hi,I have commented the entry inherits name='com.google.gwt.user.theme.standard.Standard' / in my project .gwt.xml ,But question is if referenced library uses inherits name='com.google.gwt.user.theme.standard.Standard' /,standard *css*

Re: Changing UI Theme at runtime.

2009-10-05 Thread Thomas Broyer
On 4 oct, 01:41, AndyB rn.an...@gmail.com wrote: I know it is possible, as it is done in the showcase example. I have tried looking through the code for the example but it is somewhat confounding. What I am interested in doing is changing the GWT user interface theme, the one

Changing UI Theme at runtime.

2009-10-04 Thread AndyB
I know it is possible, as it is done in the showcase example. I have tried looking through the code for the example but it is somewhat confounding. What I am interested in doing is changing the GWT user interface theme, the one that is inherited from the module XML, at runtime. I was wondering

Re: CSS Theme File - Disabled

2009-09-30 Thread jeeva
hi friends.. I have the same scenario... I even commet the themes in .gwt.xml file. It still over writes my css file. thanks for help. On Sep 10, 8:29 pm, ThomasWrobel darkfl...@gmail.com wrote: You can always just comment them out;  !--     -- On Sep 10, 4:19 am, josivan

Re: GWT Standard theme == relatively much bigger IE buttons. Fix?

2009-09-14 Thread alex.d
button to look like an IE button. So... I'd suggest you add your own css before the theme to level all the browsers and then build up the defaults you personally want - including button text size (this is probably THE most useful thing you can do to reduce css problems, that and a proper

GWT Standard theme == relatively much bigger IE buttons. Fix?

2009-09-12 Thread John Gunther
I've noticed that in IE buttons are noticeably larger using the standard GWT CSS theme than these buttons are in other browsers. This makes consistent cross-browser sizing difficult for me. Just eyeballing I'd say the IE buttons are around 50% wider and taller than in the other browsers

Re: GWT Standard theme == relatively much bigger IE buttons. Fix?

2009-09-12 Thread Ian Bambury
suggest you add your own css before the theme to level all the browsers and then build up the defaults you personally want - including button text size (this is probably THE most useful thing you can do to reduce css problems, that and a proper doctype). And if you want to have buttons look the same

Re: GWT Standard theme == relatively much bigger IE buttons. Fix?

2009-09-12 Thread John Gunther
differences. Maybe one day. Buttons are browser and OS dependent and whatever you do, you'll never get a Safari button to look like an IE button. So... I'd suggest you add your own css before the theme to level all the browsers and then build up the defaults you personally want - including

Re: CSS Theme File - Disabled

2009-09-10 Thread ThomasWrobel
You can always just comment them out; !-- -- On Sep 10, 4:19 am, josivan josiva...@gmail.com wrote: tks... :) other framework have enabled this feature :) j. On 7 set, 06:21, Thomas Broyer t.bro...@gmail.com wrote: On 7 sep, 02:40, josivan josiva...@gmail.com wrote: Hi, my

Re: CSS Theme File - Disabled

2009-09-09 Thread josivan
tks... :) other framework have enabled this feature :) j. On 7 set, 06:21, Thomas Broyer t.bro...@gmail.com wrote: On 7 sep, 02:40, josivan josiva...@gmail.com wrote: Hi, my application has currently many files for CSS oftheme. My doubt! Is possible disabledtheme(css) file generation? I

Re: CSS Theme File - Disabled

2009-09-07 Thread Thomas Broyer
On 7 sep, 02:40, josivan josiva...@gmail.com wrote: Hi, my application has currently many files for CSS of theme. My doubt! Is possible disabled theme (css) file generation? I need only my css file, where I'm setting css rules (gwt-*) inclusive. Just remove any inherit name

CSS Theme File - Disabled

2009-09-06 Thread josivan
Hi, my application has currently many files for CSS of theme. My doubt! Is possible disabled theme (css) file generation? I need only my css file, where I'm setting css rules (gwt-*) inclusive. tks j. --~--~-~--~~~---~--~~ You received this message because you

Re: [appengine-java] Overriding default GWT blue theme

2009-08-24 Thread Toby Reyelts
[bcc google-appengine-j...@googlegroups.com] [+google-web-tool...@googlegroups.com] Hey Robin, You'll probably get a quicker answer for this on the GWT users group. 2009/8/24 Zhi Le Zou zouzh...@gmail.com Hi, As you know, the default theme is blue, i.e. the borders or tabs are all in blue

Re: GWT Theme Like Google

2009-07-10 Thread Kango_V
I'd like the Google Wave theme as the default for GWT 2.0. I've posted this as an issue. On Jun 8, 1:22 am, Paulo Coutinho pa...@prsolucoes.com wrote: This idea is very nice, i think that themes only with css is very powerfull because only need change de CSS and dont need create other

Re: GWT 2 Theme

2009-07-09 Thread Kango_V
Inner designer? That made me laugh hehe. I'm all for open source. In fact that's all I use. But we have many projects to do and not a designer in our sordid bunch :) I'm just looking at the themes which ExtGWT and SmartGWT come with and feel that if GWT came with a really nice theme, it's

Re: GWT 2 Theme

2009-07-06 Thread Alex Rudnick
that offers multiple skins (as they do for iGoogle for example). Who knows for fun we might get some animated skins as well :-) David On Thu, Jul 2, 2009 at 1:28 PM, Kango_Vdjb.b...@gmail.com wrote: Is it possible to use the Google Wave theme as the standard for GWT 2?  I know it may need

Re: creating your own GWT theme or a pluggable look and feel

2009-07-04 Thread djd
Do you know if there are there any proposals close to completion?  I enjoy writing parsers, but I don't want to write my own if something new is about to be published. I don't know of any parser that accomplishes that (googled it). There are though many proposed protocols (still none is

Re: GWT 2 Theme

2009-07-03 Thread David
, 2009 at 1:28 PM, Kango_Vdjb.b...@gmail.com wrote: Is it possible to use the Google Wave theme as the standard for GWT 2?  I know it may need paring down slight, but that would still be cool. There are a lot of programmers that would like to suggest GWT to management, but do not like

Re: creating your own GWT theme or a pluggable look and feel

2009-07-02 Thread djd
Hi hobbyist, AFAIK, styles are set in each class, when they are constructed (so, via constructor). I have tried to change the stylename for TabPanel and TabItem (to match at least the style cascading conventions my app used), but found it impossible. Still, what you actually want is some sort

GWT 2 Theme

2009-07-02 Thread Kango_V
Is it possible to use the Google Wave theme as the standard for GWT 2? I know it may need paring down slight, but that would still be cool. There are a lot of programmers that would like to suggest GWT to management, but do not like the default. I'm sure if this was done, far more developers

Re: creating your own GWT theme or a pluggable look and feel

2009-07-02 Thread alex.d
, my-Button without having to call setStyleName() on every Button individually? Just override .gwt-Button in your MyApp.css and all buttons will have your style. If there is no way to do this dynamically, is there at least a way to create my own GWT theme so that I can reference

  1   2   >