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

2010-12-09 Thread vkrejcirik
I use Standard GWT style, so my buttons have .gwt-Buttons style. I create my css file, where I add for example this: .gwt-Button-activeJob { padding: 0.2em; margin-top: 1.5em; margin-right: 0.2em; margin-left: 0.3em; margin-bottom: 0.3em;

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 vkrejci...@gmail.com: I use Standard GWT style, so my buttons have .gwt-Buttons style. I create my css file,

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

2010-12-09 Thread vkrejcirik
Yes, I tried this solution yet. When I set primaryName, it overwrite all properties. I would like to leave all properties except padding and margin. On 9 pro, 09:23, dominic jansen dom.jan...@googlemail.com wrote: hey, you can try it this way: cancelButton.setStylePrimaryName(activeJob);

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 vkrejci...@gmail.com wrote: Yes, I tried this solution yet. When I set primaryName, it overwrite all properties. I would like to leave all

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

2010-12-09 Thread haimke
try to use css keyword: !important example: #main { width:600px !important; width:800px; } On Dec 9, 10:03 am, vkrejcirik vkrejci...@gmail.com wrote: I use Standard GWT style, so my buttons have .gwt-Buttons style. I create my css file, where I add for example this:

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 haim.schind...@gmail.com wrote: try to use css keyword:  !important example: #main {    width:600px !important;    width:800px; } On Dec 9, 10:03 am, vkrejcirik

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

2010-12-09 Thread vkrejcirik
It's interesting, that I run app in dev mode, it works fine. When I make war and deploy it into Tomcat server it use default css style for these buttons and ignore my .gwt-Button-activeJob definition. By other widgets, I use setStyleName method and it works fine. On 9 pro, 10:39, vkrejcirik