Skinning or CSS on jedeveloper 11.1.1.6

Hi Experts,
I m done working of adf application on 11.1.1.6
now I have to start doing skinning for that application..
How would I do it?
I don't have permission to download any other version in my office
Any simple solution for this please
Thanks.

You can use the stand alone skin editor to simplify skinning your ADF 11.1.1.6 application
Get it here: http://www.oracle.com/technetwork/developer-tools/adf/downloads/index.html
Basic intro:
https://blogs.oracle.com/shay/entry/adf_faces_skin_editor_how

Similar Messages

  • Skinning with CSS in Flex

    I have a question regarding the best way to apply a CSS file
    to a component or application. I have tried compiling my CSS files
    into a SWF and then loading them at runtime like the first line of
    code below which would be associated with the root tag. This has
    worked fine.
    But it's also possible to point to the file using the "Style"
    tag placed within the root tag like in the second line of code.
    Any thoughts on whether one is preferred? If one or both are
    preferred at different times depending on other variables what
    might those variables be?

    Hm... I searched a little bit more ont he net, but no
    solution so far. Has anybody ever done something like this
    before...

  • Skins and Css

    Hi,
    I have a question about the skins and styles in ADF. Is there a possibility to extend the oracle fusion-styles and change only particular component-styles ?
    Many Thanks.

    Yes you can !
    Example can be found here .
    Regards
    Luc Bors

  • Controls, Skins, CSS and Custom "psuedoclass" (beyond :hover, :pressed...)

    Hi All,
    If you haven't experienced control skinning via css, read about it here: http://forums.sun.com/thread.jspa?threadID=5357325&tstart=0 (thanks to tamerkarakan).
    Turns out Control has some stateful information stored in it such as hover, pressed, focused. When these are TRUE you can associated a style with that stateful presence of your Control.
    The CSS to turn MyControl from RED to GREEN when hover is (programaticaly) set to true would look something like:
    "com.myjavafxapp.control.MyControl" {
    fill: RED;
    "com.myjavafxapp.control.MyControl":hover {
    fill: GREEN;
    }What I would like to know is can I add my own "hover" equivalent? If I create a control that has stateful setting of "state"="Low:Medium:High" and I want these represented in the CSS by "Yellow, Orange, Red" how can this be done? Ideally all styling logic should be outside the control in JavaFX CSS. What I would really like to see from a CSS perspective is this....
    "com.myjavafxapp.control.MyControl" {
    "com.myjavafxapp.control.MyControl":state=low {
    fill: YELLOW;
    "com.myjavafxapp.control.MyControl":state=med {
    fill: ORANGE;
    "com.myjavafxapp.control.MyControl":state=high {
    fill: RED;
    }Can this be done?
    Cheers

    Thanks topley, that's what the fan's want alright.
    According to that I need...
    "com.myjavafxapp.control.MyControl":${state == LOW} {
    fill: YELLOW;
    "com.myjavafxapp.control.MyControl":${state == MED} {
    fill: ORAGE;
    "com.myjavafxapp.control.MyControl":${state == HIGH} {
    fill: RED;
    }But this css syntax is NOT supported in JavaFX :'( and neither is :state==High or :state=High eta. I tried adding state as a boolean and just :state {} but this gives the following exception....
    com.sun.stylesheet.UnsupportedPropertyException: java.lang.IllegalArgumentException: state
    at com.sun.stylesheet.javafx.FXObjectStyleSupport.addPseudoclassListener(FXObjectStyleSupport.java:430)
    at com.sun.stylesheet.styleable.DefaultStyleable.addPseudoclassListener(DefaultStyleable.java:184)
    at com.sun.stylesheet.PropertyManager.addPseudoclassListener(PropertyManager.java:447)
    at com.sun.stylesheet.Rule.applyTo(Rule.java:226)
    at com.sun.stylesheet.Stylesheet.applyTo(Stylesheet.java:277)
    at com.sun.stylesheet.Stylesheet.applyTo(Stylesheet.java:282)
    at com.sun.stylesheet.Stylesheet.applyTo(Stylesheet.java:257)
    at javafx.scene.Scene.applyStylesheets$impl(Scene.fx:235)
    at javafx.scene.Scene.applyStylesheets(Scene.fx:43)
    at javafx.scene.Scene.userInit$(Scene.fx:220)
    at javafx.scene.Scene.initialize$(Scene.fx:43)
    Things would probably be a little easier for me to work out if I could look at the source of Control and determine how hover, pressed and focused are implemented... even if I am limited to just discrete Boolean values for now.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How do I apply programmatic skins for completely custom drawn components of a Flex library project?

    Hello folks,
    I am looking for best practices advice when (1) creating
    custom components and (2) styling and skinning.
    I already know how to skin a component part of the Flex
    framework. I can make a class extending ProgrammaticSkin and have
    my component skinned using CSS to link the component with the
    reference to my custom class.
    However what about those cases when you are completely
    creating a component from scratch?
    Imagine a "Freehand Drawing Canvas" component that allows the
    user to draw on it and has some buttons to set color styles, line
    styles, etc., or imagine a "Screen Flow Gallery" component that
    displays visual objects in a fashion similar to Cover Flow in the
    Mac.
    In many components I am aware you may reuse other components
    part of the Flex framework but I am trying to picture an scenario
    where you would need to draw everything yourself because there just
    isn't something to base it upon so you will end up drawing it from
    scratch.
    To learn how instead of building one of those components I
    mentioned previously I decided to start with something simple that
    would illustrate this like a LiteButton component that will behave
    just like the Flex mx.controls.Button but will extend UIComponent
    and be completely custom drawn.
    The component will have a default look and will also be
    style-able and skin-able. I will provide styles for users of the
    component to modify and regarding skinning anyone can create a
    custom ProgrammaticSkin adding its own drawing logic and link it to
    the component via CSS with the ClassReference applied to the skin
    selector.
    So far so good and it's clear what I want to achieve. I
    actually know how to do most of the stuff here but I have one
    single problem.
    Here is my question, where should I put my custom drawing
    logic? If I do it in the updateDisplayList inside the class
    extending UIComponent it works, however I thought that it would be
    a better practice to do it using programmatic skins, that way I
    could provide different skin themes for my component set.
    The problem is that I can't make the programmatic work in
    this scenario. I tried instantiating the custom programmatic skin
    during the updateDisplayList of the LiteButton component and adding
    it to my display object via addChild but that didn't do anything. I
    also tried creating a "default.css" stylesheet and tried to use
    ClassReference as I would normally do to skin an already existing
    component (or composite component as well) but that didn't do
    anything either.
    So how do I apply programmatic skins for completely custom
    drawn components of my Flex library project?
    I could do it inside the updateDisplayList of the LiteButton
    class extending UIComponent but again I would like to provide
    different theme sets for my components so it makes sense using
    programmatic skins.

    "jbucaran" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello folks,
    >
    > I am looking for best practices advice when (1) creating
    custom components
    > and
    > (2) styling and skinning.
    >
    > I already know how to skin a component part of the Flex
    framework. I can
    > make
    > a class extending ProgrammaticSkin and have my component
    skinned using CSS
    > to
    > link the component with the reference to my custom
    class.
    >
    > However what about those cases when you are completely
    creating a
    > component
    > from scratch?
    >
    > Imagine a "Freehand Drawing Canvas" component that
    allows the user to draw
    > on
    > it and has some buttons to set color styles, line
    styles, etc., or imagine
    > a
    > "Screen Flow Gallery" component that displays visual
    objects in a fashion
    > similar to Cover Flow in the Mac.
    >
    > In many components I am aware you may reuse other
    components part of the
    > Flex
    > framework but I am trying to picture an scenario where
    you would need to
    > draw
    > everything yourself because there just isn't something
    to base it upon so
    > you
    > will end up drawing it from scratch.
    This may help with that
    http://livedocs.adobe.com/flex/3/html/help.html?content=skinstyle_3.html
    > To learn how instead of building one of those components
    I mentioned
    > previously I decided to start with something simple that
    would illustrate
    > this
    > like a LiteButton component that will behave just like
    the Flex
    > mx.controls.Button but will extend UIComponent and be
    completely custom
    > drawn.
    >
    > The component will have a default look and will also be
    style-able and
    > skin-able. I will provide styles for users of the
    component to modify and
    > regarding skinning anyone can create a custom
    ProgrammaticSkin adding its
    > own
    > drawing logic and link it to the component via CSS with
    the ClassReference
    > applied to the skin selector.
    >
    > So far so good and it's clear what I want to achieve.
    Actually after
    > playing
    > with the weekend and today I know how to do most of the
    stuff but I have
    > one
    > single problem. So here is my question, where should I
    provide my custom
    > drawing logic? If I do it in the updateDisplayList
    inside the class
    > extending
    > UIComponent it works, however I thought that it would be
    a better practice
    > to
    > do it using programmatic skins, that way I could provide
    different skin
    > themes
    > for my component set.
    These aren't mutually exclusive. When you provide a skin with
    a
    TypeSelector, you have to add it to the display list
    somewhere, and this is
    typically done in updateDisplayList or addChildren. I prefer
    to do it in
    updateDisplayList, because you can then change it if the
    style changes.
    > The problem is that I can't make the programmatic work
    in this scenario. I
    > tried instantiating the custom programmatic skin during
    the
    > updateDisplayList
    > of the LiteButton component and adding it to my display
    object via
    > addChild but
    > that didn't do anything.
    Exactly what did you do?
    > I also tried creating a "default.css" stylesheet and
    > tried to use ClassReference as I would normally do to
    skin an already
    > existing
    > component (or composite component as well) but that
    didn't do anything
    > either.
    I've never had any problem using an approach similar to
    this...but I will
    say that I couldn't see any advantage in creating a
    default.css style sheet,
    since it's not really default in the way that the one that
    comes with Flex
    is. It's much more obvious to anyone using your component
    what's going on
    there if you create a style sheet where they're likely to
    spot it.
    > So how do I apply programmatic skins with the default
    look for custom
    > drawn
    > components?
    It seems like your approach is fine, but maybe you've made a
    mistake in your
    implementation.
    > I could do it inside the updateDisplayList of the
    LiteButton class
    > extending
    > UIComponent but again I would like to provide different
    theme sets for my
    > components so it makes sense using programmatic skins.
    You might want to consider also adding an instance of
    HaloBorder to your
    component. That brings a lot of functionality with it.
    HTH;
    Amy

  • Always, when i start Firefox there is a CSS error (cross in red button)

    Could not read chrome manifest file '/Applications/Firefox.app/Contents/MacOS/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/chrome.manifest'.
    Waarschuwing: ‘/’ gevonden waar declaratie verwacht. Naar volgende declaratie gesprongen.
    Bronbestand: chrome://foxtab/skin/main.css
    Regel: 15
    Waarschuwing: ‘/’ gevonden waar declaratie verwacht. Naar volgende declaratie gesprongen.
    Bronbestand: chrome://foxtab/skin/main.css
    Regel: 23
    Waarschuwing: ‘/’ gevonden waar declaratie verwacht. Naar volgende declaratie gesprongen.
    Bronbestand: chrome://foxtab/skin/main.css
    Regel: 74
    Waarschuwing: ‘/’ gevonden waar declaratie verwacht. Naar volgende declaratie gesprongen.
    Bronbestand: chrome://foxtab/skin/main.css
    Regel: 75
    Fout: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIWebNavigation.sessionHistory]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: chrome://global/content/bindings/browser.xml :: :: line 755" data: no]
    Bronbestand: chrome://global/content/bindings/browser.xml
    Regel: 762
    Fout: Components.classes['@mozilla.org/extensions/manager;1'] is undefined
    Bronbestand: chrome://threeships/content/overlay.js
    Regel: 70
    OpenGL LayerManager Initialized Succesfully.
    Version: 2.1 NVIDIA-1.6.36
    Vendor: NVIDIA Corporation
    Renderer: NVIDIA GeForce 9400 OpenGL Engine
    FBO Texture Target: TEXTURE_2D
    Waarschuwing: Onbekende eigenschap ‘xpadding-left’. Declaratie genegeerd.
    Bronbestand: chrome://foxtab/skin/window.css
    Regel: 18
    Waarschuwing: ‘/’ gevonden waar declaratie verwacht. Naar volgende declaratie gesprongen.
    Bronbestand: chrome://foxtab/skin/window.css
    Regel: 52
    Waarschuwing: Fout tijdens het parsen van waarde voor ‘text-align’. Declaratie genegeerd.
    Bronbestand: chrome://foxtab/skin/window.css
    Regel: 159
    OpenGL LayerManager Initialized Succesfully.
    Version: 2.1 NVIDIA-1.6.36
    Vendor: NVIDIA Corporation
    Renderer: NVIDIA GeForce 9400 OpenGL Engine
    FBO Texture Target: TEXTURE_2D

    Add-on disabled but still error and warning notices when I open a site. I did open for Example Apple site en this is what I got in the foutconsole:
    Fout: Components.classes['@mozilla.org/extensions/manager;1'] is undefined
    Bronbestand: chrome://threeships/content/overlay.js
    Regel: 70
    Fout: AC.Tracking.pageName is not a function
    Bronbestand: http://www.apple.com/nl/
    Regel: 86
    And a lot of warnings like this:
    Waarschuwing: Onbekende eigenschap ‘zoom’. Declaratie genegeerd.
    Bronbestand: http://images.apple.com/global/nav/styles/navigation.css
    Regel: 10
    Waarschuwing: Fout tijdens het parsen van waarde voor ‘filter’. Declaratie genegeerd.
    Bronbestand: http://images.apple.com/global/nav/styles/navigation.css
    Regel: 20

  • How to deploy the skins in ADF ?

    Hi All,
    I am using JDeveloper 11.1.1.4
    My Scenario is I have Project A with some CSS(skins) and bounded task flows.I deploy as ADF Library JAR  .
    Now I attach the Project A Jar to Project B.I can access the bounded task flows but the CSS(skins) styles are not  displaying .
    I read below link ,
    Creating the Source Files for an ADF Skin
    My Project didn't have the META-INF folder whether I need to create it and move the css before deploy ?
    But If I try like I got below error ?
    java.io.FileNotFoundException: Unable to locate style sheet "META-INF/skins/Style.css" in local styles directory (C:\Users\arun.durairaj\AppData\Roaming\JDeveloper\system11.1.1.4.37.59.23\DefaultDomain\servers\DefaultServer\tmp\_WL_user\PartialSubmitAndAutoSubmit\27yz43\public\adf\styles), or on the class path.
    Please be sure that this style sheet is installed.
    Thanks. ..

    Check out this article http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html
    And http://www.oracle.com/technetwork/developer-tools/adf/learnmore/august2011-otn-harvest-457288.pdf
    Which shows the work flow.
    Timo

  • ADF - customize skin issue with Weblogic 10.0

    we have defind following custimized skin in the adf-faces-skins.xml
    it's works pretty well in jdeveloper,
    but after deploying to weblogic 10, the custimzed css file is missing
    any hints?
    <skin>
    <id>mycompany.desktop</id>
    <family>abcCompany</family>
    <render-kit-id>oracle.adf.desktop</render-kit-id>
    <style-sheet-name>abcCompany/skin/abc.css</style-sheet-name>
    </skin>

    Hi,
    if the CSS is in public_html/abcComapny/skin directory then it should be displayed unless the adf-faces-config.xml doesn't reference abcCompany as a skin family
    Frank

  • Override Link Class in "Other CSS" Box

    Hi -is there a way to override the class of a link in the "other styles" box for a component?
    My example is this:
    I use a skin with a dark header. The text for the widgets in the header are white (Administration, etc)
    The body of the site is white.
    When I put another widget that uses the same class (x106 in this case) it makes the link color white and you can't see it on the page.
    I've tried many ways to go into the "other CSS" box (under the style tab) and none seem to work.
    Thanks.

    Hi - thanks.
    That's not exactly the problem. I know what the classes are (x106 and x107).
    The problem is that I am trying to use two "widgets" or ADF components (like the login/logout or My Favorites links) on two different background colors.
    I cannot get into the code of the ADF component to tell it to use a different class.
    Also, if I change the class (x106 for example) it changes ALL of them.
    What I think I need is a way to override the CSS for the link in the "Other CSS" box for that component somehow (I've tried many things - can't figure it out and not sure it can be done). I would think that this would override the class in the skin.
    In short - what I'm asking, I guess, is this.
    IS there a way to override the CSS LINK color for an ADF template component - OTHER THAN in the Skin's CSS file.
    Thanks!

  • Editing flex CSS in FB on Eclipse

    I have FB3 installed on Eclipse, which has been working
    nicely until I started messing around with skins and CSS. Eclipse
    wants to validate CSS as normal CSS, so it shows an error on every
    line of my flex skin CSS file ('Property xxx doesn't exist'). What
    do I have to change so that all these errors go away? There are
    over 600 of them, and it's making it impossible to find real errors
    in the project that matter.
    Also would be sweet to have some code hinting for flex CSS
    syntax.
    I do a lot of normal html/css work in eclipse, so I don't
    want to break CSS error checking in general. I'm using Aptana for
    PHP/JS/CSS, if that helps... I've tried using other installed CSS
    editors, including the one that installed with Flex, but all same
    results.
    Please help... this is driving me nuts. Thanks in
    advance.

    FB only supports 3.2, just 3.1.1.
    Tracy

  • Applying skin to popup windows

    We have extended the classic skin (added CSS and javascript stuff) to define styles
    for our content that match the look and feel of the classic skin, etc. When our
    portal renders, the portal framework inserts link and script tags in the head
    for each of the css and js files defined in the skin, which is great. I'm wondering
    if there is a way (tag, whatever) to similarly "apply" the skin to windows popped
    up from the portal, so that our popups also adopt the same look as our portal
    and portal content. Any ideas? Thanks.

    Phil,
    I'm sure this must have been worked around ????
    No, but the solution is as follows:
    1. Be advised that passing character data around (other than simple primary keys) in URLs is inadvisable as we've gone over many times.
    2. You cannot pass colons in the argument value component of an f?p URL. Encoding them during HTTP transport is not a remedy.
    3. To pass commas in the argument value component of an f?p URL, you can encode the entire value between backslashes. When you do this in javascript, the javascript rules require you to escape the backslash with a backslash, so an argument value of A,B would be represented as \\A,B\\.
    Scott

  • Skin for iphone, pictures are not loaded

    Dear community,
    i'm testing an iphone skin for a simple mobile browser application in a desktop browser. The pictures are not loaded and I cannot find the reason:
    JDeveloper 11.1.1.5.0
    Tree in Web Content:
    =============
    images/backButton.png
    images/toolButton.png
    skins/iphone.css
    page.jsp
    trinidad-config.xml
    ============
    <?xml version="1.0" encoding="windows-1252"?>
    <trinidad-config xmlns="http://myfaces.apache.org/trinidad/config">
    <skin-family>iPhonewebkit</skin-family>
    </trinidad-config>
    trinidad-skins.xml
    ===========
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <skins xmlns="http://myfaces.apache.org/trinidad/skin">
    <skin>
    <id>iphone</id>
    <family>iPhonewebkit</family>
    <render-kit-id>org.apache.myfaces.trinidad.desktop</render-kit-id>
    <style-sheet-name> skins/iphone.css </style-sheet-name>
    </skin>
    </skins>
    iphone.css
    ======
    .button {
    position: absolute !important;
    overflow: hidden !important;
    top: 8px !important;
    right: 6px !important;
    margin: 0 !important;
    border-width: 0 5px !important;
    padding: 0 3px !important;
    width: auto !important;
    height: 30px !important;
    line-height: 30px !important;
    font-family: inherit !important;
    font-size: 12px !important;
    font-weight: bold !important;
    color: #FFFFFF !important;
    text-shadow: rgba(0, 0, 0, 0.6) 0px -1px 0 !important;
    text-overflow: ellipsis !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    background: none !important;
    -webkit-border-image: url(/images/toolButton.png) 0 5 0 5 !important;
    .backButton {
    position: absolute !important;
    overflow: hidden !important;
    top: 8px !important;
    left: 6px !important;
    margin: 0 !important;
    height: 30px !important;
    width: auto !important;
    line-height: 30px !important;
    font-family: inherit !important;
    font-size: 12px !important;
    font-weight: bold !important;
    color: #FFFFFF !important;
    text-shadow: rgba(0, 0, 0, 0.6) 0px -1px 0 !important;
    text-overflow: ellipsis !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    background: none !important;
    -webkit-border-image: url(/images/toolButton.png) 0 5 0 5 !important;
    padding: 0 !important;
    border-width: 0 8px 0 14px !important;
    -webkit-border-image: url(/images/backButton.png) 0 8 0 14 !important;
    I have tried also relative URLs by moving images directory into skins directory, but without success. What am I doing wrong?
    Thanks for support,
    DF
    Edited by: 907283 on 11.01.2012 01:31
    Edited tree

    Sorry, I forgot to paste it:
    <tr:messages/><h:form>
    <tr:panelHeader text="Display Items" styleClass="toolbar">
    <tr:commandButton text="Back" action="start"
    styleClass="backButton"/>
    <tr:commandButton text="Show Details" action="detail"
    styleClass="button"/>
    </tr:panelHeader>
    toolbar definition in css:
    .toolbar {
    box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    border-bottom: 1px solid #2d3642 !important;
    border-top: 1px solid #000000 !important;
    padding: 10px !important;
    height: 45px !important;
    background: url(/images/toolbar.png) #6d84a2 repeat-x !important;
    display: block !important;
    .toolbar > h1 {
    position: absolute !important;
    overflow: hidden !important;
    left: 50% !important;
    margin: 1px 0 0 -75px !important;
    height: 45px !important;
    font-size: 20px !important;
    width: 150px !important;
    font-weight: bold !important;
    text-shadow: rgba(0, 0, 0, 0.4) 0px -1px 0 !important;
    text-align: center !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    color: #FFFFFF !important;
    border-bottom: none !important;
    Thanks!

  • How to custom skin PanelTabbed and Popup components in ORACLE ADF?

    Hi,
    I'm new to this framework. I'm trying to custom skin ORACLE ADF tab and popeup components to match with a design provided by my client. But I'm facing challenges in styling them. Does anybody did this before? Or do we have any sample code on the web to follow. Please Guide.
    Thanks,
    Srini

    Hi.
    I think that everyone did it before . Take a look into official doc:
    Creating and Managing Skins - 11g Release 1 (11.1.1.7.0)
    Selectors for Skinning ADF Faces Components
    The last link have the full list of Skin Selectors (CSS properties that you can change) of the ADF Components.
    There is also an IDE helpful to create Skin call ADF Skin Editor: Application Development Framework Downloads
    I hope it helps.
    Regards.

  • Extending Mist FX Skin

    I have a requirement to extend 'Mist FX' on WebCenter Spaces and customize the error/warning message using bundle.
    Would it be possible to extend 'Mist FX' skin without coping the content from whitefx.css?
    trinidad-skins.xml content for custom skin look like,
    <skin>
    <id>own.mistfx.custom.desktop</id>
    <family>Own-MistFX</family>
    <render-kit-id>org.apache.myfaces.trinidad.desktop</render-kit-id>
    <style-sheet-name>custom/spaces/skins/sni-mistfx/own-mistfx.css</style-sheet-name>
    <extends>whitefx.desktop</extends>
    <bundle-name>bundles.OwnSkinMsgBundle</bundle-name>
    </skin>
    Currently own-mistfx.css doesn't override anything from mist fx. And bundles.OwnSkinMsgBundle will have customized message like
    public Object[][] getContents()
    return new Object[][]
    { "af_message.TIP_FATAL", "Warning" },
    { "af_messages.TIP_FATAL", "Warning" },
    { "af_message.TIP_ERROR", "Warning" },
    { "af_messages.TIP_ERROR", "Warning" },
    { "af_document.LABEL_SPLASH_SCREEN",
    "Please wait, the page is loading..." }, };
    Main requirement, do not want to copy whitefx.css content to custom one. I have to update the custom css file whenever apply patch or upgrade, which is not easy to maintain.
    Please advice.
    Thanks
    JP

    Useful discussion. We are trying something similar - i.e introducing a new skin that extends an existing one; namely Mist FX (i.e whitefx).
    Our trinidad-skins.xml in our customisation project looks like:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <skins xmlns="http://myfaces.apache.org/trinidad/skin">
    <!-- Start of DO-NOT-MODIFY section -->
    <skin>
    <id>webcenter.desktop</id>
    <family>webcenter</family>
    <render-kit-id>org.apache.myfaces.trinidad.desktop</render-kit-id>
    <style-sheet-name>adf/spaces/skins/additions/webcenter-skin-additions.css</style-sheet-name>
    <extends>blafplus-rich.desktop</extends>
    </skin>
    <skin>
    <id>webcenter-fusion.desktop</id>
    <family>webcenter-fusion</family>
    <render-kit-id>org.apache.myfaces.trinidad.desktop</render-kit-id>
    <style-sheet-name>adf/spaces/skins/fusion/fusion.css</style-sheet-name>
    <extends>fusion.desktop</extends>
    </skin>
    <!-- End of DO-NOT-MODIFY section-->
    <!-- Custom Skins -->
    <skin>
    <id>new-2011-a.custom.desktop</id>
    <family>new-2011-a</family>
    <render-kit-id>org.apache.myfaces.trinidad.desktop</render-kit-id>
    <style-sheet-name>custom/spaces/skins/new/new.css</style-sheet-name>
    <extends>whitefx.desktop</extends>
    </skin>
    </skins>
    ...and although we are seeing our customised colours etc, we are not seeing any of our replacement images. It seems to work a bit if we extend fusion.desktop instead of whitefx,desktop
    Very strange - as if the generated CSS classes differ between skins.
    Trinidad is a bugger of a thing...

  • Skin.properties

    Hi All,
    I need to add a CSS reference to the portal. According to documentation, I added
    reference to to CSS in skin.properties. When I start that application it is not
    able to find the style sheet.
    Weblogic Server Console error is
    <Mar 16, 2004 4:06:36 PM CST> <Error> <netuix> <BEA-420028> <The skin resource
    at base path /framework/skins/intranet/css/style1.css could not be found.>
    I have tried redeploying , reopening workshop and restarting the server.
    Any help appreciated.

    Hi Satish,
    Try checking the value of the property
    link.search.path
    in skin.properties and combine it with the value you've given to
    link.body.href
    for your css, and make sure the combined path matches the location of your css
    on the file system.
    "satish patil" <[email protected]> wrote:
    >
    Hi All,
    I need to add a CSS reference to the portal. According to documentation,
    I added
    reference to to CSS in skin.properties. When I start that application
    it is not
    able to find the style sheet.
    Weblogic Server Console error is
    <Mar 16, 2004 4:06:36 PM CST> <Error> <netuix> <BEA-420028> <The skin
    resource
    at base path /framework/skins/intranet/css/style1.css could not be found.>
    I have tried redeploying , reopening workshop and restarting the server.
    Any help appreciated.

Maybe you are looking for

  • Function module to get BOM which WOULD be created if I open a production

    Is there a function module to get the BOM which WOULD be created if I open a production order? note that I don't have the produciton order created. I already tried with the FM CS_BOM_EXPL_MAT_V2 and CSAP_MAT_BOM_READ. I debuged the CO01, but I did no

  • Cannot record to tape

    Hello. I have a Canon Optura 60 mini dv camera. I can digitize and edit footage fine, but I cannot print to tape. I get no video image on my camcorder. I've tried all the suggested methods to troubleshoot this problem (refreshing av devices, show all

  • BAD ora-1461workaround

    This note applies to Oracle bug 1400539 which results in ORA-1461 error. This Oracle error should not occur - it is an Oracle bug as described in bug 1400539. The Oracle support workaround recommendation to set the client NLS_LANG to UTF8 results in

  • Phone no longer rings

    Since I've bought my swr30 my phone no longer rings. I've the volume up to high on both devices. Nothing is set to silent. I don't understand what's happening. Does anyone have an idea on what might be the issue? I've an Xperia z3. Thanks for your ti

  • Bridge CS6 won't delete images.

    Having a problem where Adobe CS6 Image Downloader isn't deleting images from the card. Once the download is complete the tool just shuts off, no verification, no asking for delete verification. I've tried mulitple cards and readers same results. Help