Page 1 of 1

How can I change text border color?

Posted: Mon Oct 06, 2014 8:57 pm
by Miguel Carrillo

How can I turn off or change the outline border of the label text to match the background color with css? This is a screenshot of my app with the color that I need to change

Image


How can I change text border color?

Posted: Mon Oct 06, 2014 9:46 pm
by Yurii Orishchuk

Hi Miguel,

You can remove this default style for all app with following css rule:

pre

body .ui-content{
text-shadow: none;
}

/pre

Also you can use this css style for your own rules.

Regards.