Tab color

I am trying to change the tab color of a user defined tab based off of the JSPTabContainer for Portal server 6.3.
I followed the instructions for Changing the Color to Tabs in the Desktop Customization Guide and changed the titeBarColor and tabColor property but the tab still remains purple. I have changed other attributes on this theme so I know it's the right theme.
Thanks
Shirley

The top level display profile has the definition of each themes. the tab color will be different for every theme. i changed the color of the tab by editing the attributed of the default theme . You do the same , i dont exactly remember the name of the attribute , but it works
HTH
kimi

Similar Messages

  • Unable to customise Tab (color) in Portal Theme through Theme Editor

    Hi Everyone ,
    I m working  on Themes in Portal 7.0 . I have customised the theme but dont know why i m not able to customise Tabs (Color) .
    Like When u click on System Administration ->System Configuration ->system landcape -> (There is second menu with Browse & Search ) and Overview of System Landscape pic in the Content area.
    Here Browse / Search / Overview are still apperaing in black color  .. i want to edit these and give some background color to that panel as well

    Hi Shivani,
    You would be able to change the colors on the tab by changing the following in the Theme Editor
    1. Old BSP Tabstrip under Component-Specific Styles
    2. Tabstrip element under Complex Elements
    The first one is to do with your requirement of changing the colors of the tab shown in the standard portal iViews. The webdynpro tabstrips would respect the settings under the Complex Elements.
    Well here's a caveat. Once you specify what colors you want for the tabs, you would also have to create images (Transition images, Starter images, End images) for the tabs in question so that they blend into the transitions smoothly.
    Hope it helps,
    Prathamesh

  • Change selected tab color theme

    I'm trying to make a small adjustment to my color theme. If you have used X-Chat Aqua, you'll notice that in the Blue OS X color theme, highlighted tabs are in blue, and easily identified. However, when the color scheme is grey, highlighted tabs are in a slightly darker grey, so I have to tilt my display back and forth to tell which tab is the active one. I prefer the grey theme, but want to change the highlighting color of the active tab. This does not have anything to do with the highlighting color in the OS X settings as I already have that set to turquoise. Does anyone know how to change this? Someone suggested Magnifique, but that seems like it will only install a whole new color theme, not let me change individual settings as I desire. It seems as though I can create my own color scheme, but that I would have to start from scratch, when really I'd want to start with the OS X graphite theme, because that one works just fine for me, with the exception of the active tab color for certain applications. Anyone know how to solve this one?
    Thanks for the help.

    I'm trying to make a small adjustment to my color theme. If you have used X-Chat Aqua, you'll notice that in the Blue OS X color theme, highlighted tabs are in blue, and easily identified. However, when the color scheme is grey, highlighted tabs are in a slightly darker grey, so I have to tilt my display back and forth to tell which tab is the active one. I prefer the grey theme, but want to change the highlighting color of the active tab. This does not have anything to do with the highlighting color in the OS X settings as I already have that set to turquoise. Does anyone know how to change this? Someone suggested Magnifique, but that seems like it will only install a whole new color theme, not let me change individual settings as I desire. It seems as though I can create my own color scheme, but that I would have to start from scratch, when really I'd want to start with the OS X graphite theme, because that one works just fine for me, with the exception of the active tab color for certain applications. Anyone know how to solve this one?
    Thanks for the help.

  • How to change tab colors

    I am trying to change my tab colors to match my pink window color. I '''do not''' want to have to download some entire whole new theme by going to addons.mozilla or whatever that site is! I can't believe I cannot just change my tabs color by going to tools. This is ridiculous. Also, i would like to change the picture for behind my tool bars and my search bar. I have it set to the ladybugs one but I have grown tired of it. i did not install the ladybugs background, I simply just clicked a few things in I think tools, but I can't seem to do it again. I will not install an entire new theme just to change the ladybugs behind my tool bars.

    You can uninstall your current Persona and revert to the Default theme (Tools > Add-ons > Themes).
    See [[Personas]] and [[Using themes with Firefox]]
    There are extensions that can change the tab colors or you can do a search on the userstyles.org site for code that you can use in userChrome.css.
    See also http://www.linnhe2.free-online.co.uk/firefox/chrome.html#Tab%20colours

  • How to Change  tab colors individually for SuperTabNavigator

    Hi All,
                I am using mccune SuperTabNavigator. if i change backgroundColor of the SuperTabNavigator
                it is changing the color of all tabs how many have in SuperTabNavigator .
                but i need to change color of each individual tab. then only i can set the different color to each tab.
               how can i do this.   
    Can any help me ?
    thanks
    Raghu

    You can uninstall your current Persona and revert to the Default theme (Tools > Add-ons > Themes).
    See [[Personas]] and [[Using themes with Firefox]]
    There are extensions that can change the tab colors or you can do a search on the userstyles.org site for code that you can use in userChrome.css.
    See also http://www.linnhe2.free-online.co.uk/firefox/chrome.html#Tab%20colours

  • Change Excel sheet tab color using Open XML dll

    Hi,
    I want to change the sheet tab color of an excel Xlsx  document. I am using the following code but it does not set the sheet color. I get object reference exception when I set the sheet tab color.
    public static string filepath = @"C:\Test\Book1.xlsx";
    private static void ChangeSheetcolor()
    try
    using (SpreadsheetDocument spreadSheetDocument = SpreadsheetDocument.Open(filepath, false))
    WorkbookPart workbookPart = spreadSheetDocument.WorkbookPart;
    IEnumerable<Sheet> sheets = spreadSheetDocument.WorkbookPart.Workbook.GetFirstChild<Sheets>().Elements<Sheet>();
    //my code
    WorksheetPart worksheetPart =
    GetWorksheetPartByName(spreadSheetDocument, "Sheet1");
    if (worksheetPart != null)
    // worksheetPart.Worksheet.SheetProperties.TabColor.Rgb = DocumentFormat.OpenXml.HexBinaryValue.FromString("Red");
    worksheetPart.Worksheet.SheetProperties.TabColor.Rgb = DocumentFormat.OpenXml.HexBinaryValue.FromString("#CCCCCC");
    // Save the worksheet.
    worksheetPart.Worksheet.Save();
    catch (Exception ex)
    private static WorksheetPart
    GetWorksheetPartByName(SpreadsheetDocument document,
    string sheetName)
    IEnumerable<Sheet> sheets =
    document.WorkbookPart.Workbook.GetFirstChild<Sheets>().
    Elements<Sheet>().Where(s => s.Name == sheetName);
    if (sheets.Count() == 0)
    //does not exist
    return null;
    string relationshipId = sheets.First().Id.Value;
    WorksheetPart worksheetPart = (WorksheetPart)
    document.WorkbookPart.GetPartById(relationshipId);
    return worksheetPart;
    How to change the sheet tab color using Open XML dlls.
    Thanks
    Ashok

    Hi J_Prasanna,
    I'm afraid that it's not possible with OpenXML SDK, but it's possible if you use Excel PIA along with Internet Explorer. Use the Internet Explorer COM object to render the HTML content, then copy the document, use the Paste method of the Worksheet object
    to paste the text with format.
    Dim IE As Object
    Set IE = CreateObject("InternetExplorer.Application")
    With IE
    .Visible = False
    .Navigate "about:blank"
    .document.body.InnerHTML = Sheets("Sheet1").Range("A1").Value
    .document.body.createtextrange.execCommand "Copy"
    ActiveSheet.Paste Destination:=Sheets("Sheet1").Range("A1")
    .Quit
    End With
    The code is similar if you use managed project.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Changing Tab Color

    I have been struggling for a while with trying to change the color of a tab, after it's been displayed.  Some background is that i have a multi tab window.  If something happens in one of the windows, I want to bring attention to that tab and color the tab red.
    I am dynamically adding the tabs to the tab navigator from  database table.  I read them in with their data and when I have them all I build up the tab navigator.  My TabObject is really a Canvas that I have extended.
                    private function AddTabsToTabNavigator():void
                        var lIsFirst:Boolean = true;
                        for each ( var lTab:TabHandler in mTabDictionary )
                            // Create our Frame Canvas that we are going to add to the Tab Navigator
                            var lTabItem:TabObject         = new TabObject();
                            lTabItem.name                  = lTab.GetTabName();
                            lTabItem.SetRefreshTime(lTab.GetTabRefreshInterval());
    //lTabItem.setStyle( "tabStyleName", "tabStyleGreen" );
    //lTabItem.styleName = Constants.TAB_STYLE_GREEN;
    //TAB_NAVIGATOR.invalidateDisplayList();
    lTabItem.setStyle( "backgroundColor", "green");                       
                            TAB_NAVIGATOR.addChild( lTabItem );
    I've tried a number of things comented out here.  I have a CSS and I can set the initial color of the tab no problem.
    mx|TabNavigator
        tab-width: 110;
        horizontal-gap: 3;
        tabStyleName: tabStyleYellow;
        selectedTabTextStyleName: tabSelectedText;
    .tabStyleYellow
        font-size: 10;
        corner-radius: 10;
        fill-colors: yellow, #FFFFFF; /* #9D9DA0, #FFFFFF */
        fill-alphas: 1.0, 1.0;
        background-color: #FFFFFF; /*6486AC*/
    But I don't see how I can go back and change the tab color.   Am I missing something
    Here is another way I've tried.
                    public function ChangeTabStyle( aTabName:String, aStyleName:String ):void
                         var lActiveTab:TabObject = TAB_NAVIGATOR.getChildByName( aTabName ) as TabObject;
    //                    var lTab:DisplayObject = TAB_NAVIGATOR.getChildAt( mCurrentTabSelected ) as Tab
                        if ( null != lActiveTab )
                            lActiveTab.setStyle( "tabStyleName", "tabStyleBlue" );
    //                        lActiveTab.styleName = aStyleName;
    //                        lActiveTab.setStyle("fillColors", ["red", "white"]);
    //                        lActiveTab.setStyle("backgroundColor", "red");

    I have been struggling for a while with trying to change the color of a tab, after it's been displayed.  Some background is that i have a multi tab window.  If something happens in one of the windows, I want to bring attention to that tab and color the tab red.
    I am dynamically adding the tabs to the tab navigator from  database table.  I read them in with their data and when I have them all I build up the tab navigator.  My TabObject is really a Canvas that I have extended.
                    private function AddTabsToTabNavigator():void
                        var lIsFirst:Boolean = true;
                        for each ( var lTab:TabHandler in mTabDictionary )
                            // Create our Frame Canvas that we are going to add to the Tab Navigator
                            var lTabItem:TabObject         = new TabObject();
                            lTabItem.name                  = lTab.GetTabName();
                            lTabItem.SetRefreshTime(lTab.GetTabRefreshInterval());
    //lTabItem.setStyle( "tabStyleName", "tabStyleGreen" );
    //lTabItem.styleName = Constants.TAB_STYLE_GREEN;
    //TAB_NAVIGATOR.invalidateDisplayList();
    lTabItem.setStyle( "backgroundColor", "green");                       
                            TAB_NAVIGATOR.addChild( lTabItem );
    I've tried a number of things comented out here.  I have a CSS and I can set the initial color of the tab no problem.
    mx|TabNavigator
        tab-width: 110;
        horizontal-gap: 3;
        tabStyleName: tabStyleYellow;
        selectedTabTextStyleName: tabSelectedText;
    .tabStyleYellow
        font-size: 10;
        corner-radius: 10;
        fill-colors: yellow, #FFFFFF; /* #9D9DA0, #FFFFFF */
        fill-alphas: 1.0, 1.0;
        background-color: #FFFFFF; /*6486AC*/
    But I don't see how I can go back and change the tab color.   Am I missing something
    Here is another way I've tried.
                    public function ChangeTabStyle( aTabName:String, aStyleName:String ):void
                         var lActiveTab:TabObject = TAB_NAVIGATOR.getChildByName( aTabName ) as TabObject;
    //                    var lTab:DisplayObject = TAB_NAVIGATOR.getChildAt( mCurrentTabSelected ) as Tab
                        if ( null != lActiveTab )
                            lActiveTab.setStyle( "tabStyleName", "tabStyleBlue" );
    //                        lActiveTab.styleName = aStyleName;
    //                        lActiveTab.setStyle("fillColors", ["red", "white"]);
    //                        lActiveTab.setStyle("backgroundColor", "red");

  • Changing Tab colors in a flash form

    I am trying to change the tab color inside a form... I can
    change the highlighted color but I can't change the ones that are
    not selected...
    I have tried using fillColors:##343434, ##FFFFFF and It works
    for the selected tab, but the others tab have the default color on
    it... how can I change that color?

    Hi Ahsan-chohan,
    Kindly post this query in Acrobat forums:Acrobat
    Regards,
    Florence

  • Changing Tab color of SuperTabNavigator

    Hi .
          How to change tab color of the SuperTabNavigator.
    Can any help me?
    thanks
    Raghu.

    No,
    Modifying the CSS files directly is not a viable option. Everytime someone saves the theme, the CSS files will be overwritten.
    Refer to this for a possible solution.
    Unleash the power of the Portal Theme Editor
    Thanks
    Prashant

  • Change the tab color

    Hi,
    i'm unable to change the tab color of panelTabbed item, i've tried the following in a css sheet:
    af|panelTabbed::tab:selected {
    font-style:italic;
    background-image: url("../Images/section_label_body.jpg");
    border-bottom-color: red;
    border-color: Fuchsia ;
    border-top-color: Green;
    outline-color: Yellow;
    color: Aqua;
    font style and background image seems to work (which tells me that i have the right skin selector) but non of the rest is changing the color of the tab.
    does anyone knows how to do that???????
    Note that when i say tab i mean the tabs header, where you click on it and it opens the tab body.
    Thanks,
    Alain.

    Hi,
    best tip I can give is:
    Disable content compression for the generated HTML output of the ADF Faces page. This will change the style class names from being obfuscated, which we use to reduce the download size of pages. Astyle class that shows as .x3s at runtime might show as af_inputText_content after this. The af_inputText_content then is waht you need to discover and translate into a valid skin selector.
    <context-param>
    <param-name>org.apache.myfaces.trinidad.DISABLE_CONTENT_COMPRESSION</param-name>
    <param-value>true</param-value>
    </context-param>
    Run the ADF Faces application you want to discover the skin selector for in FF with Firebug and the WebDeveloper plugin installed.
    Select the tab and look at the skin selectors displayed as the style class properties. If you find someting like af_panelTabbed_tab then this translates to af|panelTabbed::tab. If you see something like .p_selected then this means its a pseudo class that needs to be appended to the selector like af|panelTabbed::tab:selected.
    Use Firebug in inspect mode and select the tab. This shows you all the selectors as style classes in the generated HTML output. Open the Web Developer plugin to edit CSS on the page. Then add the style class selector you found, e.g. .af_panelTabbed_tab (note the leading dot ".") or with a curly brace
    .af_panelTabbed_tab{ ... }
    Within the cury braces, type the CSS you want to set and see how it behaves. You may have to play a bit to exactly find the style class and css you want, but assuming that the follwing works
    .af_panelTabbed_tab .p_selected{background-color:red}
    then this translates to teh following skin selection to be copied to the CSS skin file
    af|panelTabbed::tab:selected{background-color:red}
    Note that this backward translation from style class to skin selector needs some patience. However, experience proves to be the best when cooking and so it does for skinning.
    Hope this helps
    Frank

  • Bridge Filter Tab - Color Profile

    I have an iMac (Mountain Lion OS X
    10.8.4) Nikon NX2, Nikon
    D800E camera, and  Photoshop CS6. 
    Most of the 100 or so photos I
    have transferred to my Mac by (USB  and
    also card) are RAW NEF at approx. 40MB a file.    (Lossless compression)   Most all of these pictures  are in Color Space Adobe RGB, because that is
    what I set up on the camera. 
    When in Bridge  > Filter Tab > Color Profile >  [this says that the majority of the NEF
    photos , in the camera’s Color Profile Space of Adobe RGB, are not in this
    color space, but the color profile of “UNTAGGED!”  I’ve studied all the preferences and options of
    Bridge and I am not 100% that I know what to change so these photos will show
    in the color space I want them to and I don’t want to make a mistake by
    clicking something that I can’t undo so…
    How do I
    get these photos (which I guess are showing up in Bridge as sRGB color space)
    to show up in Adobe RGB.  And if I can
    change this, what could be the good or bad consequences of changing to Adobe
    RBG?
    There is
    also a Thumbnail  Option – “Generate 100%
    previews.  Will checking this  show the previews at 100%?  And what consequences does using this have?
    Thank You Very Much For Your Help,
    Thank You,
    Sandy

    I looked at my canon raw files and they also say untagged. So Apparently the color profile does not get saved in the side car file. Which maybe a good thing. The raw file is suppose to be your negative, in that it doesn't need any color profile until you do something with it in another file format that does support color profiles.
    The generate previews will use up more drive space to speed up previewing them. But in general, I never really needed it. So it boils down to what type of system do you have, ex. plenty of drive space, speed of cpu, amount of ram, etc.

  • Updating a JTabbedPane's selected tab color dynamically

    Hi
    I have set the selected tab color for my JTabbedPane
    using:
    UIManager.put("TabbedPane.selected", Color.RED);Now I would like to change the color dynamically to green.
    However, just calling:
    UIManager.put("TabbedPane.selected", Color.GREEN);doesn't work.
    It seems that if the JTabbedPane is visible while I change the color through the UIManager, it has no effect.
    On the other hand, all the other JTabbedPanes in my application (which are not visible - in hidden dialogs), are effected.
    How can I effect ALL the JTabbedPanes in my application at the same time?

    Try to call
    SwingUtilities.updateComponentTreeUI(selectedPane);
    best regards
    Stas

  • Tab Color on Forms 9i

    in the form builder i change Tab color and its seems ok , but when i run the form , the header of the tab canvas still gray for the active tab and green for the inactive tabs ...???

    Tom,
    the oracle.forms.demos.bigraph.FormsGraph bean is not supposed to work with the Java Importer but to be added to a Bean container in Forms.
    FRM-13010 seems to me as a Java importer error. If you add oracle.forms.demos.bigraph.FormsGraph to the implementation class of a Bean Item, then the error message you probably get is FRM-13008 "Cannot find Java Bean". The problem caused by this message is that you cannot open the the Bean's canvas without first removing the implementation class entry. To fix this problem add the absolute file location of FormsGraph.jar to the FORMS90_BUILDER_CLASSPATH registry variable before starting Forms Developer. (I usually work without setting this variable and instead deal with the problem mentioned above ;-) )
    Frank
    Ps.: Check the Forms BI Bean demo for more implementation detail

  • Different labview tab colors

    I have a tab control and want to make each tab a unique color. When I try to set the color of a tab, it sets all of the tabs. Is there a way to individually set the color of each tab?

    You are right you cant use tab controls "color" property when "multiple tab colors" is set to true. it works only when  "multiple tab colors" is set to False. may be you need to do it as shown in example attached.
    Tushar Jambhekar
    [email protected]
    Jambhekar Automation Solutions
    LabVIEW Consultancy, LabVIEW Training
    Rent a LabVIEW Developer, My Blog
    Attachments:
    multitabcolors.vi ‏11 KB

  • Firefox tab and navigation tab colors

    I'm using firefox 4 is there a way to remove the ugly opaque tabs and I want to change the navigation tab colors to red. Can I do that? If so, how?

    Hi Sean,
    Try this:
    # Type about:config in the address bar
    # Click ''I'll be careful, I promise'' if prompted
    # In the Filter input field type ''startup''
    # Double click on startup.homepage_override_url
    # Delete the text string and click ''OK''
    # Close Firefox and reopen the window to verify that it has worked.
    It's a bit more "technical" than most people want, but it should work.

Maybe you are looking for