top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How do I change the color of inactive fields in Informatica's edit windows?

+2 votes
516 views

In Informatica Designer and Workflow Manager, when the user opens a transformation/session for edit without having it checked out, all the fields are displayed in a really low contrast shade of grey against the white background.

Has anyone found a way to change the color?

posted Mar 27, 2014 by Madhavi Kumari

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

0 votes

Here is how I fixed it on windows XP:

  1. Right click on desktop background - select properties. This is the windows desktop background, nothing to do with infomatica!

  2. Select Appearance tab

  3. Select Advanced button

  4. Select the Active window (below "Item:" it will now say "Window")

  5. Below "Color 1" select some other color than white.

NOTE: This means the default background color for ALL programs will now be white.

answer Mar 27, 2014 by Shweta Singh
0 votes

The color Informatica chose to use for the "checked in" text is from the "Inactive title bar" for som reason. It can be changed through the control panel:

Control Panel\All Control Panel Items\Personalization\Window Color and Appearance

Click on Advanced appearance setting...

Select Inactive Title Bar

The color you need to change is Color 1

Credit: http://stackoverflow.com/questions/9502176/how-do-i-change-the-color-of-inactive-fields-in-informaticas-edit-windows

answer Mar 27, 2014 by Salil Agrawal
Similar Questions
+3 votes

I am using bugzilla version 4.4.2 and I need some additional fields in when I try to Change Several Bugs at Once.

At the moment i need the fields "Tags" and "Deadline " when I try to Change Several Bugs at Once. But the fields are not available.

+1 vote

I tried the following code.But its not working.

html {scrollbar-face-color:#D6D7D6 ;
scrollbar-shadow-color: #FFFFFF;
scrollbar-highlight-color:#EFEFEF;
scrollbar-3dlight-color: #FFFFFF;

scrollbar-track-color: #FFFFFF;
scrollbar-arrow-color:  #000000;}
+1 vote

Do I edit the corresponding migration also to show the belongs_to (and the has_many)? I have a many to many relationship where I am using the "has_many :through" association. When I place in the individual classes the 'has_many :through' and the 'belongs_to' associations, do I also edit the corresponding migrations to reflect those changes?
I would like those changes to be reflected in the database also, but I don't know whether there was a way to run one of the migration generator commands that would have included these associations.
Also, I have already run the migration so is there a way to create a new migration that would simply add these associations? I would prefer not to edit existing migrations.

+1 vote

I view Thunderbird meswsages on a black background with white text, works well for my vision problems, however T-bird displays quoted text, e.g. joe@xxx.com, in dark blue which I can't read unless highlighted using a hand magnifier! Does anyone know how to change that color? I would be happy if everything was displayed in bold white text, the colors are without benefit "to me anyway."

0 votes

I have a navigation menu I want each link within it will be a different color when active.
I do something like this:

.side_bar_nav li.current-menu-item a{
    color: #ff6633;
}

But this gives each link with the same color when active. But I want to target each link individually and give it its own color.
In below this is one of the link which I want to individual color when it active.

<li id="menu-item-49" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-9 current_page_item menu-item-49">
  <a href="http://fyberproperty.co.uk/">home</a>
</li>

Can anybody help me how I set its individual color when it active?

...