Maximo List Archive

This is an archive of the Maximo Yahoo Community. The content of this pages may be a sometimes obsolete so please check post dates.
Thanks to the community owner Christopher Wanko for providing the content.



Remove white-space on Maximo 7503 Screen

From: janice c (2012-12-04 05:22)

We are currently upgrading to Maximo 7503 and received a request to modify the screen and remove the white-space as it is taking up much more space than the previous screens. I think this can be done by tweaking the CSS of the application. Maximo 7503 uses a CSS property called white-space: nowrap (see below sample) which ensures that sequences of whitespace will collapse into a single space character. This property has been applied to basecomp, tabgroup, listbox, toolbar, menubar, menus and nodename .
MAXIMO 75XX
/* basecomp */
.bc
{
padding:0px;
margin:0px;
background-color: inherit !important;
display: inline;
white-space: nowrap;
}
MAXIMO 71XX
.bc
{
padding:0px;
margin:0px;
background-color: inherit !important
}

After modifying the CSS, we rebuilt the EAR files but the screen remains the same. Any idea on how to do this?
Thanks heaps
Best regards,
Janice


From: syed a (2012-12-04 18:37)

Hello janice,
My requirement was also same like you for Maximo 7503.
So in this forum i saw one comment to modify children.jsp in component folder of maximouiweb & make cellspacing=0 from 3 which
we did but no affect.
If you find solution for this problem plz let me know.
--- In MAXIMO@yahoogroups.com, "janice c" <carrillo_janice@...> wrote:
>
> We are currently upgrading to Maximo 7503 and received a request to modify the screen and remove the white-space as it is taking up much more space than the previous screens. I think this can be done by tweaking the CSS of the application. Maximo 7503 uses a CSS property called white-space: nowrap (see below sample) which ensures that sequences of whitespace will collapse into a single space character. This property has been applied to basecomp, tabgroup, listbox, toolbar, menubar, menus and nodename .
>
> MAXIMO 75XX
> /* basecomp */
> .bc
> {
> padding:0px;
> margin:0px;
> background-color: inherit !important;
> display: inline;
> white-space: nowrap;
> }
>
> MAXIMO 71XX
> .bc
> {
> padding:0px;
> margin:0px;
> background-color: inherit !important
> }
>
> After modifying the CSS, we rebuilt the EAR files but the screen remains the same. Any idea on how to do this?
> Thanks heaps
>
>
> Best regards,
> Janice
>