Details
-
Type:
Bug
-
Status: Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: EE 1.3.1.GA
-
Fix Version/s: EE 1.3.0.GA_P01
-
Component/s: Core
-
Labels:None
-
Environment:All
-
Support Case References:Support Case #12961 - https://icesoft.my.salesforce.com/5007000000fCLM8
Description
When defining a custom style sheet via the h:outputStylesheet tag, with the EE 1.3.1 release, this is getting overriden by the default CSS. In the 1.3.0 release the custom style sheet would be added further down the head tag. Now the default style sheet (android_light) is being added last.
Issue Links
- depends on
-
MOBI-700 Leverage ICEfaces Resource Coalescing
-
- Resolved
-
Revision: 42077
Author: philip.breau
Date: August-06-14 2:52:57 PM
Message:
MOBI-700Leverage ICEfaces Resource Coalescing
change DeviceResourceRenderer to create an OutputStyleSheet component for the theme, which can then participate in proper ICEfaces resource handling and be specified in the resource-dependency.xml file
added sample resource-dependency.xml to showcase
Modified : /icemobile/trunk/icemobile/jsf/components/component/resources/icefaces.ace/META-INCLUDE/faces-config.xml
Modified : /icemobile/trunk/icemobile/jsf/components/component/src/org/icefaces/mobi/component/deviceresource/DeviceResourceRenderer.java
Added : /icemobile/trunk/icemobile/samples/jsf/mobileshowcase/src/main/resources/META-INF
Added : /icemobile/trunk/icemobile/samples/jsf/mobileshowcase/src/main/resources/META-INF/resource-dependency.xml
Example resource-dependency.xml:
**********************************************
<dependencies>
<resource name="showcase.css" library="css">
<requires>
<resource name="android_light.css" library="org.icefaces.component.skins"/>
<resource name="android_dark.css" library="org.icefaces.component.skins"/>
<resource name="archaic.css" library="org.icefaces.component.skins"/>
<resource name="bb10.css" library="org.icefaces.component.skins"/>
<resource name="bberry.css" library="org.icefaces.component.skins"/>
<resource name="ios7.css" library="org.icefaces.component.skins"/>
<resource name="ipad.css" library="org.icefaces.component.skins"/>
<resource name="iphone.css" library="org.icefaces.component.skins"/>
<resource name="jqm.css" library="org.icefaces.component.skins"/>
<resource name="simulator.css" library="org.icefaces.component.skins"/>
</requires>
</resource>
</dependencies>