cancel
Showing results for 
Search instead for 
Did you mean: 

How can we modify Group titles style in Fiori Launchpad ?

AlexDen
Explorer

Hello all,

I am struggling with the Fiori Theme Designer for Group Titles.

In fact, I was able to modifiy the color of Group titles but there is still a kind of shadow on the titles. The result is not very nice and titles seem to be blurry.

I just want to display titles without this shadow.

Could you provide assistance ?

I would like to do it via the standard customizing tools of Fiori Theme Designer (without CSS). But if there is no other choice, if you know how to do it with CSS, answers are also welcomed.

Thanks in advance,

Alex.

Accepted Solutions (1)

Accepted Solutions (1)

IsmaelJ
Discoverer

Hello Alex,

You can correct this with few lines of CSS:

// Change group titles
.sapUshellContainerTitle {
    text-shadow: 0px 1px 0rem rgba(255,255,255, 0.3) !important;
}


// Change text shadow and line height of groups text buttons 
.sapUshellAnchorItemInner {
    text-shadow: 0px 1px 0rem rgba(255,255,255, 0.3) !important;
    line-height: 2.95rem !important;
}

Answers (1)

Answers (1)

AlexDen
Explorer
0 Kudos

Hello Ismael,

Thank you very much for the answer!

Now it works fine and looks beautiful, my clients are so happy.

Best regards,

Alex.