Tuesday 25 October 2011

Sun ILOM fix for modern Firefox browsers

Sun ILOMs are unusable in modern Firefox browsers. iframes with buttons and drop-down menus are not visible possibly because of some JavaScript bug. As a workaround, you can install Stylish extension and create new style using the code below:


@namespace url(http://www.w3.org/1999/xhtml);

#mainpage {
visibility: visible !important;
}


You can also use @-moz-document rule to specify which pages the style is going to be used on. More info here.


@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document regexp("^https://10\.8\..*") {
#mainpage {
visibility: visible !important;
}
}