Use the standard theme from GWT, instead of our bad emulation from the GWT-1.3 era.
[pithos] / src / gr / ebs / gss / GSS.gwt.xml
1 <module>
2         <inherits name='com.google.gwt.user.User' />
3         <inherits name="com.google.gwt.user.theme.standard.Standard"/>
4         <inherits name="com.google.gwt.gears.Gears"/>
5         <inherits name='com.allen_sauer.gwt.dnd.gwt-dnd' />
6         <inherits name="com.google.gwt.http.HTTP"/>
7         <inherits name="com.google.gwt.json.JSON"/>
8         <entry-point class='gr.ebs.gss.client.GSS' />
9         <stylesheet src='gss.css' />
10         <!--<set-property name="user.agent" value="gecko" /> -->
11         <!-- Rebind the file upload dialog if Gears is installed -->
12         <replace-with class="gr.ebs.gss.client.FileUploadGearsDialog">
13                 <all>
14                         <when-type-is class="gr.ebs.gss.client.FileUploadDialog"/>
15                         <when-property-is name="gears.installed" value="true"/>
16                         <none>
17                                 <when-property-is name="user.agent" value="ie6"/>
18                                 <when-property-is name="user.agent" value="ie8"/>
19                         </none>
20                 </all>
21         </replace-with>   
22         <!-- Use a special file upload dialog if Gears is installed on IE -->
23         <replace-with class="gr.ebs.gss.client.FileUploadGearsIEDialog">
24                 <all>
25                         <when-type-is class="gr.ebs.gss.client.FileUploadDialog"/>
26                         <when-property-is name="gears.installed" value="true"/>
27                         <any>
28                                 <when-property-is name="user.agent" value="ie6"/>
29                                 <when-property-is name="user.agent" value="ie8"/>
30                         </any>
31                 </all>
32         </replace-with>   
33 </module>