Skip to Main Content

Hardware

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

SAM-QFS 5.2 Patch IDs

Brad Blasing - Oracle-OracleJun 19 2015 — edited Jul 9 2015

Added on Mar 04, 2013

https://wikis.oracle.com/display/SAMQFS/SAM-QFS+5.2+Patch+IDs#page-metadata-start

The SAM-QFS 5.2 patches are available for download from My Oracle Support (MOS).

The current (Feb 2011) patch IDs for SAM-QFS 5.2 are:
  • 146544-01 SAM-FS 5.2: Solaris 10_x86 Patch
  • 146545-01 SAM-FS 5.2: Solaris 10 Patch
  • 146546-01 QFS 5.2: Linux Patch
  • 146547-01 QFS 5.2: Solaris 10_x86 Patch
  • 146548-01 QFS 5.2: Solaris 10 Patch
Two Options to Locate SAM-QFS 5.2 Patches on MOS:
Search for All 5.2 Patches Available
  1. Log in to My Oracle Support (MOS).
  2. Click on the "Patches & Updates" tab near the top of the window.
  3. In the Patch Search pane, click on "Product or Family (Advanced)."
  4. Check the box for "Include all products in a family."
  5. In the Product field, start typing "Sun QFS and Sun Storage Archive Manager (SAM)" (or go
    to it in the pull-down list and select it when it appears).
  6. In the Release field pulldown, select "Sun QFS and Sun Storage Archive Manager (SAM) 5.2".
  7. Close the release pulldown window and click on the Search button.
Search for an Individual/Specific Patch on MOS
  1. Log in to My Oracle Support (MOS).
  2. Click on the 'Patches & Updates' tab near the top of the window.
  3. In the Patch Search pane, click on "Number/Name or Bug Number (Simple)."
  4. Enter the full patch ID you are specifically interested in and click on the Search button.

Labels:

Comments

Ruben Rodriguez
Answer

Hello,

Check this post:

af:query css Customization

regards,

Ruben

Marked as Answer by Sumit Yadav · Sep 27 2020
Sumit Yadav

Hi Ruben,

I see that the css is able to change the text of the query panel buttons but it is not changing the background color

queryPanelButton.png

the css code used :

af|query div[id$='_search']{

 background-color: blue;

 color: red;

      }

af|query div[id$='_reset']{

  background-color: red;

  color: blue;

}

Any pointers ?

Thanks

Sumit

Ruben Rodriguez

Hello,

Try with background: red; instead of background-color.

regards,

Ruben.

Sumit Yadav

Thank You Ruben !!

That worked , however i am still not able to fetch the search icon the on the search button.

Please advice:

CSS used is :

af|query div[id$='_search']{

    background:Orange ;

    color: White;

    icon:  url("../../images/search.png");

    text-decoration: none;

}

Thanks

Sumit

Ruben Rodriguez

Hello,

There might be a better way to do it but you can try with this:

af|query div[id$='_search'] {

    background: Orange;

    color: White;

    background-image: url('your url');

    background-position: 6px 6px;  // change here so your icon is in the position you want

    background-repeat: no-repeat;

    text-decoration: none;

}

you might want to fix the link inside the div so you can center the text:

af|query div[id$='_search'] a{

      margin-left:20px;  // change here

}

regards,

Ruben.

Sumit Yadav

Hi Ruben,

Thank You so much for helping me in this.

I tried the below css, but now the image is getting hidden.

af|query div[id$='_search'] {

background-image:url("../../images/search_ena.png"); /*16px x 16px*/

background-color: transparent;  /\*make the button transparent\*/

background-repeat: no-repeat;   /\* make the background image appear only once \*/

background-position: 0px 0px;   /\* equivalent to 'top left' \*/

border: none;                   /\*assuming we don't want any borders \*/

cursor: pointer;                /\*make the cursor like hovering over an \<a> element  \*/

height: 16px;                   /\*make this the size of your image  \*/

padding-left: 16px;             /\*make text start to the right of the image  \*/

vertical-align: middle;         /\*align the text vertically centered  \*/

background: orange;

/\*#ef3340;\*/

color: White;

text-shadow: none;

text-decoration: none;

border-radius: 3px;

border: none;

margin: 0;

margin-left:20px;  /\* change here \*/

}

we can see that it is occupying the space for image but not rendering .

Is the background overriding the image ? Image below:

queryPanelButton2.png

Please advise.

Thanks

Sumit

Sumit Yadav

When i remove/comments the background tag, it is rendering the image.

image:

queryPanelButton3.png

Sumit Yadav

css

....

/*background: orange;*/

    /*#ef3340;*/

    color: Black;

.....

Ruben Rodriguez

Hello,

Try to move: background: orange;

On top of: background-image:url("../../images/search_ena.png");  /*16px x 16px*/

background: orange;

background-image:url("../../images/search_ena.png");  /*16px x 16px*/


regards,

Ruben.

Sumit Yadav

Sweet. It worked just like what we wanted.

queryPanelButton4.png

Thanks a ton !!

we are able to get hold of "Detach" button.

we want to replace with my custom detach icon but I am stuck at now is .

I not able to override the previous panelcollection's detach icon.

Image :

panelcoll1.png

Please advise.

Thanks

Sumit

Sumit Yadav

CSS:

af|panelCollection div[id$='_dchTbr']{

background: #ecebeb;

     background-image:url("../../images/search_ena.png");  /*16px x 16px*/

        background-color: transparent;  /*make the button transparent*/

    background-repeat: no-repeat;   /* make the background image appear only once */

    background-position: 2px 4px;

    text-shadow: none;

    text-decoration: none;

    border-radius: 3px;

    border: none;

    margin: 0;

}

Ruben Rodriguez

Hello,

If you want to hide the icon, you can do it like this:

af|panelCollection img[id*='_dchTbr']{

    display: none;

}

regards,

Ruben.

1 - 12

Post Details