cancel
Showing results for 
Search instead for 
Did you mean: 

Change SAP WAD Sytle in XHTML

former_member271371
Participant
0 Kudos

Hello

I have the following problem . I want to make changes at analysis item (table) style.
The result row is to have a blue background, not yellow.
I can not make it in XHTML ? I can not override the styles from SAP.
This must always be done in mime repository?

Thanks for the help
Kerim

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello Kerim,

.urSTSSubtot CSS class is assigned to result rows.

The class is defined in ur_ie6.css file (for Ineternet Explorer) that is kept in the MIME repository (SE80-MIME repository).

You may start IE developer tools (F12 or Tools-> Developer tools) once you run the report.

The CSS file is located at: /sap/public/bc/ur/Design2002/themes/sap_tradeshow/ur/ur_ie6.css

CSS class in ur_ie6.css represents portal StyleSheet:

     .urSTSSubtot{background-color:#FFFB8C !important}

The WAD rule is: StyleSheets in the Web application override the Portal StyleSheet. *[1]

Thus you may just insert the following code into your WAD template inside of the <head> statement:

...

<head>           

...

            <style>

                     .urSTSSubtot{background-color:BLUE !important}

            </style>

...

</head>

...

P.S. You may use #0000FF or any other code instead of BLUE.

II hope this will help you.

P.P.S You may also refer to the following documents for more information

[1] http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b085e86e-2353-2910-0c96-9f6ab693d...

[2] http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/1035ca90-0201-0010-13b7-9a35063d6...

former_member271371
Participant
0 Kudos

Hello Konstantin,

Thank you for the very good informations.

Many regards

Kerim

former_member271371
Participant
0 Kudos
hello Konstantin,
I which path is .urSTSSubtot ? I don't find in SE80-Mime-Repository. I have now looked at various documents and not found it . The catch with all .sapbex ..... on .
When I search in google for .urSTSSubtot , I find nothing .
many greetings Kerim
Former Member
0 Kudos

Hello Kerim,


.urSTSSubtot CSS class is defined in /sap/public/bc/ur/Design2002/themes/sap_tradeshow/ur/ur_ie6.css file (for IE). I believe that if you would change in the ur_ie6.css it than the totals style will be changed for every report.


Thus if you need to change the totals color only for a single report it would be better to insert the Below code in your WAD template through Web Application designer.


...

<head>         

...

            <style>

                     .urSTSSubtot{background-color:BLUE !important}

            </style>

...

</head>

...


K.

former_member271371
Participant
0 Kudos

Hello Konstantin,

thanks for this Informations.

I have a question concerning the analysis tables . Is it possible to make the table edges rounded ?

I would like to Border Radius make the corners round the table.

Regards Kerim