How To Fix the FF Design in atmail :

Let we see how to change the theme in Firefox, as we already discuss that , coding structure are different in firefox as compare with other browser.

So ,Here we are going to see how to change original design in firefox.When we analysis the coding, it is designed as xul element like treecol,menu, toolbarbutton etc

So , set the css property using the ID of the element

-moz-appearance :

none

Border:

none

Please don’t hide the original style when you inspect the element because its affect the browser default style which comes from firebox global style.

And write your own style using the component Id what we set like:

Background-color :

green !important;

Color:

#fff !important; etc

If you want to set on mouse over image for toolbarbutton

-moz-appearance :

none
And apply the

border:

0px

If it may be moved when on mouse over set padding

If u need to change appearance when on Mouse over the Menu ,here is the property need to be change as

  1. menubar > menu[_moz-menuactive="true"]
  2. {
  3. -moz-appearance: none !important;
  4. border:none !important;
  5. cursor:pointer;
  6. color:#fff !important;
  7. padding:2px;
  8. background:#3784b9;
  9. }
  10. This style for Menu Item Mouse over
  11. menuitem[_moz-menuactive="true"]
  12. {
  13. }

Next to change the Inbox Treecol ( Header) background Color or Image, here is the property need to be change as

  1. #inbox_detail > treecol
  2. {
  3. -moz-appearance: none !important; //remove default style
  4. border:none !important;
  5. background:url(../../../../images/blue_line.gif)!important;
  6. height:30px; //header height
  7. color:#FFFFFF !important; //textcolor
  8. font-weight:bold;
  9. background-color:none !important;
  10. border-right-color:#ffff !important; //act as a splitter for each column
  11. border-right-style:groove!important;
  12. border-right-width:1px!important;
  13. }

for more information please refer the below link.

https://developer.mozilla.org/en/XUL_Tutorial/Adding_Style_Sheets

  • Share/Bookmark

This entry was posted on Saturday, July 3rd, 2010 at 3:46 am and is filed under atmail Integration. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

5 Responses to “How To Fix the FF Design in atmail :”

  1. Gucci purses Says:

    Cheers for this write-up, guys, retain up the good perform….

  2. Tiffanys Says:

    Cheers for this write-up, guys, retain up the great work….

  3. Rolex watches Says:

    Ok. I think you’re correct!…

  4. Burberry handbag Says:

    Sweet post….

  5. LV Handbag Says:

    Honorable post!…

Leave a Reply

« Back to text comment